diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index 20994f7f3..f1636a328 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -557,6 +557,22 @@ Highest Weight - Displays the order retrieved from trade]] return hideRowFunc(self, row_count) end + row_count = row_count + 1 + self.slotTables[row_count] = { slotName = "Heart of the Well", unique = true, selectedJewelNodeId = activeSocketList[1] } + self:PriceItemRowDisplay(row_count, top_pane_alignment_ref, row_vertical_padding, row_height) + self.controls["name"..row_count].y = self.controls["name"..row_count].y + (row_height + row_vertical_padding) + self.controls["name"..row_count].shown = function() + return hideRowFunc(self, row_count) + end + + row_count = row_count + 1 + self.slotTables[row_count] = { slotName = "Against the Darkness", unique = true, selectedJewelNodeId = activeSocketList[1] } + self:PriceItemRowDisplay(row_count, top_pane_alignment_ref, row_vertical_padding, row_height) + self.controls["name"..row_count].y = self.controls["name"..row_count].y + (row_height + row_vertical_padding) + self.controls["name"..row_count].shown = function() + return hideRowFunc(self, row_count) + end + -- fix case where the row count is reduced from the last time the popup was -- opened, which would leave extra row controls in the menu for k, v in pairs(self.controls) do @@ -571,7 +587,7 @@ Highest Weight - Displays the order retrieved from trade]] local effective_row_count = row_count - ((scrollBarShown and #slotTables >= 19) and #slotTables-19 or 0) + 2 + 2 -- Two top menu rows, two bottom rows, slots after #19 overlap the other controls at the bottom of the pane self.effective_rows_height = row_height * (effective_row_count - #slotTables + (18 - (#slotTables > 37 and 3 or 0))) -- scrollBar height, "18 - slotTables > 37" logic is fine tuning whitespace after last row self.pane_height = (row_height + row_vertical_padding) * effective_row_count + 3 * pane_margins_vertical + row_height / 2 - local pane_width = 850 + (scrollBarShown and 25 or 0) + local pane_width = 885 + (scrollBarShown and 25 or 0) self.controls.scrollBar = new("ScrollBarControl", {"TOPRIGHT", self.controls["StatWeightMultipliersButton"],"TOPRIGHT"}, {0, 25, 18, 0}, 50, "VERTICAL", false) self.controls.scrollBar.shown = function() return scrollBarShown end @@ -778,7 +794,9 @@ function TradeQueryClass:GetResultEvaluation(row_idx, result_index, calcFunc, ba 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 + local slotTbl = self.slotTables[row_idx] + local jewelNodeId = slotTbl.nodeId or slotTbl.selectedJewelNodeId + local slotName = jewelNodeId and "Jewel " .. tostring(jewelNodeId) or slotTbl.slotName if slotName == "Megalomaniac" then local addedNodes = {} for nodeName in (result.item_string.."\r\n"):gmatch("Allocates (.-)\r?\n") do @@ -941,8 +959,8 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro slotTbl.slotName == "Watcher's Eye" and self:findValidSlotForWatchersEye() or slotTbl.fullName and self.itemsTab.slots[slotTbl.fullName]) -- fullName for Abyssal Sockets local nameColor = slotTbl.unique and colorCodes.UNIQUE or "^7" - controls["name"..row_idx] = new("LabelControl", top_pane_alignment_ref, {0, row_idx*(row_height + row_vertical_padding), 100, row_height - 4}, nameColor..slotTbl.slotName) - controls["bestButton"..row_idx] = new("ButtonControl", { "LEFT", controls["name"..row_idx], "LEFT"}, {100 + 8, 0, 80, row_height}, "Find best", function() + controls["name"..row_idx] = new("LabelControl", top_pane_alignment_ref, {0, row_idx*(row_height + row_vertical_padding), 135, row_height - 4}, nameColor..slotTbl.slotName) + controls["bestButton"..row_idx] = new("ButtonControl", { "LEFT", controls["name"..row_idx], "LEFT"}, {135 + 8, 0, 80, row_height}, "Find best", function() self.tradeQueryGenerator:RequestQuery(activeSlot, { slotTbl = slotTbl, controls = controls, row_idx = row_idx }, self.statSortSelectionList, function(context, query, errMsg) if errMsg then self:SetNotice(context.controls.pbNotice, colorCodes.NEGATIVE .. errMsg) @@ -1070,7 +1088,9 @@ you can add them, copy the link here, and press "Price Item" to evaluate the ite local isAuthorized = main.api.authToken ~= nil local validURL = controls["uri"..row_idx].validURL local isSearching = controls["priceButton"..row_idx].label == "Searching..." - return isAuthorized and validURL and not isSearching + local selectedJewelSlot = slotTbl.selectedJewelNodeId and self.itemsTab.sockets[slotTbl.selectedJewelNodeId] + local hasRequiredJewelSlot = not slotTbl.unique or slotTbl.slotName == "Megalomaniac" or selectedJewelSlot and not selectedJewelSlot.inactive + return isAuthorized and validURL and not isSearching and hasRequiredJewelSlot end controls["priceButton"..row_idx].tooltipFunc = function(tooltip) tooltip:Clear() @@ -1078,12 +1098,15 @@ you can add them, copy the link here, and press "Price Item" to evaluate the ite tooltip:AddLine(16, "You must log in to use the search feature") elseif not controls["uri"..row_idx].validURL then tooltip:AddLine(16, "Enter a valid trade URL") + elseif slotTbl.unique and slotTbl.slotName ~= "Megalomaniac" + and (not slotTbl.selectedJewelNodeId or not self.itemsTab.sockets[slotTbl.selectedJewelNodeId] or self.itemsTab.sockets[slotTbl.selectedJewelNodeId].inactive) then + tooltip:AddLine(16, "Requires an active Jewel Socket") end end local clampItemIndex = function(index) return m_min(m_max(index or 1, 1), self.sortedResultTbl[row_idx] and #self.sortedResultTbl[row_idx] or 1) end - controls["changeButton"..row_idx] = new("ButtonControl", { "LEFT", controls["name"..row_idx], "LEFT"}, {100 + 8, 0, 80, row_height}, "<< Search", function() + controls["changeButton"..row_idx] = new("ButtonControl", { "LEFT", controls["name"..row_idx], "LEFT"}, {135 + 8, 0, 80, row_height}, "<< Search", function() self.itemIndexTbl[row_idx] = nil self.sortedResultTbl[row_idx] = nil self.resultTbl[row_idx] = nil @@ -1091,7 +1114,7 @@ you can add them, copy the link here, and press "Price Item" to evaluate the ite self.controls.fullPrice.label = "Total Price: " .. self:GetTotalPriceString() end) controls["changeButton"..row_idx].shown = function() return self.resultTbl[row_idx] end - controls["resultDropdown"..row_idx] = new("DropDownControl", { "TOPLEFT", controls["changeButton"..row_idx], "TOPRIGHT"}, {8, 0, 325, row_height}, {}, function(index) + controls["resultDropdown"..row_idx] = new("DropDownControl", { "TOPLEFT", controls["changeButton"..row_idx], "TOPRIGHT"}, {8, 0, 351, row_height}, {}, function(index) self.itemIndexTbl[row_idx] = self.sortedResultTbl[row_idx][index].index self:SetFetchResultReturn(row_idx, self.itemIndexTbl[row_idx]) end) @@ -1108,7 +1131,8 @@ you can add them, copy the link here, and press "Price Item" to evaluate the ite end local item = new("Item", result.item_string) tooltip:Clear() - self.itemsTab:AddItemTooltip(tooltip, item, activeSlot) + local tooltipSlot = slotTbl.selectedJewelNodeId and self.itemsTab.sockets[slotTbl.selectedJewelNodeId] or activeSlot + self.itemsTab:AddItemTooltip(tooltip, item, tooltipSlot) tooltip:AddSeparator(10) tooltip:AddLine(16, string.format("^7Price: %s %s", result.amount, result.currency)) end @@ -1118,8 +1142,9 @@ you can add them, copy the link here, and press "Price Item" to evaluate the ite -- pass "true" to not auto equip it as we will have our own logic self.itemsTab:AddDisplayItem(true) -- Autoequip it - local slot = slotTbl.nodeId and self.itemsTab.sockets[slotTbl.nodeId] or self.itemsTab.slots[slotTbl.slotName] - if slot and slotTbl.slotName == slot.label and slot:IsShown() and self.itemsTab:IsItemValidForSlot(item, slot.slotName) then + local jewelNodeId = slotTbl.nodeId or slotTbl.selectedJewelNodeId + local slot = jewelNodeId and self.itemsTab.sockets[jewelNodeId] or self.itemsTab.slots[slotTbl.slotName] + if slot and (jewelNodeId or slotTbl.slotName == slot.label) and slot:IsShown() and self.itemsTab:IsItemValidForSlot(item, slot.slotName) then slot:SetSelItemId(item.id) self.itemsTab:PopulateSlots() self.itemsTab:AddUndoState() @@ -1135,7 +1160,8 @@ you can add them, copy the link here, and press "Price Item" to evaluate the ite -- item.baseName is nil and throws error in the following AddItemTooltip func -- if the item is unidentified local item = new("Item", item_string) - self.itemsTab:AddItemTooltip(tooltip, item, activeSlot, true) + local tooltipSlot = slotTbl.selectedJewelNodeId and self.itemsTab.sockets[slotTbl.selectedJewelNodeId] or activeSlot + self.itemsTab:AddItemTooltip(tooltip, item, tooltipSlot, true) end end controls["importButton"..row_idx].enabled = function() @@ -1143,7 +1169,7 @@ you can add them, copy the link here, and press "Price Item" to evaluate the ite end -- Whisper so we can copy to clipboard controls["whisperButton" .. row_idx] = new("ButtonControl", - { "TOPLEFT", controls["importButton" .. row_idx], "TOPRIGHT" }, { 8, 0, 170, row_height }, function() + { "TOPLEFT", controls["importButton" .. row_idx], "TOPRIGHT" }, { 8, 0, 155, row_height }, function() local itemResult = self.itemIndexTbl[row_idx] and self.resultTbl[row_idx][self.itemIndexTbl[row_idx]] if not itemResult then return "" end diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 363e063f6..fb62cd748 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -91,7 +91,9 @@ local function getStatEntries(modType) ["Corrupted"] = "enchant", ["AllocatesXEnchant"] = "enchant", -- note that in the json the label is augment while the id is rune - ["Rune"] = "rune" + ["Rune"] = "rune", + ["HeartOfTheWell"] = "explicit", + ["AgainstTheDarkness"] = "explicit", } if tradeStatCategoryIndices[modType] then for i, cat in ipairs(tradeStats) do @@ -212,6 +214,11 @@ function TradeQueryGeneratorClass:ProcessMod(mod, itemCategoriesMask, itemCatego local modType = (mod.type == "Prefix" or mod.type == "Suffix") and "Explicit" or mod.type == "SpecialCorrupted" and "Corrupted" or mod.type + if not modType then + ConPrintf("Unable to match mod due to missing mod type: %s", modLine) + goto continue + end + -- Special cases local specialCaseData = { } if modLine == "You can apply an additional Curse" then @@ -412,6 +419,8 @@ return %s ["Enchant"] = { }, ["AllocatesXEnchant"] = { }, ["Rune"] = { }, + ["HeartOfTheWell"] = { }, + ["AgainstTheDarkness"] = { }, } -- create mask for regular mods @@ -421,11 +430,43 @@ return %s end self:GenerateModData(data.itemMods.Item, regularItemMask) + self:GenerateModData(data.itemMods.Desecrated, 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 }) + -- add breach mods which lack proper weights. these mods spawn for either belts or rings, but + -- have weights of zero for ones they cannot spawn on + for name, mod in pairs(data.itemMods.Item) do + local treeMod = false + local slots = {Ring = true, Belt = true} + for i, v in ipairs(mod.weightKey) do + if v == "genesis_tree_minion" or v == "genesis_tree_caster" then + treeMod = true + end + if (v == "belt") and mod.weightVal[i] == 0 then + slots.Belt = nil + end + if (v == "ring") and mod.weightVal[i] == 0 then + slots.Ring = nil + end + end + if treeMod then + self:ProcessMod(mod, regularItemMask, slots) + goto continueBreach + end + + -- there are also crafted mods which can be identified based on the name + if name:match("^GenesisTreeRing") then + self:ProcessMod(mod, regularItemMask, {Ring = true}) + end + if name:match("^GenesisTreeBelt") then + self:ProcessMod(mod, regularItemMask, {Belt = true}) + end + ::continueBreach:: + end + -- essences, because in item mod data they don't have equipment tags for name, essence in pairs(data.essences) do -- weird exception: linked to mod that says "% dex int or str" @@ -451,6 +492,30 @@ return %s end end + -- heart of the well mods + local heartMods = {} + for name, mod in pairsSortByKey(data.itemMods.Desecrated) do + if name:match("^UniqueHeart") then + local modCopy = copyTable(mod) + modCopy.type = "HeartOfTheWell" + t_insert(heartMods, modCopy) + end + end + self:GenerateModData(heartMods, { ["BaseJewel"] = true, ["AnyJewel"] = true }, { ["AnyJewel"] = "AnyJewel" }) + + -- against the darkness mods + local darknessMods = {} + for name, mod in pairsSortByKey(data.itemMods.Exclusive) do + -- this name prefix is not very unique and already matches some mods that don't exist on the + -- jewel. this might cause problems later + if name:match("^UniqueJewelRadius") then + local modCopy = copyTable(mod) + modCopy.type = "AgainstTheDarkness" + t_insert(darknessMods, modCopy) + end + end + self:GenerateModData(darknessMods, { ["RadiusJewel"] = true, ["AnyJewel"] = true }, { ["AnyJewel"] = "AnyJewel" }) + -- implicit mods for baseName, entry in pairsSortByKey(data.itemBases) do if entry.implicit ~= nil and entry.type ~= "Transcendent Limb" then @@ -531,13 +596,40 @@ return %s 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) + ConPrintf("TradeQuery: Unmatched category for modifier. Slot type: %s Modifier: %s Mod line: %s", mods.slotType, mods.name, modLine) end end end end end + -- 0.5 rune influence mods. e.g. can roll chronomancy modifiers + + -- a map of slot to weight key which is on the mods + local runeInfluences = { Boots = { "chronomancy" }, Gloves = { "marksman", "decay" }, Helmets = { "berserking" }, Weapon = { "destruction" }, ["Body Armour"] = { "soul" } } + local function hasSpawnTag(mod, tag) + local idx = 1 + while mod.weightKey[idx] do + if (mod.weightKey[idx] == tag) and (mod.weightVal[idx] > 0) then + return true + end + idx = idx + 1 + end + return false + end + for slot, tags in pairsSortByKey(runeInfluences) do + for _, tag in ipairs(tags) do + local mods = {} + for _, mod in pairsSortByKey(data.itemMods.Item) do + if hasSpawnTag(mod, tag) then + t_insert(mods, mod) + end + end + local itemCategories = (slot == "Weapon") and ({ ["1HWeapon"] = true, ["2HWeapon"] = true, ["1HMace"] = true, ["Claw"] = true, ["Quarterstaff"] = true, ["Bow"] = true, ["2HMace"] = true, ["Crossbow"] = true, ["Spear"] = true, ["Flail"] = true, ["Talisman"] = true }) or { [slot] = true } + self:GenerateModData(mods, regularItemMask, itemCategories) + end + end + local queryModsFile = io.open(queryModFilePath, 'w') queryModsFile:write([[-- This file is automatically generated, do not edit! -- Stat data (c) Grinding Gear Games @@ -713,6 +805,30 @@ function TradeQueryGeneratorClass:StartQuery(slot, options) calcNodesInsteadOfMods = true, } end + if options.special.itemName == "Heart of the Well" then + special = { + queryFilters = {}, + queryExtra = { + name = options.special.itemName, + type = "Diamond" + }, + HeartOfTheWell = true + } + itemCategory = "AnyJewel" + itemCategoryQueryStr = "jewel" + end + if options.special.itemName == "Against the Darkness" then + special = { + queryFilters = {}, + queryExtra = { + name = options.special.itemName, + type = "Time-Lost Diamond" + }, + AgainstTheDarkness = true + } + itemCategory = "AnyJewel" + itemCategoryQueryStr = "jewel" + end else itemCategoryQueryStr, itemCategory = tradeHelpers.getTradeCategory(slot.slotName, existingItem) if not itemCategory then @@ -726,7 +842,7 @@ function TradeQueryGeneratorClass:StartQuery(slot, options) -- Create a temp item for the slot with no mods local itemRawStr = "Rarity: RARE\nStat Tester\n" .. testItemType - if options.jewelType == "Radius" then + if options.jewelType == "Radius" or (options.special and options.special.itemName) then itemRawStr = [[Rarity: RARE Stat Tester Time-Lost Sapphire @@ -771,6 +887,20 @@ function TradeQueryGeneratorClass:ExecuteQuery() self:GeneratePassiveNodeWeights(self.modData.AllocatesXEnchant) return end + if self.calcContext.special.HeartOfTheWell then + self:GenerateModWeights(self.modData.HeartOfTheWell) + if self.calcContext.options.includeCorrupted then + self:GenerateModWeights(self.modData["Corrupted"]) + end + return + end + if self.calcContext.special.AgainstTheDarkness then + self:GenerateModWeights(self.modData.AgainstTheDarkness) + if self.calcContext.options.includeCorrupted then + self:GenerateModWeights(self.modData["Corrupted"]) + end + return + end -- the trade site has no filters for jewel categories, so we can remove the -- other mods to filter the category. this should also free up some filter slots. @@ -1032,6 +1162,27 @@ Remove: anoints are completely ignored, and removed from items.]] options.special = { itemName = context.slotTbl.slotName } end + if context.slotTbl.slotName == "Heart of the Well" or context.slotTbl.slotName == "Against the Darkness" then + local activeSocketList = { } + for nodeId, jewelSlot in pairs(self.itemsTab.sockets) do + if not jewelSlot.inactive then + t_insert(activeSocketList, jewelSlot) + end + end + table.sort(activeSocketList, function(a, b) + return a.label < b.label + end) + controls.jewelSlot = new("DropDownControl", {"TOPLEFT", lastItemAnchor, "BOTTOMLEFT"}, {0, 5, 100, 18}, activeSocketList, function(idx, value) end) + controls.jewelSlotLabel = new("LabelControl", {"RIGHT",controls.jewelSlot,"LEFT"}, {-5, 0, 0, 16}, "Jewel Slot:") + for index, jewelSlot in ipairs(activeSocketList) do + if jewelSlot.nodeId == context.slotTbl.selectedJewelNodeId then + controls.jewelSlot.selIndex = index + break + end + end + updateLastAnchor(controls.jewelSlot) + end + if isJewelSlot then controls.jewelType = new("DropDownControl", {"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 100, 18}, { "Base", "Radius" }, function(index, value) end) @@ -1089,6 +1240,10 @@ Remove: anoints are completely ignored, and removed from items.]] popupHeight = popupHeight + 4 controls.generateQuery = new("ButtonControl", { "BOTTOM", nil, "BOTTOM" }, {-45, -10, 80, 20}, "Execute", function() + local selectedJewelSlot = controls.jewelSlot and controls.jewelSlot:GetSelValue() + if controls.jewelSlot and not selectedJewelSlot then + return + end main:ClosePopup() self.tradeTypeIndex = context.controls.tradeTypeSelection.selIndex @@ -1117,6 +1272,10 @@ Remove: anoints are completely ignored, and removed from items.]] self.lastJewelType = controls.jewelType.selIndex options.jewelType = controls.jewelType:GetSelValue() end + if controls.jewelSlot then + slot = selectedJewelSlot + context.slotTbl.selectedJewelNodeId = slot.nodeId + end if controls.maxPrice.buf then options.maxPrice = tonumber(controls.maxPrice.buf) self.lastMaxPrice = options.maxPrice @@ -1135,6 +1294,10 @@ Remove: anoints are completely ignored, and removed from items.]] self:StartQuery(slot, options) end) + controls.generateQuery.enabled = function() + return not controls.jewelSlot or controls.jewelSlot:GetSelValue() ~= nil + end + controls.generateQuery.tooltipText = controls.jewelSlot and "Requires an active Jewel Socket." or nil controls.cancel = new("ButtonControl", { "BOTTOM", nil, "BOTTOM" }, {45, -10, 80, 20}, "Cancel", function() main:ClosePopup() end) diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index d8515268a..6b00978f9 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -8,6 +8,318 @@ -- site stats. return { + ["AgainstTheDarkness"] = { + ["1247628870"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1247628870", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Mana", + ["type"] = "explicit", + }, + }, + ["1294464552"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1294464552", + ["text"] = "Small Passive Skills in Radius also grant # to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1316656343"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1316656343", + ["text"] = "Small Passive Skills in Radius also grant # to maximum Life", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1627878766"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1627878766", + ["text"] = "Small Passive Skills in Radius also grant #% reduced Shock duration on you", + ["type"] = "explicit", + }, + }, + ["1731760476"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1731760476", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Chaos Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1809641701"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1809641701", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1842384813"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1842384813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Strength", + ["type"] = "explicit", + }, + }, + ["1862508014"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1862508014", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Cold Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["2217513089"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2217513089", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["2264240911"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264240911", + ["text"] = "Small Passive Skills in Radius also grant #% to Chaos Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["2603051299"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2603051299", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["2717786748"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2717786748", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Dexterity", + ["type"] = "explicit", + }, + }, + ["2884937919"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2884937919", + ["text"] = "Small Passive Skills in Radius also grant #% to Cold Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["2948688907"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2948688907", + ["text"] = "Small Passive Skills in Radius also grant #% to Fire Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["338620903"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_338620903", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, + ["3474941090"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3474941090", + ["text"] = "Small Passive Skills in Radius also grant #% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + }, + ["3991877392"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3991877392", + ["text"] = "Notable Passive Skills in Radius also grant # to Spirit", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["3994876825"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3994876825", + ["text"] = "Small Passive Skills in Radius also grant #% to Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["40618390"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_40618390", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Intelligence", + ["type"] = "explicit", + }, + }, + ["4151994709"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4151994709", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Fire Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["833138896"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_833138896", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, + ["852470634"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_852470634", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + }, + ["860443350"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_860443350", + ["text"] = "Small Passive Skills in Radius also grant #% reduced Freeze Duration on you", + ["type"] = "explicit", + }, + }, + }, ["AllocatesXEnchant"] = { ["10029"] = { ["specialCaseData"] = { @@ -10333,6 +10645,10 @@ return { }, }, ["1002535626"] = { + ["Belt"] = { + ["max"] = 59, + ["min"] = 41, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10342,6 +10658,10 @@ return { }, }, ["1004011302"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 8, + }, ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -10350,10 +10670,18 @@ return { ["max"] = 5, ["min"] = 3, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 12, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1004011302", + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1004011302", ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "explicit", }, @@ -10398,6 +10726,10 @@ return { ["usePositiveSign"] = true, }, ["1014398896"] = { + ["Belt"] = { + ["max"] = 55, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10406,6 +10738,19 @@ return { ["type"] = "explicit", }, }, + ["1015576579"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1015576579", + ["text"] = "#% increased Armour from Equipped Body Armour", + ["type"] = "explicit", + }, + }, ["101878827"] = { ["1HWeapon"] = { ["max"] = 80, @@ -10413,11 +10758,15 @@ return { }, ["AnyJewel"] = { ["max"] = 25, - ["min"] = 15, + ["min"] = 8, }, ["BaseJewel"] = { ["max"] = 25, - ["min"] = 15, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 25, }, ["Sceptre"] = { ["max"] = 80, @@ -10466,6 +10815,23 @@ return { ["type"] = "explicit", }, }, + ["1034611536"] = { + ["AnyJewel"] = { + ["max"] = 0.1, + ["min"] = 0.1, + }, + ["RadiusJewel"] = { + ["max"] = 0.1, + ["min"] = 0.1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1034611536", + ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", + ["type"] = "explicit", + }, + }, ["1037193709"] = { ["1HMace"] = { ["max"] = 102, @@ -10533,6 +10899,10 @@ return { }, }, ["1040141381"] = { + ["Helmets"] = { + ["max"] = 5, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10542,6 +10912,14 @@ return { }, }, ["1045789614"] = { + ["2HWeapon"] = { + ["max"] = 51, + ["min"] = 39, + }, + ["Talisman"] = { + ["max"] = 51, + ["min"] = 39, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10576,6 +10954,10 @@ return { ["max"] = 124, ["min"] = 10, }, + ["Body Armour"] = { + ["max"] = 189, + ["min"] = 7, + }, ["Boots"] = { ["max"] = 124, ["min"] = 10, @@ -10618,6 +11000,10 @@ return { ["usePositiveSign"] = true, }, ["1058934731"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10645,6 +11031,10 @@ return { }, }, ["1062208444"] = { + ["Body Armour"] = { + ["max"] = 52, + ["min"] = 6, + }, ["Boots"] = { ["max"] = 100, ["min"] = 6, @@ -10690,6 +11080,40 @@ return { ["type"] = "explicit", }, }, + ["1078309513"] = { + ["1HWeapon"] = { + ["max"] = 89, + ["min"] = 75, + }, + ["Focus"] = { + ["max"] = 79, + ["min"] = 61, + }, + ["Wand"] = { + ["max"] = 89, + ["min"] = 75, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1078309513", + ["text"] = "Invocated Spells deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1079292660"] = { + ["Shield"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1079292660", + ["text"] = "#% increased Energy Shield Recharge Rate if you've Blocked Recently", + ["type"] = "explicit", + }, + }, ["1087108135"] = { ["AnyJewel"] = { ["max"] = 4, @@ -10725,6 +11149,10 @@ return { }, }, ["1102738251"] = { + ["Belt"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10733,6 +11161,31 @@ return { ["type"] = "explicit", }, }, + ["1103616075"] = { + ["1HMace"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1103616075", + ["text"] = "Break Armour equal to #% of Physical Damage dealt", + ["type"] = "explicit", + }, + }, ["1104825894"] = { ["AnyJewel"] = { ["max"] = 15, @@ -10742,6 +11195,14 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10806,6 +11267,23 @@ return { ["type"] = "explicit", }, }, + ["1136768410"] = { + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1136768410", + ["text"] = "#% increased Cast Speed when on Low Life", + ["type"] = "explicit", + }, + }, ["1137305356"] = { ["AnyJewel"] = { ["max"] = 2, @@ -10840,6 +11318,23 @@ return { ["type"] = "explicit", }, }, + ["1148433552"] = { + ["AnyJewel"] = { + ["max"] = 0.1, + ["min"] = 0.1, + }, + ["RadiusJewel"] = { + ["max"] = 0.1, + ["min"] = 0.1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1148433552", + ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", + ["type"] = "explicit", + }, + }, ["1158842087"] = { ["specialCaseData"] = { }, @@ -10903,7 +11398,7 @@ return { ["1177404658"] = { ["Amulet"] = { ["max"] = 30, - ["min"] = 20, + ["min"] = 15, }, ["specialCaseData"] = { }, @@ -10914,6 +11409,10 @@ return { }, }, ["1180552088"] = { + ["Belt"] = { + ["max"] = 39, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10948,6 +11447,10 @@ return { ["max"] = 2, ["min"] = 1, }, + ["Helmets"] = { + ["max"] = 12, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10974,7 +11477,24 @@ return { ["type"] = "explicit", }, }, + ["1195319608"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["type"] = "explicit", + }, + }, ["1200678966"] = { + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 30, + }, ["AnyJewel"] = { ["max"] = 6, ["min"] = 4, @@ -10983,6 +11503,10 @@ return { ["max"] = 6, ["min"] = 4, }, + ["Bow"] = { + ["max"] = 40, + ["min"] = 30, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11012,6 +11536,10 @@ return { ["max"] = 5, ["min"] = 2, }, + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, ["Quiver"] = { ["max"] = 1, ["min"] = 1, @@ -11038,6 +11566,10 @@ return { ["max"] = 10, ["min"] = 5, }, + ["Boots"] = { + ["max"] = 89, + ["min"] = 50, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11063,6 +11595,10 @@ return { ["max"] = 2, ["min"] = 1, }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { ["max"] = 6, ["min"] = 2, @@ -11094,6 +11630,10 @@ return { }, }, ["124859000"] = { + ["Body Armour"] = { + ["max"] = 52, + ["min"] = 6, + }, ["Boots"] = { ["max"] = 100, ["min"] = 6, @@ -11139,6 +11679,19 @@ return { ["type"] = "explicit", }, }, + ["1261076060"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1261076060", + ["text"] = "#% increased Life Regeneration rate during Effect of any Life Flask", + ["type"] = "explicit", + }, + }, ["1261982764"] = { ["LifeFlask"] = { ["max"] = 100, @@ -11222,6 +11775,10 @@ return { }, }, ["1265767008"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11281,6 +11838,23 @@ return { ["type"] = "explicit", }, }, + ["1286199571"] = { + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 11, + }, + ["Wand"] = { + ["max"] = 18, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1286199571", + ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + ["type"] = "explicit", + }, + }, ["1301765461"] = { ["Shield"] = { ["max"] = 3, @@ -11298,11 +11872,15 @@ return { ["1303248024"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 32, + ["min"] = 10, }, ["specialCaseData"] = { }, @@ -11332,11 +11910,11 @@ return { ["1310194496"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["specialCaseData"] = { }, @@ -11349,11 +11927,11 @@ return { ["1315743832"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 4, }, ["specialCaseData"] = { }, @@ -11372,6 +11950,10 @@ return { ["max"] = 20, ["min"] = 10, }, + ["Helmets"] = { + ["max"] = 50, + ["min"] = 23, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11398,6 +11980,10 @@ return { }, }, ["1321054058"] = { + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11441,21 +12027,65 @@ return { }, }, ["1335369947"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1335369947", - ["text"] = "#% increased Explicit Physical Modifier magnitudes", - ["type"] = "explicit", + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["1337740333"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 2, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335369947", + ["text"] = "#% increased Explicit Physical Modifier magnitudes", + ["type"] = "explicit", + }, + }, + ["1337740333"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { @@ -11467,6 +12097,10 @@ return { }, }, ["1347539079"] = { + ["Gloves"] = { + ["max"] = 66, + ["min"] = 23, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11493,6 +12127,23 @@ return { ["type"] = "explicit", }, }, + ["1365232741"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1365232741", + ["text"] = "#% increased Grenade Duration", + ["type"] = "explicit", + }, + }, ["1366840608"] = { ["specialCaseData"] = { }, @@ -11571,6 +12222,31 @@ return { ["type"] = "explicit", }, }, + ["1373860425"] = { + ["1HWeapon"] = { + ["max"] = 89, + ["min"] = 74, + }, + ["2HWeapon"] = { + ["max"] = 178, + ["min"] = 148, + }, + ["Staff"] = { + ["max"] = 178, + ["min"] = 148, + }, + ["Wand"] = { + ["max"] = 89, + ["min"] = 74, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1373860425", + ["text"] = "#% increased Spell Damage with Spells that cost Life", + ["type"] = "explicit", + }, + }, ["1379411836"] = { ["Amulet"] = { ["max"] = 24, @@ -11589,6 +12265,23 @@ return { }, ["usePositiveSign"] = true, }, + ["1381474422"] = { + ["2HWeapon"] = { + ["max"] = 64, + ["min"] = 40, + }, + ["Staff"] = { + ["max"] = 64, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["type"] = "explicit", + }, + }, ["138421180"] = { ["AnyJewel"] = { ["max"] = 10, @@ -11644,6 +12337,15 @@ return { ["type"] = "explicit", }, }, + ["1400313697"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1400313697", + ["text"] = "Increases and Reductions to Cold and Lightning Damage in Radius are transformed to apply to Fire Damage", + ["type"] = "explicit", + }, + }, ["1405298142"] = { ["AnyJewel"] = { ["max"] = 25, @@ -11675,6 +12377,10 @@ return { }, }, ["1416406066"] = { + ["Body Armour"] = { + ["max"] = 20, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11709,6 +12415,10 @@ return { ["max"] = 10, ["min"] = 5, }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 7, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11752,6 +12462,23 @@ return { ["type"] = "explicit", }, }, + ["1434716233"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "explicit", + }, + }, ["1443502073"] = { ["specialCaseData"] = { }, @@ -11774,6 +12501,14 @@ return { ["max"] = 3, ["min"] = 2, }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11783,6 +12518,10 @@ return { }, }, ["145581225"] = { + ["Belt"] = { + ["max"] = 19, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11845,6 +12584,10 @@ return { }, }, ["1485480327"] = { + ["Belt"] = { + ["max"] = 55, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11864,6 +12607,10 @@ return { ["usePositiveSign"] = true, }, ["1493485657"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11998,6 +12745,23 @@ return { ["type"] = "explicit", }, }, + ["1518586897"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1518586897", + ["text"] = "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", + ["type"] = "explicit", + }, + }, ["1526933524"] = { ["LifeFlask"] = { ["max"] = 1, @@ -12015,6 +12779,52 @@ return { ["type"] = "explicit", }, }, + ["1535626285"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Focus"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Gloves"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "# to Strength and Intelligence", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["153777645"] = { ["AnyJewel"] = { ["max"] = 12, @@ -12024,6 +12834,10 @@ return { ["max"] = 12, ["min"] = 8, }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 12, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12094,6 +12908,22 @@ return { }, }, ["1569101201"] = { + ["1HMace"] = { + ["max"] = 59, + ["min"] = 41, + }, + ["1HWeapon"] = { + ["max"] = 59, + ["min"] = 41, + }, + ["2HMace"] = { + ["max"] = 99, + ["min"] = 86, + }, + ["2HWeapon"] = { + ["max"] = 99, + ["min"] = 86, + }, ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, @@ -12102,6 +12932,10 @@ return { ["max"] = 20, ["min"] = 10, }, + ["Talisman"] = { + ["max"] = 99, + ["min"] = 86, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12128,6 +12962,10 @@ return { }, }, ["1570501432"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12205,13 +13043,25 @@ return { }, }, ["1589917703"] = { + ["1HWeapon"] = { + ["max"] = 64, + ["min"] = 55, + }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 31, + ["min"] = 7, + }, + ["Wand"] = { + ["max"] = 64, + ["min"] = 55, }, ["specialCaseData"] = { }, @@ -12241,11 +13091,15 @@ return { ["1594812856"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 5, + }, + ["Helmets"] = { + ["max"] = 75, + ["min"] = 20, }, ["specialCaseData"] = { }, @@ -12299,6 +13153,10 @@ return { }, }, ["1604736568"] = { + ["Amulet"] = { + ["max"] = 3, + ["min"] = 2, + }, ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -12307,6 +13165,10 @@ return { ["max"] = 2, ["min"] = 1, }, + ["Ring"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12315,12 +13177,33 @@ return { ["type"] = "explicit", }, }, - ["1615901249"] = { + ["160888068"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1615901249", - ["text"] = "Invocated skills have #% increased Maximum Energy", + ["id"] = "explicit.stat_160888068", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1615901249"] = { + ["Ring"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1615901249", + ["text"] = "Invocated skills have #% increased Maximum Energy", ["type"] = "explicit", }, }, @@ -12350,6 +13233,19 @@ return { ["type"] = "explicit", }, }, + ["1658498488"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "explicit", + }, + }, ["1671376347"] = { ["Amulet"] = { ["max"] = 45, @@ -12406,7 +13302,28 @@ return { }, ["usePositiveSign"] = true, }, + ["1689748350"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1689748350", + ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", + ["type"] = "explicit", + }, + }, ["1691403182"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 12, + }, + ["Ring"] = { + ["max"] = 29, + ["min"] = 21, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12416,6 +13333,14 @@ return { }, }, ["1692879867"] = { + ["Belt"] = { + ["max"] = -20, + ["min"] = -30, + }, + ["Boots"] = { + ["max"] = -20, + ["min"] = -30, + }, ["Chest"] = { ["max"] = -36, ["min"] = -60, @@ -12429,6 +13354,19 @@ return { ["type"] = "explicit", }, }, + ["1697191405"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1697191405", + ["text"] = "#% increased Reservation Efficiency of Herald Skills", + ["type"] = "explicit", + }, + }, ["1697447343"] = { ["AnyJewel"] = { ["max"] = 20, @@ -12480,6 +13418,24 @@ return { ["type"] = "explicit", }, }, + ["1702195217"] = { + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["Staff"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1713927892"] = { ["specialCaseData"] = { }, @@ -12499,6 +13455,10 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Gloves"] = { + ["max"] = 39, + ["min"] = 13, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12533,6 +13493,55 @@ return { ["type"] = "explicit", }, }, + ["1740229525"] = { + ["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"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", + }, + }, ["1742651309"] = { ["Belt"] = { ["max"] = 30, @@ -12546,7 +13555,28 @@ return { ["type"] = "explicit", }, }, + ["1746561819"] = { + ["1HWeapon"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1746561819", + ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["174664100"] = { + ["Belt"] = { + ["max"] = 16, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12611,6 +13641,15 @@ return { ["type"] = "explicit", }, }, + ["1772929282"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["type"] = "explicit", + }, + }, ["1773308808"] = { ["AnyJewel"] = { ["max"] = 2, @@ -12629,13 +13668,21 @@ return { }, }, ["1776411443"] = { + ["1HWeapon"] = { + ["max"] = 39, + ["min"] = 31, + }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 39, + ["min"] = 31, }, ["specialCaseData"] = { }, @@ -12706,6 +13753,10 @@ return { }, }, ["1797815732"] = { + ["Belt"] = { + ["max"] = 100, + ["min"] = 50, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12752,11 +13803,11 @@ return { ["1805182458"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, @@ -12767,6 +13818,10 @@ return { }, }, ["1805633363"] = { + ["Belt"] = { + ["max"] = 10, + ["min"] = 7, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12789,6 +13844,14 @@ return { }, }, ["1823942939"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12807,6 +13870,10 @@ return { ["max"] = 10, ["min"] = 5, }, + ["Gloves"] = { + ["max"] = 30, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12862,6 +13929,10 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Gloves"] = { + ["max"] = 40, + ["min"] = 11, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12871,6 +13942,22 @@ return { }, }, ["1840985759"] = { + ["1HWeapon"] = { + ["max"] = 23, + ["min"] = 12, + }, + ["2HWeapon"] = { + ["max"] = 23, + ["min"] = 12, + }, + ["Bow"] = { + ["max"] = 23, + ["min"] = 12, + }, + ["Spear"] = { + ["max"] = 23, + ["min"] = 12, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12897,6 +13984,23 @@ return { }, ["usePositiveSign"] = true, }, + ["1850249186"] = { + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1850249186", + ["text"] = "#% increased Spell Damage per 100 maximum Mana", + ["type"] = "explicit", + }, + }, ["1852184471"] = { ["AnyJewel"] = { ["max"] = 2, @@ -12940,6 +14044,10 @@ return { ["max"] = 25, ["min"] = 15, }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 6, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12949,6 +14057,10 @@ return { }, }, ["185580205"] = { + ["Belt"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12997,6 +14109,10 @@ return { }, }, ["1879206848"] = { + ["Helmets"] = { + ["max"] = 60, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13117,6 +14233,23 @@ return { ["type"] = "explicit", }, }, + ["1914226331"] = { + ["1HWeapon"] = { + ["max"] = 36, + ["min"] = 26, + }, + ["Wand"] = { + ["max"] = 36, + ["min"] = 26, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1914226331", + ["text"] = "#% increased Cast Speed while on Full Mana", + ["type"] = "explicit", + }, + }, ["1940865751"] = { ["1HMace"] = { ["max"] = 52.5, @@ -13184,6 +14317,10 @@ return { }, }, ["195270549"] = { + ["Ring"] = { + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13193,7 +14330,23 @@ return { }, }, ["1967040409"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["specialCaseData"] = { }, ["tradeMod"] = { ["id"] = "explicit.stat_1967040409", @@ -13259,6 +14412,10 @@ return { }, }, ["1992191903"] = { + ["Gloves"] = { + ["max"] = 4, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13303,6 +14460,10 @@ return { }, }, ["1999113824"] = { + ["Body Armour"] = { + ["max"] = 52, + ["min"] = 6, + }, ["Boots"] = { ["max"] = 100, ["min"] = 6, @@ -13331,6 +14492,23 @@ return { ["type"] = "explicit", }, }, + ["1999910726"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999910726", + ["text"] = "Remnants you create have #% increased effect", + ["type"] = "explicit", + }, + }, ["2011656677"] = { ["AnyJewel"] = { ["max"] = 10, @@ -13348,7 +14526,41 @@ return { ["type"] = "explicit", }, }, + ["2013356568"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2013356568", + ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2023107756"] = { + ["Amulet"] = { + ["max"] = 3, + ["min"] = 2, + }, ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -13357,6 +14569,10 @@ return { ["max"] = 2, ["min"] = 1, }, + ["Ring"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13410,6 +14626,26 @@ return { }, }, ["2074866941"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13445,6 +14681,10 @@ return { }, }, ["2083058281"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13512,6 +14752,14 @@ return { }, }, ["2103650854"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 39, + ["min"] = 12, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13527,11 +14775,11 @@ return { }, ["AnyJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, @@ -13601,6 +14849,14 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Gloves"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 12, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13609,6 +14865,19 @@ return { ["type"] = "explicit", }, }, + ["2116424886"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2116424886", + ["text"] = "#% increased Life Regeneration Rate while moving", + ["type"] = "explicit", + }, + }, ["2118708619"] = { ["AnyJewel"] = { ["max"] = 20, @@ -13627,6 +14896,10 @@ return { }, }, ["2122183138"] = { + ["Shield"] = { + ["max"] = 12, + ["min"] = 6, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13635,6 +14908,23 @@ return { ["type"] = "explicit", }, }, + ["212649958"] = { + ["1HWeapon"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_212649958", + ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", + ["type"] = "explicit", + }, + }, ["2131720304"] = { ["AnyJewel"] = { ["max"] = 2, @@ -13652,6 +14942,24 @@ return { ["type"] = "explicit", }, }, + ["2135541924"] = { + ["AnyJewel"] = { + ["max"] = -3, + ["min"] = -5, + }, + ["RadiusJewel"] = { + ["max"] = -3, + ["min"] = -5, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2135541924", + ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", + ["type"] = "explicit", + }, + }, ["2144192055"] = { ["Ring"] = { ["max"] = 233, @@ -13684,6 +14992,10 @@ return { }, }, ["2150661403"] = { + ["Belt"] = { + ["max"] = 50, + ["min"] = 40, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13693,6 +15005,18 @@ return { }, }, ["2158617060"] = { + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["Belt"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["Staff"] = { + ["max"] = 35, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13723,6 +15047,14 @@ return { ["max"] = 3, ["min"] = 1, }, + ["Belt"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Focus"] = { + ["max"] = 2, + ["min"] = 1, + }, ["Helmet"] = { ["max"] = 2, ["min"] = 1, @@ -13788,6 +15120,10 @@ return { }, }, ["2200293569"] = { + ["Belt"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13867,16 +15203,20 @@ return { }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["Focus"] = { ["max"] = 89, ["min"] = 25, }, + ["Quarterstaff"] = { + ["max"] = 99, + ["min"] = 86, + }, ["Ring"] = { ["max"] = 30, ["min"] = 3, @@ -13996,7 +15336,69 @@ return { ["type"] = "explicit", }, }, + ["2300185227"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Focus"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Gloves"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2301718443"] = { + ["1HMace"] = { + ["max"] = 59, + ["min"] = 41, + }, + ["1HWeapon"] = { + ["max"] = 59, + ["min"] = 41, + }, + ["2HMace"] = { + ["max"] = 99, + ["min"] = 86, + }, + ["2HWeapon"] = { + ["max"] = 99, + ["min"] = 86, + }, ["AnyJewel"] = { ["max"] = 25, ["min"] = 15, @@ -14014,14 +15416,58 @@ return { }, }, ["231689132"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_231689132", - ["text"] = "#% increased Explicit Elemental Damage Modifier magnitudes", - ["type"] = "explicit", + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, }, - }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_231689132", + ["text"] = "#% increased Explicit Elemental Damage Modifier magnitudes", + ["type"] = "explicit", + }, + }, ["2319832234"] = { ["specialCaseData"] = { }, @@ -14049,6 +15495,14 @@ return { }, }, ["2321178454"] = { + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 40, + }, ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, @@ -14057,10 +15511,22 @@ return { ["max"] = 20, ["min"] = 10, }, + ["Bow"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 25, + }, ["Quiver"] = { ["max"] = 26, ["min"] = 12, }, + ["Spear"] = { + ["max"] = 60, + ["min"] = 40, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14069,6 +15535,19 @@ return { ["type"] = "explicit", }, }, + ["232701452"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_232701452", + ["text"] = "#% increased Freeze Buildup if you've consumed an Power Charge Recently", + ["type"] = "explicit", + }, + }, ["2334956771"] = { ["AnyJewel"] = { ["max"] = 2, @@ -14086,6 +15565,31 @@ return { ["type"] = "explicit", }, }, + ["2337295272"] = { + ["2HWeapon"] = { + ["max"] = 79, + ["min"] = 60, + }, + ["Amulet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 79, + ["min"] = 60, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2337295272", + ["text"] = "Minions deal #% increased Damage if you've Hit Recently", + ["type"] = "explicit", + }, + }, ["2339757871"] = { ["Boots"] = { ["max"] = 19, @@ -14120,13 +15624,33 @@ return { }, }, ["234296660"] = { + ["1HWeapon"] = { + ["max"] = 59, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 59, + ["min"] = 40, + }, ["AnyJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 59, + ["min"] = 40, + }, + ["Spear"] = { + ["max"] = 59, + ["min"] = 40, + }, + ["Talisman"] = { + ["max"] = 59, + ["min"] = 40, }, ["specialCaseData"] = { }, @@ -14162,6 +15686,18 @@ return { ["max"] = 4, ["min"] = 2, }, + ["Focus"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 29, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 12, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14217,6 +15753,55 @@ return { ["type"] = "explicit", }, }, + ["2387539034"] = { + ["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"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", + }, + }, ["2392260628"] = { ["specialCaseData"] = { }, @@ -14244,6 +15829,50 @@ return { }, }, ["2393315299"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14270,6 +15899,10 @@ return { }, }, ["2416650879"] = { + ["Helmets"] = { + ["max"] = 60, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14308,6 +15941,27 @@ return { ["type"] = "explicit", }, }, + ["242637938"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_242637938", + ["text"] = "#% increased chance to inflict Bleeding", + ["type"] = "explicit", + }, + }, ["2440073079"] = { ["AnyJewel"] = { ["max"] = 15, @@ -14343,6 +15997,10 @@ return { }, }, ["2451402625"] = { + ["Body Armour"] = { + ["max"] = 52, + ["min"] = 6, + }, ["Boots"] = { ["max"] = 100, ["min"] = 6, @@ -14436,16 +16094,67 @@ return { ["type"] = "explicit", }, }, - ["2475221757"] = { - ["specialCaseData"] = { + ["2468595624"] = { + ["2HWeapon"] = { + ["max"] = 109, + ["min"] = 85, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2475221757", - ["text"] = "#% increased Effect of Suffixes", + ["Crossbow"] = { + ["max"] = 109, + ["min"] = 85, + }, + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2468595624", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", + ["type"] = "explicit", + }, + }, + ["2474424958"] = { + ["Focus"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2474424958", + ["text"] = "Spell Skills have # to maximum number of Summoned Totems", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["2475221757"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2475221757", + ["text"] = "#% increased Effect of Suffixes", ["type"] = "explicit", }, }, ["2480498143"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, ["AnyJewel"] = { ["max"] = 6, ["min"] = 4, @@ -14454,6 +16163,34 @@ return { ["max"] = 6, ["min"] = 4, }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quiver"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14492,11 +16229,11 @@ return { }, ["AnyJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, @@ -14515,6 +16252,10 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14652,6 +16393,10 @@ return { }, }, ["2527686725"] = { + ["2HWeapon"] = { + ["max"] = 23, + ["min"] = 14, + }, ["AnyJewel"] = { ["max"] = 15, ["min"] = 10, @@ -14660,6 +16405,10 @@ return { ["max"] = 15, ["min"] = 10, }, + ["Quarterstaff"] = { + ["max"] = 23, + ["min"] = 14, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14715,9 +16464,67 @@ return { ["type"] = "explicit", }, }, + ["2543331226"] = { + ["1HMace"] = { + ["max"] = 59, + ["min"] = 41, + }, + ["1HWeapon"] = { + ["max"] = 59, + ["min"] = 41, + }, + ["2HMace"] = { + ["max"] = 99, + ["min"] = 86, + }, + ["2HWeapon"] = { + ["max"] = 99, + ["min"] = 86, + }, + ["Talisman"] = { + ["max"] = 99, + ["min"] = 86, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2543331226", + ["text"] = "#% increased Damage while you have a Totem", + ["type"] = "explicit", + }, + }, + ["2544540062"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 31, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 31, + ["min"] = 25, + }, + ["Talisman"] = { + ["max"] = 31, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2544540062", + ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", + ["type"] = "explicit", + }, + }, ["2557965901"] = { ["Gloves"] = { - ["max"] = 9.9, + ["max"] = 12, ["min"] = 6, }, ["Ring"] = { @@ -14750,6 +16557,10 @@ return { }, }, ["2567751411"] = { + ["Helmets"] = { + ["max"] = 50, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14758,6 +16569,27 @@ return { ["type"] = "explicit", }, }, + ["2573406169"] = { + ["2HWeapon"] = { + ["max"] = 38, + ["min"] = 27, + }, + ["Crossbow"] = { + ["max"] = 38, + ["min"] = 27, + }, + ["Quiver"] = { + ["max"] = 26, + ["min"] = 18, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2573406169", + ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", + ["type"] = "explicit", + }, + }, ["2580617872"] = { ["AnyJewel"] = { ["max"] = -2, @@ -14777,6 +16609,10 @@ return { }, }, ["258119672"] = { + ["Boots"] = { + ["max"] = 0.5, + ["min"] = 0.1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14797,6 +16633,50 @@ return { }, ["usePositiveSign"] = true, }, + ["2586152168"] = { + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2586152168", + ["text"] = "Archon recovery period expires #% faster", + ["type"] = "explicit", + }, + }, + ["2589572664"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2589572664", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", + ["type"] = "explicit", + }, + }, + ["2590797182"] = { + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2590797182", + ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", + ["type"] = "explicit", + }, + }, ["2594634307"] = { ["AnyJewel"] = { ["max"] = 32, @@ -14806,6 +16686,10 @@ return { ["max"] = 32, ["min"] = 18, }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 50, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14814,6 +16698,15 @@ return { ["type"] = "explicit", }, }, + ["2604619892"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2604619892", + ["text"] = "#% increased Duration of Elemental Ailments on Enemies", + ["type"] = "explicit", + }, + }, ["2610562860"] = { ["AnyJewel"] = { ["max"] = 1, @@ -14840,6 +16733,23 @@ return { ["type"] = "explicit", }, }, + ["263495202"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_263495202", + ["text"] = "#% increased Cost Efficiency", + ["type"] = "explicit", + }, + }, ["2637470878"] = { ["AnyJewel"] = { ["max"] = 20, @@ -14849,6 +16759,10 @@ return { ["max"] = 20, ["min"] = 10, }, + ["Helmets"] = { + ["max"] = 150, + ["min"] = 50, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14875,6 +16789,10 @@ return { }, }, ["2639966148"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14884,6 +16802,10 @@ return { }, }, ["2653231923"] = { + ["Ring"] = { + ["max"] = 26, + ["min"] = 7, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14895,11 +16817,11 @@ return { ["2653955271"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 4, }, ["specialCaseData"] = { }, @@ -14910,6 +16832,10 @@ return { }, }, ["2663359259"] = { + ["Helmets"] = { + ["max"] = 55, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15061,6 +16987,10 @@ return { }, }, ["2704225257"] = { + ["Body Armour"] = { + ["max"] = 24, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15087,14 +17017,51 @@ return { ["type"] = "explicit", }, }, - ["2709367754"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["2706625504"] = { + ["1HWeapon"] = { + ["max"] = 34, + ["min"] = 25, }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["2HWeapon"] = { + ["max"] = 34, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 34, + ["min"] = 25, + }, + ["Quiver"] = { + ["max"] = 26, + ["min"] = 18, + }, + ["Spear"] = { + ["max"] = 34, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2706625504", + ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", + ["type"] = "explicit", + }, + }, + ["2709367754"] = { + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 6, + ["min"] = 3, }, ["specialCaseData"] = { }, @@ -15130,6 +17097,20 @@ return { ["type"] = "explicit", }, }, + ["2715190555"] = { + ["Belt"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2715190555", + ["text"] = "#% to Thorns Critical Hit Chance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2720982137"] = { ["AnyJewel"] = { ["max"] = 25, @@ -15156,6 +17137,15 @@ return { ["type"] = "explicit", }, }, + ["2725205297"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2725205297", + ["text"] = "#% increased Magnitude of Unholy Might buffs you grant", + ["type"] = "explicit", + }, + }, ["2726713579"] = { ["AnyJewel"] = { ["max"] = 1, @@ -15194,6 +17184,10 @@ return { ["max"] = 34, ["min"] = 10, }, + ["Ring"] = { + ["max"] = 29, + ["min"] = 8, + }, ["Staff"] = { ["max"] = 59, ["min"] = 15, @@ -15215,6 +17209,10 @@ return { ["max"] = 8, ["min"] = 3, }, + ["Body Armour"] = { + ["max"] = 20, + ["min"] = 1, + }, ["Ring"] = { ["max"] = 6, ["min"] = 4, @@ -15228,6 +17226,10 @@ return { }, }, ["2749595652"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15236,6 +17238,23 @@ return { ["type"] = "explicit", }, }, + ["2760344900"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2760344900", + ["text"] = "#% chance when you Reload a Crossbow to be immediate", + ["type"] = "explicit", + }, + }, ["2768835289"] = { ["1HWeapon"] = { ["max"] = 119, @@ -15299,6 +17318,23 @@ return { ["type"] = "explicit", }, }, + ["2783157569"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2783157569", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + }, ["2797971005"] = { ["Gloves"] = { ["max"] = 5, @@ -15363,6 +17399,35 @@ return { ["type"] = "explicit", }, }, + ["2825946427"] = { + ["1HWeapon"] = { + ["max"] = 79, + ["min"] = 60, + }, + ["2HWeapon"] = { + ["max"] = 79, + ["min"] = 60, + }, + ["Bow"] = { + ["max"] = 79, + ["min"] = 60, + }, + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 79, + ["min"] = 60, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2825946427", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", + ["type"] = "explicit", + }, + }, ["2839066308"] = { ["AnyJewel"] = { ["max"] = 15, @@ -15372,6 +17437,10 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 12, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15380,6 +17449,15 @@ return { ["type"] = "explicit", }, }, + ["2840930496"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2840930496", + ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", + ["type"] = "explicit", + }, + }, ["2840989393"] = { ["AnyJewel"] = { ["max"] = 1, @@ -15400,11 +17478,11 @@ return { ["2843214518"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["specialCaseData"] = { }, @@ -15455,11 +17533,11 @@ return { }, ["AnyJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, @@ -15469,6 +17547,19 @@ return { ["type"] = "explicit", }, }, + ["287294012"] = { + ["Belt"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_287294012", + ["text"] = "# to # Fire Thorns damage per 100 maximum Life", + ["type"] = "explicit", + }, + }, ["2881298780"] = { ["Belt"] = { ["max"] = 185.5, @@ -15578,6 +17669,23 @@ return { ["type"] = "explicit", }, }, + ["2896115339"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2896115339", + ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", + ["type"] = "explicit", + }, + }, ["2897413282"] = { ["specialCaseData"] = { }, @@ -15627,6 +17735,27 @@ return { ["type"] = "explicit", }, }, + ["2910761524"] = { + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["Focus"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["type"] = "explicit", + }, + }, ["2912416697"] = { ["AnyJewel"] = { ["max"] = 5, @@ -15724,6 +17853,10 @@ return { }, }, ["2942439603"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 7, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15767,6 +17900,10 @@ return { ["max"] = 25, ["min"] = 15, }, + ["Belt"] = { + ["max"] = 55, + ["min"] = 6, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15853,16 +17990,20 @@ return { }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["Focus"] = { ["max"] = 89, ["min"] = 25, }, + ["Ring"] = { + ["max"] = 39, + ["min"] = 6, + }, ["Staff"] = { ["max"] = 238, ["min"] = 30, @@ -15896,6 +18037,48 @@ return { ["type"] = "explicit", }, }, + ["2991045011"] = { + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2991045011", + ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", + ["type"] = "explicit", + }, + }, + ["299996"] = { + ["1HWeapon"] = { + ["max"] = 13, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 13, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 13, + ["min"] = 8, + }, + ["Spear"] = { + ["max"] = 13, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_299996", + ["text"] = "#% increased Attack Speed while your Companion is in your Presence", + ["type"] = "explicit", + }, + }, ["3003542304"] = { ["AnyJewel"] = { ["max"] = 15, @@ -15905,6 +18088,10 @@ return { ["max"] = 15, ["min"] = 10, }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15922,6 +18109,10 @@ return { ["max"] = 1, ["min"] = 1, }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15930,6 +18121,15 @@ return { ["type"] = "explicit", }, }, + ["3007552094"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3007552094", + ["text"] = "You have Unholy Might", + ["type"] = "explicit", + }, + }, ["3015669065"] = { ["1HWeapon"] = { ["max"] = 30, @@ -16008,6 +18208,10 @@ return { }, }, ["3028809864"] = { + ["1HWeapon"] = { + ["max"] = 79, + ["min"] = 60, + }, ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, @@ -16016,6 +18220,10 @@ return { ["max"] = 20, ["min"] = 10, }, + ["Spear"] = { + ["max"] = 79, + ["min"] = 60, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16137,6 +18345,14 @@ return { ["usePositiveSign"] = true, }, ["3037553757"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16145,7 +18361,20 @@ return { ["type"] = "explicit", }, }, - ["30438393"] = { + ["3040571529"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3040571529", + ["text"] = "#% increased Deflection Rating", + ["type"] = "explicit", + }, + }, + ["30438393"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -16249,6 +18478,10 @@ return { ["max"] = 4, ["min"] = 2, }, + ["Ring"] = { + ["max"] = 10, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16284,6 +18517,10 @@ return { }, }, ["3107707789"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16292,6 +18529,19 @@ return { ["type"] = "explicit", }, }, + ["310945763"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", + ["type"] = "explicit", + }, + }, ["3113764475"] = { ["AnyJewel"] = { ["max"] = 5, @@ -16309,6 +18559,19 @@ return { ["type"] = "explicit", }, }, + ["311641062"] = { + ["Belt"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", + ["type"] = "explicit", + }, + }, ["3119612865"] = { ["AnyJewel"] = { ["max"] = 16, @@ -16344,14 +18607,39 @@ return { ["type"] = "explicit", }, }, + ["3131442032"] = { + ["2HWeapon"] = { + ["max"] = 121, + ["min"] = 101, + }, + ["Crossbow"] = { + ["max"] = 121, + ["min"] = 101, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3131442032", + ["text"] = "#% increased Grenade Damage", + ["type"] = "explicit", + }, + }, ["3141070085"] = { + ["1HWeapon"] = { + ["max"] = 89, + ["min"] = 74, + }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 89, + ["min"] = 74, }, ["specialCaseData"] = { }, @@ -16362,6 +18650,14 @@ return { }, }, ["3143918757"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Helmets"] = { + ["max"] = 85, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16379,6 +18675,10 @@ return { ["max"] = 1, ["min"] = 1, }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16388,6 +18688,18 @@ return { }, }, ["315791320"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, ["Sceptre"] = { ["max"] = 20, ["min"] = 15, @@ -16401,6 +18713,10 @@ return { }, }, ["3166958180"] = { + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 27, + }, ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -16409,6 +18725,14 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 38, + ["min"] = 27, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16491,6 +18815,23 @@ return { ["type"] = "explicit", }, }, + ["3176481473"] = { + ["Amulet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3176481473", + ["text"] = "#% increased Spell Damage while on Full Energy Shield", + ["type"] = "explicit", + }, + }, ["318092306"] = { ["AnyJewel"] = { ["max"] = 1, @@ -16536,6 +18877,14 @@ return { }, }, ["3191479793"] = { + ["Focus"] = { + ["max"] = 20, + ["min"] = 12, + }, + ["Ring"] = { + ["max"] = 23, + ["min"] = 16, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16562,6 +18911,50 @@ return { }, }, ["3196512240"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16580,6 +18973,50 @@ return { }, }, ["3206904707"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16588,6 +19025,19 @@ return { ["type"] = "explicit", }, }, + ["321970274"] = { + ["Shield"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_321970274", + ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", + ["type"] = "explicit", + }, + }, ["3222402650"] = { ["AnyJewel"] = { ["max"] = 2, @@ -16633,6 +19083,10 @@ return { }, }, ["323800555"] = { + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16641,6 +19095,19 @@ return { ["type"] = "explicit", }, }, + ["324210709"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_324210709", + ["text"] = "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", + ["type"] = "explicit", + }, + }, ["3243034867"] = { ["specialCaseData"] = { }, @@ -16651,6 +19118,10 @@ return { }, }, ["3249412463"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16943,16 +19414,20 @@ return { }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["Focus"] = { ["max"] = 89, ["min"] = 25, }, + ["Quarterstaff"] = { + ["max"] = 99, + ["min"] = 86, + }, ["Ring"] = { ["max"] = 30, ["min"] = 3, @@ -16982,6 +19457,10 @@ return { ["max"] = 3, ["min"] = 1, }, + ["Helmets"] = { + ["max"] = 10, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16999,6 +19478,10 @@ return { ["max"] = 174, ["min"] = 10, }, + ["Body Armour"] = { + ["max"] = 189, + ["min"] = 19, + }, ["Boots"] = { ["max"] = 149, ["min"] = 10, @@ -17033,6 +19516,14 @@ return { ["usePositiveSign"] = true, }, ["3301100256"] = { + ["Belt"] = { + ["max"] = -20, + ["min"] = -30, + }, + ["Boots"] = { + ["max"] = -20, + ["min"] = -30, + }, ["Chest"] = { ["max"] = -36, ["min"] = -60, @@ -17046,7 +19537,66 @@ return { ["type"] = "explicit", }, }, + ["330530785"] = { + ["1HWeapon"] = { + ["max"] = 34, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 34, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 34, + ["min"] = 25, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 34, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_330530785", + ["text"] = "#% increased Immobilisation buildup", + ["type"] = "explicit", + }, + }, + ["3308030688"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3308030688", + ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["type"] = "explicit", + }, + }, + ["3313255158"] = { + ["Gloves"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3313255158", + ["text"] = "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", + ["type"] = "explicit", + }, + }, ["3321629045"] = { + ["Body Armour"] = { + ["max"] = 52, + ["min"] = 6, + }, ["Boots"] = { ["max"] = 100, ["min"] = 6, @@ -17167,6 +19717,55 @@ return { ["type"] = "explicit", }, }, + ["3350279336"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3350279336", + ["text"] = "#% increased Cost Efficiency of Attacks", + ["type"] = "explicit", + }, + }, ["335885735"] = { ["specialCaseData"] = { }, @@ -17262,6 +19861,22 @@ return { ["usePositiveSign"] = true, }, ["3374165039"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["2HMace"] = { + ["max"] = 31, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 31, + ["min"] = 25, + }, ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, @@ -17270,6 +19885,10 @@ return { ["max"] = 20, ["min"] = 10, }, + ["Talisman"] = { + ["max"] = 31, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17279,6 +19898,10 @@ return { }, }, ["3377888098"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 8, + }, ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, @@ -17287,6 +19910,14 @@ return { ["max"] = 10, ["min"] = 5, }, + ["Boots"] = { + ["max"] = 40, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17296,6 +19927,10 @@ return { }, }, ["3384867265"] = { + ["Belt"] = { + ["max"] = 35, + ["min"] = 21, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17339,6 +19974,46 @@ return { }, }, ["3393628375"] = { + ["Amulet"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Belt"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Body Armour"] = { + ["max"] = 31, + ["min"] = 3, + }, + ["Boots"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Chest"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Focus"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Gloves"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Helmet"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Ring"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Shield"] = { + ["max"] = 17, + ["min"] = 13, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17382,6 +20057,68 @@ return { ["type"] = "explicit", }, }, + ["3396435291"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3396435291", + ["text"] = "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", + ["type"] = "explicit", + }, + }, + ["3398283493"] = { + ["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"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", + }, + }, ["3398301358"] = { ["AnyJewel"] = { ["max"] = 15, @@ -17427,6 +20164,10 @@ return { ["max"] = 15, ["min"] = 10, }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17436,6 +20177,14 @@ return { }, }, ["3407849389"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17461,14 +20210,27 @@ return { ["type"] = "explicit", }, }, + ["3413635271"] = { + ["Chest"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3413635271", + ["text"] = "#% increased Reservation Efficiency of Companion Skills", + ["type"] = "explicit", + }, + }, ["3417711605"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 4, }, ["specialCaseData"] = { }, @@ -17496,6 +20258,10 @@ return { }, }, ["3422093970"] = { + ["Belt"] = { + ["max"] = 16, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17522,15 +20288,55 @@ return { }, }, ["3465022881"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 17, + ["min"] = 13, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3465022881", - ["text"] = "#% to Lightning and Chaos Resistances", - ["type"] = "explicit", + ["Belt"] = { + ["max"] = 17, + ["min"] = 13, }, - ["usePositiveSign"] = true, - }, + ["Body Armour"] = { + ["max"] = 31, + ["min"] = 3, + }, + ["Boots"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Chest"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Focus"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Gloves"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Helmet"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Ring"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Shield"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3465022881", + ["text"] = "#% to Lightning and Chaos Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3471443885"] = { ["specialCaseData"] = { }, @@ -17557,7 +20363,36 @@ return { ["type"] = "explicit", }, }, + ["3481083201"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3481083201", + ["text"] = "#% increased chance to Poison", + ["type"] = "explicit", + }, + }, ["3482326075"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 51, + ["min"] = 12, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17618,6 +20453,10 @@ return { ["max"] = 89, ["min"] = 8, }, + ["Belt"] = { + ["max"] = 89, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17627,6 +20466,23 @@ return { }, ["usePositiveSign"] = true, }, + ["3491815140"] = { + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3491815140", + ["text"] = "#% increased Spell Damage per 100 Maximum Life", + ["type"] = "explicit", + }, + }, ["350598685"] = { ["specialCaseData"] = { }, @@ -17637,6 +20493,19 @@ return { }, ["usePositiveSign"] = true, }, + ["3509362078"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3509362078", + ["text"] = "#% increased Evasion Rating from Equipped Body Armour", + ["type"] = "explicit", + }, + }, ["3513818125"] = { ["AnyJewel"] = { ["max"] = 3, @@ -17654,6 +20523,59 @@ return { ["type"] = "explicit", }, }, + ["3514984677"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3514984677", + ["text"] = "#% increased Explicit Mana Modifier magnitudes", + ["type"] = "explicit", + }, + }, ["3518449420"] = { ["specialCaseData"] = { }, @@ -17689,6 +20611,10 @@ return { }, }, ["3526763442"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 7, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17697,6 +20623,35 @@ return { ["type"] = "explicit", }, }, + ["3544050945"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3544050945", + ["text"] = "#% of Spell Mana Cost Converted to Life Cost", + ["type"] = "explicit", + }, + }, ["3544800472"] = { ["AnyJewel"] = { ["max"] = 20, @@ -17715,6 +20670,10 @@ return { }, }, ["3552135623"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17741,6 +20700,10 @@ return { ["max"] = 34, ["min"] = 10, }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 13, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17749,7 +20712,77 @@ return { ["type"] = "explicit", }, }, + ["3561837752"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3561837752", + ["text"] = "#% of Leech is Instant", + ["type"] = "explicit", + }, + }, + ["3566150527"] = { + ["AnyJewel"] = { + ["max"] = 0.07, + ["min"] = 0.03, + }, + ["RadiusJewel"] = { + ["max"] = 0.07, + ["min"] = 0.03, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3566150527", + ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", + ["type"] = "explicit", + }, + }, ["3574578302"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17822,6 +20855,23 @@ return { ["type"] = "explicit", }, }, + ["359357545"] = { + ["1HWeapon"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_359357545", + ["text"] = "Enemies Hindered by you take #% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["3596695232"] = { ["AnyJewel"] = { ["max"] = 20, @@ -17840,6 +20890,10 @@ return { }, }, ["3621874554"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 30, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17849,7 +20903,51 @@ return { }, }, ["3624940721"] = { - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { }, ["tradeMod"] = { ["id"] = "explicit.stat_3624940721", @@ -17875,6 +20973,50 @@ return { }, }, ["363924732"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17987,6 +21129,10 @@ return { }, }, ["3655769732"] = { + ["Amulet"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18099,6 +21245,19 @@ return { ["type"] = "explicit", }, }, + ["3694078435"] = { + ["Shield"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3694078435", + ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", + ["type"] = "explicit", + }, + }, ["3695891184"] = { ["1HMace"] = { ["max"] = 84, @@ -18185,6 +21344,19 @@ return { ["type"] = "explicit", }, }, + ["3711973554"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3711973554", + ["text"] = "Invocated Spells have #% chance to consume half as much Energy", + ["type"] = "explicit", + }, + }, ["3714003708"] = { ["AnyJewel"] = { ["max"] = 20, @@ -18224,6 +21396,10 @@ return { }, }, ["3742865955"] = { + ["Belt"] = { + ["max"] = 61, + ["min"] = 13, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18267,6 +21443,10 @@ return { ["max"] = 8, ["min"] = 4, }, + ["Gloves"] = { + ["max"] = 40, + ["min"] = 11, + }, ["Quiver"] = { ["max"] = 46, ["min"] = 10, @@ -18387,6 +21567,46 @@ return { }, }, ["378817135"] = { + ["Amulet"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Belt"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Body Armour"] = { + ["max"] = 31, + ["min"] = 3, + }, + ["Boots"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Chest"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Focus"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Gloves"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Helmet"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Ring"] = { + ["max"] = 17, + ["min"] = 13, + }, + ["Shield"] = { + ["max"] = 17, + ["min"] = 13, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18397,6 +21617,10 @@ return { ["usePositiveSign"] = true, }, ["3791899485"] = { + ["2HWeapon"] = { + ["max"] = 23, + ["min"] = 14, + }, ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -18405,6 +21629,14 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Gloves"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 23, + ["min"] = 14, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18422,6 +21654,10 @@ return { ["max"] = 8, ["min"] = 5, }, + ["Belt"] = { + ["max"] = 24, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18465,6 +21701,10 @@ return { ["max"] = 25, ["min"] = 15, }, + ["Gloves"] = { + ["max"] = 99, + ["min"] = 50, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18500,6 +21740,19 @@ return { }, ["usePositiveSign"] = true, }, + ["3839676903"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3839676903", + ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", + ["type"] = "explicit", + }, + }, ["3850614073"] = { ["1HWeapon"] = { ["max"] = 18, @@ -18521,11 +21774,11 @@ return { ["3851254963"] = { ["AnyJewel"] = { ["max"] = 18, - ["min"] = 10, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 18, - ["min"] = 10, + ["min"] = 4, }, ["specialCaseData"] = { }, @@ -18537,8 +21790,8 @@ return { }, ["3855016469"] = { ["Body Armour"] = { - ["max"] = 50, - ["min"] = 40, + ["max"] = 99, + ["min"] = 10, }, ["Shield"] = { ["max"] = 54, @@ -18587,6 +21840,10 @@ return { }, }, ["3858572996"] = { + ["Belt"] = { + ["max"] = 59, + ["min"] = 41, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18630,6 +21887,14 @@ return { }, }, ["3868118796"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18770,6 +22035,48 @@ return { ["type"] = "explicit", }, }, + ["3927679277"] = { + ["Focus"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3927679277", + ["text"] = "#% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", + ["type"] = "explicit", + }, + }, + ["3932115504"] = { + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Spear"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3932115504", + ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", + ["type"] = "explicit", + }, + }, ["3936121440"] = { ["AnyJewel"] = { ["max"] = 5, @@ -18787,6 +22094,23 @@ return { ["type"] = "explicit", }, }, + ["3939216292"] = { + ["AnyJewel"] = { + ["max"] = 0.1, + ["min"] = 0.1, + }, + ["RadiusJewel"] = { + ["max"] = 0.1, + ["min"] = 0.1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3939216292", + ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", + ["type"] = "explicit", + }, + }, ["394473632"] = { ["AnyJewel"] = { ["max"] = 3, @@ -18814,27 +22138,56 @@ return { }, ["usePositiveSign"] = true, }, - ["3962278098"] = { + ["3950000557"] = { + ["1HMace"] = { + ["max"] = 16, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, + ["max"] = 16, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 23, + ["min"] = 16, }, ["2HWeapon"] = { - ["max"] = 238, + ["max"] = 23, + ["min"] = 16, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3950000557", + ["text"] = "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + ["type"] = "explicit", + }, + }, + ["3962278098"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, ["min"] = 50, }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["Focus"] = { ["max"] = 89, ["min"] = 25, }, + ["Quarterstaff"] = { + ["max"] = 99, + ["min"] = 86, + }, ["Ring"] = { ["max"] = 30, ["min"] = 3, @@ -18855,14 +22208,36 @@ return { ["type"] = "explicit", }, }, + ["3972229254"] = { + ["Helmet"] = { + ["max"] = 31, + ["min"] = 23, + }, + ["Shield"] = { + ["max"] = 31, + ["min"] = 23, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3972229254", + ["text"] = "#% of Armour also applies to Chaos Damage", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3973629633"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 3, }, ["BaseJewel"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 3, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 15, }, ["specialCaseData"] = { }, @@ -18873,6 +22248,10 @@ return { }, }, ["3981240776"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 35, + }, ["Amulet"] = { ["max"] = 50, ["min"] = 30, @@ -18881,6 +22260,10 @@ return { ["max"] = 61, ["min"] = 30, }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 35, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18917,6 +22300,10 @@ return { }, }, ["3987691524"] = { + ["Helmets"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18960,6 +22347,10 @@ return { }, }, ["4015621042"] = { + ["Body Armour"] = { + ["max"] = 52, + ["min"] = 6, + }, ["Boots"] = { ["max"] = 100, ["min"] = 6, @@ -18993,6 +22384,10 @@ return { }, }, ["4019237939"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 21, + }, ["Bow"] = { ["max"] = 20, ["min"] = 15, @@ -19045,6 +22440,10 @@ return { ["max"] = 33, ["min"] = 25, }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 21, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19070,6 +22469,40 @@ return { ["type"] = "explicit", }, }, + ["4033618138"] = { + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Quarterstaff"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4033618138", + ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", + ["type"] = "explicit", + }, + }, + ["4043376133"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4043376133", + ["text"] = "#% increased Magnitude of Abyssal Wasting you inflict", + ["type"] = "explicit", + }, + }, ["4045894391"] = { ["AnyJewel"] = { ["max"] = 16, @@ -19221,6 +22654,14 @@ return { ["usePositiveSign"] = true, }, ["4081947835"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 25, + }, ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -19229,6 +22670,18 @@ return { ["max"] = 5, ["min"] = 3, }, + ["Bow"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["Gloves"] = { + ["max"] = 32, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 35, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19294,6 +22747,18 @@ return { ["usePositiveSign"] = true, }, ["4097212302"] = { + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19306,7 +22771,19 @@ return { ["4101445926"] = { ["Focus"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 6, }, ["Staff"] = { ["max"] = 32, @@ -19354,11 +22831,32 @@ return { ["type"] = "explicit", }, }, + ["4136346606"] = { + ["Focus"] = { + ["max"] = 79, + ["min"] = 61, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4136346606", + ["text"] = "#% increased Spell Damage while wielding a Melee Weapon", + ["type"] = "explicit", + }, + }, ["4139681126"] = { ["Amulet"] = { ["max"] = 10, ["min"] = 7, }, + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19411,7 +22909,36 @@ return { ["type"] = "explicit", }, }, + ["414821772"] = { + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_414821772", + ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", + ["type"] = "explicit", + }, + }, ["4159248054"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["2HMace"] = { + ["max"] = 31, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 31, + ["min"] = 25, + }, ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -19420,6 +22947,14 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Helmets"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["Talisman"] = { + ["max"] = 31, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19638,6 +23173,14 @@ return { }, }, ["4246007234"] = { + ["Amulet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19646,6 +23189,23 @@ return { ["type"] = "explicit", }, }, + ["4257790560"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4257790560", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", + ["type"] = "explicit", + }, + }, ["4258000627"] = { ["AnyJewel"] = { ["max"] = 1, @@ -19664,6 +23224,18 @@ return { }, }, ["4258524206"] = { + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 25, + }, + ["Helmets"] = { + ["max"] = 60, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 40, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19690,6 +23262,10 @@ return { }, }, ["4259875040"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19698,6 +23274,24 @@ return { ["type"] = "explicit", }, }, + ["4270096386"] = { + ["Chest"] = { + ["max"] = -17, + ["min"] = -25, + }, + ["Shield"] = { + ["max"] = -17, + ["min"] = -25, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4270096386", + ["text"] = "Hits have #% increased Critical Hit Chance against you", + ["type"] = "explicit", + }, + }, ["4273473110"] = { ["specialCaseData"] = { }, @@ -19724,6 +23318,20 @@ return { ["type"] = "explicit", }, }, + ["4283407333"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4283407333", + ["text"] = "# to Level of all Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["429143663"] = { ["AnyJewel"] = { ["max"] = 16, @@ -19784,10 +23392,23 @@ return { ["type"] = "explicit", }, }, - ["44972811"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["446027070"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_446027070", + ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Hit", + ["type"] = "explicit", + }, + }, + ["44972811"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, @@ -19819,6 +23440,10 @@ return { }, }, ["458438597"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 8, + }, ["AnyJewel"] = { ["max"] = 4, ["min"] = 2, @@ -19827,6 +23452,18 @@ return { ["max"] = 4, ["min"] = 2, }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 4, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19857,6 +23494,14 @@ return { ["max"] = 24, ["min"] = 10, }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19872,7 +23517,7 @@ return { }, ["2HWeapon"] = { ["max"] = 80, - ["min"] = 31, + ["min"] = 14, }, ["AnyJewel"] = { ["max"] = 20, @@ -19882,6 +23527,10 @@ return { ["max"] = 20, ["min"] = 10, }, + ["Quarterstaff"] = { + ["max"] = 23, + ["min"] = 14, + }, ["Staff"] = { ["max"] = 80, ["min"] = 31, @@ -19915,6 +23564,20 @@ return { ["type"] = "explicit", }, }, + ["480796730"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_480796730", + ["text"] = "#% to maximum Block chance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["484792219"] = { ["AnyJewel"] = { ["max"] = 2, @@ -19941,6 +23604,10 @@ return { ["max"] = 20, ["min"] = 10, }, + ["Ring"] = { + ["max"] = 52, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19949,6 +23616,19 @@ return { ["type"] = "explicit", }, }, + ["501873429"] = { + ["Belt"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_501873429", + ["text"] = "#% chance for Charms you use to not consume Charges", + ["type"] = "explicit", + }, + }, ["504915064"] = { ["AnyJewel"] = { ["max"] = 10, @@ -19966,6 +23646,19 @@ return { ["type"] = "explicit", }, }, + ["514290151"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_514290151", + ["text"] = "Gain #% of Maximum Mana as Armour", + ["type"] = "explicit", + }, + }, ["517664839"] = { ["AnyJewel"] = { ["max"] = 3, @@ -20093,6 +23786,63 @@ return { }, ["usePositiveSign"] = true, }, + ["53386210"] = { + ["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, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53386210", + ["text"] = "#% increased Spirit Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + }, ["533892981"] = { ["AnyJewel"] = { ["max"] = 2, @@ -20119,6 +23869,10 @@ return { ["max"] = 7, ["min"] = 3, }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -20127,6 +23881,69 @@ return { ["type"] = "explicit", }, }, + ["538848803"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Focus"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Gloves"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "# to Strength and Dexterity", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["538981065"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538981065", + ["text"] = "Grenades have #% chance to activate a second time", + ["type"] = "explicit", + }, + }, ["541021467"] = { ["specialCaseData"] = { }, @@ -20137,6 +23954,10 @@ return { }, }, ["548070846"] = { + ["Body Armour"] = { + ["max"] = -5, + ["min"] = -50, + }, ["invertOnNegative"] = true, ["specialCaseData"] = { }, @@ -20147,6 +23968,10 @@ return { }, }, ["54812069"] = { + ["Belt"] = { + ["max"] = 5, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -20165,6 +23990,10 @@ return { }, }, ["555706343"] = { + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -20239,6 +24068,20 @@ return { ["type"] = "explicit", }, }, + ["569299859"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["587431675"] = { ["Amulet"] = { ["max"] = 38, @@ -20252,6 +24095,10 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Gloves"] = { + ["max"] = 34, + ["min"] = 16, + }, ["Helmet"] = { ["max"] = 34, ["min"] = 10, @@ -20419,11 +24266,32 @@ return { ["type"] = "explicit", }, }, + ["656291658"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_656291658", + ["text"] = "#% increased Cast Speed when on Full Life", + ["type"] = "explicit", + }, + }, ["656461285"] = { ["Amulet"] = { ["max"] = 10, ["min"] = 7, }, + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -20432,18 +24300,47 @@ return { ["type"] = "explicit", }, }, - ["669069897"] = { - ["1HMace"] = { - ["max"] = 8.9, - ["min"] = 5, - }, + ["666077204"] = { ["1HWeapon"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 8.9, - ["min"] = 5, + ["max"] = 18, + ["min"] = 12, + }, + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Bow"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Spear"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Talisman"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_666077204", + ["text"] = "Companions have #% increased Attack Speed", + ["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, @@ -20599,6 +24496,35 @@ return { }, ["usePositiveSign"] = true, }, + ["693180608"] = { + ["1HWeapon"] = { + ["max"] = 59, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 59, + ["min"] = 40, + }, + ["Bow"] = { + ["max"] = 59, + ["min"] = 40, + }, + ["Spear"] = { + ["max"] = 59, + ["min"] = 40, + }, + ["Talisman"] = { + ["max"] = 59, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_693180608", + ["text"] = "#% increased Damage while your Companion is in your Presence", + ["type"] = "explicit", + }, + }, ["693237939"] = { ["AnyJewel"] = { ["max"] = 2, @@ -20700,6 +24626,23 @@ return { ["type"] = "explicit", }, }, + ["710476746"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_710476746", + ["text"] = "#% increased Reload Speed", + ["type"] = "explicit", + }, + }, ["712554801"] = { ["AnyJewel"] = { ["max"] = 8, @@ -20709,6 +24652,10 @@ return { ["max"] = 8, ["min"] = 4, }, + ["Gloves"] = { + ["max"] = 39, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -20745,6 +24692,10 @@ return { ["usePositiveSign"] = true, }, ["73032170"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -20758,6 +24709,14 @@ return { ["max"] = 10, ["min"] = 7, }, + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -20777,11 +24736,11 @@ return { }, ["AnyJewel"] = { ["max"] = 13, - ["min"] = 7, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 13, - ["min"] = 7, + ["min"] = 4, }, ["Focus"] = { ["max"] = 89, @@ -20828,6 +24787,10 @@ return { ["max"] = 59, ["min"] = 27, }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 7, + }, ["Staff"] = { ["max"] = 109, ["min"] = 40, @@ -20885,6 +24848,20 @@ return { ["type"] = "explicit", }, }, + ["752930724"] = { + ["Amulet"] = { + ["max"] = -10, + ["min"] = -15, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_752930724", + ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", + ["type"] = "explicit", + }, + }, ["758893621"] = { ["specialCaseData"] = { }, @@ -20901,11 +24878,19 @@ return { }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 4, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 7, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 7, }, ["Sceptre"] = { ["max"] = 50, @@ -20940,6 +24925,10 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Belt"] = { + ["max"] = 69, + ["min"] = 10, + }, ["Focus"] = { ["max"] = 69, ["min"] = 10, @@ -21036,6 +25025,10 @@ return { }, }, ["797289402"] = { + ["Belt"] = { + ["max"] = 59, + ["min"] = 41, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -21091,11 +25084,11 @@ return { ["818778753"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 4, }, ["specialCaseData"] = { }, @@ -21105,6 +25098,19 @@ return { ["type"] = "explicit", }, }, + ["818877178"] = { + ["Shield"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_818877178", + ["text"] = "#% increased Parried Debuff Magnitude", + ["type"] = "explicit", + }, + }, ["821021828"] = { ["1HMace"] = { ["max"] = 5, @@ -21189,6 +25195,10 @@ return { }, }, ["825116955"] = { + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -21266,6 +25276,23 @@ return { ["type"] = "explicit", }, }, + ["85367160"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_85367160", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + }, ["868556494"] = { ["AnyJewel"] = { ["max"] = 2, @@ -21300,6 +25327,19 @@ return { ["type"] = "explicit", }, }, + ["886088880"] = { + ["Shield"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_886088880", + ["text"] = "Your Heavy Stun buildup empties #% faster", + ["type"] = "explicit", + }, + }, ["886931978"] = { ["LifeFlask"] = { ["max"] = 100, @@ -21348,6 +25388,19 @@ return { }, ["usePositiveSign"] = true, }, + ["916833363"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_916833363", + ["text"] = "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", + ["type"] = "explicit", + }, + }, ["918325986"] = { ["AnyJewel"] = { ["max"] = 4, @@ -21424,6 +25477,10 @@ return { ["max"] = -5, ["min"] = -10, }, + ["Boots"] = { + ["max"] = 25, + ["min"] = -20, + }, ["invertOnNegative"] = true, ["specialCaseData"] = { }, @@ -21434,163 +25491,1132 @@ return { }, }, ["933355817"] = { + ["Belt"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_933355817", + ["text"] = "#% to gain Archon of Undeath when you create an Offering", + ["type"] = "explicit", + }, + }, + ["942519401"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["944643028"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + }, + ["945774314"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["type"] = "explicit", + }, + }, + ["953593695"] = { + ["Ring"] = { + ["max"] = 45, + ["min"] = 35, + }, + ["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", + }, + }, + ["970213192"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["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, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["type"] = "explicit", + }, + }, + ["983749596"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["Body Armour"] = { + ["max"] = 20, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["986397080"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["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", + }, + }, + ["999511066"] = { + ["Belt"] = { + ["max"] = 49, + ["min"] = 35, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_999511066", + ["text"] = "#% increased Minion Duration", + ["type"] = "explicit", + }, + }, + }, + ["HeartOfTheWell"] = { + ["1004011302"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["1011760251"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1015576579"] = { + ["AnyJewel"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1015576579", + ["text"] = "#% increased Armour from Equipped Body Armour", + ["type"] = "explicit", + }, + }, + ["1195319608"] = { + ["AnyJewel"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["type"] = "explicit", + }, + }, + ["1238227257"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + }, + ["1327522346"] = { + ["AnyJewel"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1327522346", + ["text"] = "#% increased Mana Regeneration Rate while moving", + ["type"] = "explicit", + }, + }, + ["1374654984"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["type"] = "explicit", + }, + }, + ["1423639565"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1444556985"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["1604736568"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["type"] = "explicit", + }, + }, + ["1772247089"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", + ["type"] = "explicit", + }, + }, + ["1781372024"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1781372024", + ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", + ["type"] = "explicit", + }, + }, + ["1793740180"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1793740180", + ["text"] = "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", + ["type"] = "explicit", + }, + }, + ["1836676211"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["1949851472"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1949851472", + ["text"] = "#% chance when a Charm is used to use another Charm without consuming Charges", + ["type"] = "explicit", + }, + }, + ["1978899297"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["2023107756"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "explicit", + }, + }, + ["2074866941"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "explicit", + }, + }, + ["2174054121"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + }, + ["2250533757"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["2321178454"] = { + ["AnyJewel"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "explicit", + }, + }, + ["2363593824"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", + ["type"] = "explicit", + }, + }, + ["239367161"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "explicit", + }, + }, + ["2466011626"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2466011626", + ["text"] = "#% chance for Lightning Damage with Hits to be Lucky", + ["type"] = "explicit", + }, + }, + ["2479683456"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of maximum Life per second", + ["type"] = "explicit", + }, + }, + ["2480498143"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + }, + ["2505884597"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, + ["2639966148"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2639966148", + ["text"] = "Minions Revive #% faster", + ["type"] = "explicit", + }, + }, + ["2705185939"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2705185939", + ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["2709367754"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + }, + ["2715190555"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2715190555", + ["text"] = "#% to Thorns Critical Hit Chance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["274716455"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + }, + ["2891184298"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["3015669065"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, + ["3091578504"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["3119612865"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, + ["314741699"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", + ["type"] = "explicit", + }, + }, + ["3161573445"] = { + ["AnyJewel"] = { + ["max"] = 1.5, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3274422940"] = { + ["AnyJewel"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3274422940", + ["text"] = "#% increased Ice Crystal Life", + ["type"] = "explicit", + }, + }, + ["3278136794"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + }, + ["3292710273"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", + }, + }, + ["3377888098"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["3398301358"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["3398787959"] = { + ["AnyJewel"] = { + ["max"] = 13, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["3480095574"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3480095574", + ["text"] = "Charms applied to you have #% increased Effect", + ["type"] = "explicit", + }, + }, + ["3509362078"] = { + ["AnyJewel"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3509362078", + ["text"] = "#% increased Evasion Rating from Equipped Body Armour", + ["type"] = "explicit", + }, + }, + ["3544800472"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + }, + ["3556824919"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["3561837752"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3561837752", + ["text"] = "#% of Leech is Instant", + ["type"] = "explicit", + }, + }, + ["3563080185"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3563080185", + ["text"] = "#% increased Culling Strike Threshold", + ["type"] = "explicit", + }, + }, + ["3676141501"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["3741323227"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", + }, + }, + ["4095671657"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["4101445926"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", + ["type"] = "explicit", + }, + }, + ["4121454694"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4121454694", + ["text"] = "Recover #% of maximum Mana when a Charm is used", + ["type"] = "explicit", + }, + }, + ["416040624"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["44972811"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "explicit", + }, + }, + ["458438597"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + }, + ["491450213"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, + ["538241406"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_933355817", - ["text"] = "#% to gain Archon of Undeath when you create an Offering", + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, }, - ["942519401"] = { + ["587431675"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 8, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_942519401", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["944643028"] = { + ["599320227"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_944643028", - ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["id"] = "explicit.stat_599320227", + ["text"] = "#% chance for Trigger skills to refund half of Energy Spent", ["type"] = "explicit", }, }, - ["945774314"] = { + ["680068163"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_945774314", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", ["type"] = "explicit", }, }, - ["953593695"] = { + ["681332047"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_953593695", - ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", }, }, - ["959641748"] = { - ["ManaFlask"] = { - ["max"] = 15, + ["693180608"] = { + ["AnyJewel"] = { + ["max"] = 25, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_959641748", - ["text"] = "Removes #% of Mana Recovered from Life when used", + ["id"] = "explicit.stat_693180608", + ["text"] = "#% increased Damage while your Companion is in your Presence", ["type"] = "explicit", }, }, - ["971590056"] = { + ["737908626"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_971590056", - ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["980177976"] = { + ["789117908"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 8, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_980177976", - ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "explicit", }, }, - ["983749596"] = { - ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["Body Armour"] = { + ["795138349"] = { + ["AnyJewel"] = { ["max"] = 10, - ["min"] = 8, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", ["type"] = "explicit", }, }, - ["986397080"] = { - ["Chest"] = { - ["max"] = 60, - ["min"] = 36, + ["924253255"] = { + ["AnyJewel"] = { + ["max"] = -5, + ["min"] = -10, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["id"] = "explicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "explicit", }, }, - ["99927264"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, + ["943702197"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_99927264", - ["text"] = "#% reduced Shock duration on you", + ["id"] = "explicit.stat_943702197", + ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", ["type"] = "explicit", }, }, - ["999511066"] = { + ["970213192"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_999511066", - ["text"] = "#% increased Minion Duration", + ["id"] = "explicit.stat_970213192", + ["text"] = "#% increased Skill Speed", ["type"] = "explicit", }, }, @@ -24516,6 +29542,19 @@ return { ["type"] = "augment", }, }, + ["1683578560"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1683578560", + ["text"] = "Unwavering Stance", + ["type"] = "augment", + }, + }, ["1755296234"] = { ["1HMace"] = { ["max"] = 1, @@ -25410,6 +30449,41 @@ return { ["type"] = "augment", }, }, + ["227523295"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_227523295", + ["text"] = "# to Maximum Power Charges", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["2293111154"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2293111154", + ["text"] = "Increases and Reductions to Minion Attack Speed also affect you", + ["type"] = "augment", + }, + }, ["2301852600"] = { ["Boots"] = { ["max"] = 10, @@ -25626,6 +30700,19 @@ return { ["type"] = "augment", }, }, + ["2441825294"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2441825294", + ["text"] = "#% increased Runic Ward Regeneration Rate while Sprinting", + ["type"] = "augment", + }, + }, ["2444976134"] = { ["Chest"] = { ["max"] = 50, @@ -26320,6 +31407,19 @@ return { }, ["usePositiveSign"] = true, }, + ["2905515354"] = { + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2905515354", + ["text"] = "You take #% of damage from Blocked Hits", + ["type"] = "augment", + }, + }, ["2910761524"] = { ["1HWeapon"] = { ["max"] = 25, @@ -26596,6 +31696,19 @@ return { ["type"] = "augment", }, }, + ["2957287092"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2957287092", + ["text"] = "Chance to Block Damage is Lucky", + ["type"] = "augment", + }, + }, ["2968503605"] = { ["1HMace"] = { ["max"] = 30, @@ -27406,6 +32519,19 @@ return { ["type"] = "augment", }, }, + ["3393547195"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3393547195", + ["text"] = "#% increased Movement Speed when on Full Life", + ["type"] = "augment", + }, + }, ["3398301358"] = { ["Chest"] = { ["max"] = 15, @@ -27497,6 +32623,19 @@ return { ["type"] = "augment", }, }, + ["3430033313"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3430033313", + ["text"] = "Off-hand Hits inflict Runefather's Challenge", + ["type"] = "augment", + }, + }, ["3441651621"] = { ["Chest"] = { ["max"] = -10, @@ -28611,6 +33750,24 @@ return { }, ["usePositiveSign"] = true, }, + ["412462523"] = { + ["2HWeapon"] = { + ["max"] = -20, + ["min"] = -20, + }, + ["Bow"] = { + ["max"] = -20, + ["min"] = -20, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_412462523", + ["text"] = "#% more Attack Damage", + ["type"] = "augment", + }, + }, ["416040624"] = { ["1HWeapon"] = { ["max"] = 16, @@ -29932,6 +35089,19 @@ return { ["type"] = "augment", }, }, + ["88817332"] = { + ["Chest"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_88817332", + ["text"] = "#% increased Evasion Rating when on Full Life", + ["type"] = "augment", + }, + }, ["889552744"] = { ["Boots"] = { ["max"] = 10, @@ -30149,5 +35319,18 @@ return { ["type"] = "augment", }, }, + ["98977150"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "augment", + }, + }, }, } \ No newline at end of file diff --git a/src/Data/TradeSiteStats.lua b/src/Data/TradeSiteStats.lua index 9945aa9c1..ddb713839 100644 --- a/src/Data/TradeSiteStats.lua +++ b/src/Data/TradeSiteStats.lua @@ -3,184 +3,184 @@ -- https://www.pathofexile.com/api/trade2/data/stats -- spell-checker: disable return { - [1] = { + { ["entries"] = { - [1] = { + { ["id"] = "pseudo.pseudo_number_of_crafted_mods", ["text"] = "# Crafted Modifiers", ["type"] = "pseudo", }, - [2] = { + { ["id"] = "pseudo.pseudo_number_of_desecrated_mods", ["text"] = "# Desecrated Modifiers", ["type"] = "pseudo", }, - [3] = { + { ["id"] = "pseudo.pseudo_number_of_desecrated_prefix_mods", ["text"] = "# Desecrated Prefix Modifiers", ["type"] = "pseudo", }, - [4] = { + { ["id"] = "pseudo.pseudo_number_of_desecrated_suffix_mods", ["text"] = "# Desecrated Suffix Modifiers", ["type"] = "pseudo", }, - [5] = { + { ["id"] = "pseudo.pseudo_number_of_empty_affix_mods", ["text"] = "# Empty Modifiers", ["type"] = "pseudo", }, - [6] = { + { ["id"] = "pseudo.pseudo_number_of_empty_prefix_mods", ["text"] = "# Empty Prefix Modifiers", ["type"] = "pseudo", }, - [7] = { + { ["id"] = "pseudo.pseudo_number_of_empty_suffix_mods", ["text"] = "# Empty Suffix Modifiers", ["type"] = "pseudo", }, - [8] = { + { ["id"] = "pseudo.pseudo_number_of_enchant_mods", ["text"] = "# Enchant Modifiers", ["type"] = "pseudo", }, - [9] = { + { ["id"] = "pseudo.pseudo_number_of_fractured_mods", ["text"] = "# Fractured Modifiers", ["type"] = "pseudo", }, - [10] = { + { ["id"] = "pseudo.pseudo_number_of_implicit_mods", ["text"] = "# Implicit Modifiers", ["type"] = "pseudo", }, - [11] = { + { ["id"] = "pseudo.pseudo_number_of_affix_mods", ["text"] = "# Modifiers", ["type"] = "pseudo", }, - [12] = { + { ["id"] = "pseudo.pseudo_number_of_prefix_mods", ["text"] = "# Prefix Modifiers", ["type"] = "pseudo", }, - [13] = { + { ["id"] = "pseudo.pseudo_number_of_suffix_mods", ["text"] = "# Suffix Modifiers", ["type"] = "pseudo", }, - [14] = { + { ["id"] = "pseudo.pseudo_number_of_unrevealed_mods", ["text"] = "# Unrevealed Modifiers", ["type"] = "pseudo", }, - [15] = { + { ["id"] = "pseudo.pseudo_number_of_unrevealed_prefix_mods", ["text"] = "# Unrevealed Prefix Modifiers", ["type"] = "pseudo", }, - [16] = { + { ["id"] = "pseudo.pseudo_number_of_unrevealed_suffix_mods", ["text"] = "# Unrevealed Suffix Modifiers", ["type"] = "pseudo", }, - [17] = { + { ["id"] = "pseudo.pseudo_count_elemental_resistances", ["text"] = "# total Elemental Resistances", ["type"] = "pseudo", }, - [18] = { + { ["id"] = "pseudo.pseudo_count_resistances", ["text"] = "# total Resistances", ["type"] = "pseudo", }, - [19] = { + { ["id"] = "pseudo.pseudo_number_of_uses_remaining", ["text"] = "# uses remaining (Tablets)", ["type"] = "pseudo", }, - [20] = { + { ["id"] = "pseudo.pseudo_increased_movement_speed", ["text"] = "#% increased Movement Speed", ["type"] = "pseudo", }, - [21] = { + { ["id"] = "pseudo.pseudo_increased_energy_shield", ["text"] = "#% total increased maximum Energy Shield", ["type"] = "pseudo", }, - [22] = { + { ["id"] = "pseudo.pseudo_total_energy_shield", ["text"] = "+# total maximum Energy Shield", ["type"] = "pseudo", }, - [23] = { + { ["id"] = "pseudo.pseudo_total_life", ["text"] = "+# total maximum Life", ["type"] = "pseudo", }, - [24] = { + { ["id"] = "pseudo.pseudo_total_mana", ["text"] = "+# total maximum Mana", ["type"] = "pseudo", }, - [25] = { + { ["id"] = "pseudo.pseudo_total_attributes", ["text"] = "+# total to Attributes", ["type"] = "pseudo", }, - [26] = { + { ["id"] = "pseudo.pseudo_total_dexterity", ["text"] = "+# total to Dexterity", ["type"] = "pseudo", }, - [27] = { + { ["id"] = "pseudo.pseudo_total_intelligence", ["text"] = "+# total to Intelligence", ["type"] = "pseudo", }, - [28] = { + { ["id"] = "pseudo.pseudo_total_strength", ["text"] = "+# total to Strength", ["type"] = "pseudo", }, - [29] = { + { ["id"] = "pseudo.pseudo_total_all_attributes", ["text"] = "+# total to all Attributes", ["type"] = "pseudo", }, - [30] = { + { ["id"] = "pseudo.pseudo_total_elemental_resistance", ["text"] = "+#% total Elemental Resistance", ["type"] = "pseudo", }, - [31] = { + { ["id"] = "pseudo.pseudo_total_resistance", ["text"] = "+#% total Resistance", ["type"] = "pseudo", }, - [32] = { + { ["id"] = "pseudo.pseudo_total_chaos_resistance", ["text"] = "+#% total to Chaos Resistance", ["type"] = "pseudo", }, - [33] = { + { ["id"] = "pseudo.pseudo_total_cold_resistance", ["text"] = "+#% total to Cold Resistance", ["type"] = "pseudo", }, - [34] = { + { ["id"] = "pseudo.pseudo_total_fire_resistance", ["text"] = "+#% total to Fire Resistance", ["type"] = "pseudo", }, - [35] = { + { ["id"] = "pseudo.pseudo_total_lightning_resistance", ["text"] = "+#% total to Lightning Resistance", ["type"] = "pseudo", }, - [36] = { + { ["id"] = "pseudo.pseudo_total_all_elemental_resistances", ["text"] = "+#% total to all Elemental Resistances", ["type"] = "pseudo", @@ -189,15234 +189,15314 @@ return { ["id"] = "pseudo", ["label"] = "Pseudo", }, - [2] = { + { ["entries"] = { - [1] = { + { ["id"] = "explicit.stat_2582079000", ["text"] = "# Charm Slot", ["type"] = "explicit", }, - [2] = { + { ["id"] = "explicit.stat_554899692", ["text"] = "# Charm Slot (Global)", ["type"] = "explicit", }, - [3] = { + { ["id"] = "explicit.stat_1133453872", ["text"] = "# Dexterity Requirement", ["type"] = "explicit", }, - [4] = { + { ["id"] = "explicit.stat_2153364323", ["text"] = "# Intelligence Requirement", ["type"] = "explicit", }, - [5] = { + { ["id"] = "explicit.stat_3325883026", ["text"] = "# Life Regeneration per second", ["type"] = "explicit", }, - [6] = { + { ["id"] = "explicit.stat_332337290", ["text"] = "# Life Regeneration per second per Socket filled", ["type"] = "explicit", }, - [7] = { + { ["id"] = "explicit.stat_2122183138", ["text"] = "# Mana gained when you Block", ["type"] = "explicit", }, - [8] = { + { ["id"] = "explicit.stat_3441651621", ["text"] = "# Physical Damage taken from Attack Hits", ["type"] = "explicit", }, - [9] = { + { ["id"] = "explicit.stat_321765853", ["text"] = "# Physical Damage taken from Hits", ["type"] = "explicit", }, - [10] = { + { ["id"] = "explicit.stat_4176970656", ["text"] = "# Physical Damage taken on Minion Death", ["type"] = "explicit", }, - [11] = { + { ["id"] = "explicit.stat_3612407781", ["text"] = "# Physical damage taken from Projectile Attacks", ["type"] = "explicit", }, - [12] = { + { ["id"] = "explicit.stat_3182714256", ["text"] = "# Prefix Modifier allowed", ["type"] = "explicit", }, - [13] = { + { ["id"] = "explicit.stat_2833226514", ["text"] = "# Strength Requirement", ["type"] = "explicit", }, - [14] = { + { ["id"] = "explicit.stat_718638445", ["text"] = "# Suffix Modifier allowed", ["type"] = "explicit", }, - [15] = { + { ["id"] = "explicit.stat_243380454", ["text"] = "# additional Rare Monsters are spawned from Abysses", ["type"] = "explicit", }, - [16] = { + { ["id"] = "explicit.stat_243380454", ["text"] = "# additional Rare Monsters are spawned from Abysses in Map", ["type"] = "explicit", }, - [17] = { + { ["id"] = "explicit.stat_3294218801", ["text"] = "# extra pack of Monsters around Vaal Beacons in Map", ["type"] = "explicit", }, - [18] = { + { ["id"] = "explicit.stat_258119672", ["text"] = "# metre to Dodge Roll distance", ["type"] = "explicit", }, - [19] = { + { ["id"] = "explicit.stat_3350232544", ["text"] = "# metre to Dodge Roll distance if you haven't Dodge Rolled Recently", ["type"] = "explicit", }, - [20] = { + { ["id"] = "explicit.stat_57896763", ["text"] = "# metre to Dodge Roll distance if you've Dodge Rolled Recently", ["type"] = "explicit", }, - [21] = { + { ["id"] = "explicit.stat_3273962791", ["text"] = "# metres to Melee Strike Range while Unarmed", ["type"] = "explicit", }, - [22] = { + { ["id"] = "explicit.stat_4186798932", ["text"] = "# to # Added Attack Fire Damage per 25 Strength", ["type"] = "explicit", }, - [23] = { + { ["id"] = "explicit.stat_1515531208", ["text"] = "# to # Cold Thorns damage", ["type"] = "explicit", }, - [24] = { + { ["id"] = "explicit.stat_1993950627", ["text"] = "# to # Fire Thorns damage", ["type"] = "explicit", }, - [25] = { + { ["id"] = "explicit.stat_287294012", ["text"] = "# to # Fire Thorns damage per 100 maximum Life", ["type"] = "explicit", }, - [26] = { + { ["id"] = "explicit.stat_2881298780", ["text"] = "# to # Physical Thorns damage", ["type"] = "explicit", }, - [27] = { + { ["id"] = "explicit.stat_3926910174", ["text"] = "# to # added Physical Thorns damage per Runic Plate", ["type"] = "explicit", }, - [28] = { + { ["id"] = "explicit.stat_803737631", ["text"] = "# to Accuracy Rating", ["type"] = "explicit", }, - [29] = { + { ["id"] = "explicit.stat_691932474", ["text"] = "# to Accuracy Rating (Local)", ["type"] = "explicit", }, - [30] = { + { ["id"] = "explicit.stat_1488650448", ["text"] = "# to Ailment Threshold", ["type"] = "explicit", }, - [31] = { + { ["id"] = "explicit.stat_809229260", ["text"] = "# to Armour", ["type"] = "explicit", }, - [32] = { + { ["id"] = "explicit.stat_3484657501", ["text"] = "# to Armour (Local)", ["type"] = "explicit", }, - [33] = { + { ["id"] = "explicit.stat_1207006772", ["text"] = "# to Deflection Rating per 50 missing Energy Shield", ["type"] = "explicit", }, - [34] = { + { ["id"] = "explicit.stat_3261801346", ["text"] = "# to Dexterity", ["type"] = "explicit", }, - [35] = { + { ["id"] = "explicit.stat_2300185227", ["text"] = "# to Dexterity and Intelligence", ["type"] = "explicit", }, - [36] = { + { ["id"] = "explicit.stat_2144192055", ["text"] = "# to Evasion Rating", ["type"] = "explicit", }, - [37] = { + { ["id"] = "explicit.stat_53045048", ["text"] = "# to Evasion Rating (Local)", ["type"] = "explicit", }, - [38] = { + { ["id"] = "explicit.stat_3470876581", ["text"] = "# to Evasion Rating while on Low Life", ["type"] = "explicit", }, - [39] = { + { ["id"] = "explicit.stat_328541901", ["text"] = "# to Intelligence", ["type"] = "explicit", }, - [40] = { + { ["id"] = "explicit.stat_2157870819", ["text"] = "# to Level of Despair Skills", ["type"] = "explicit", }, - [41] = { + { ["id"] = "explicit.stat_3709513762", ["text"] = "# to Level of Elemental Weakness Skills", ["type"] = "explicit", }, - [42] = { + { ["id"] = "explicit.stat_3948285912", ["text"] = "# to Level of Enfeeble Skills", ["type"] = "explicit", }, - [43] = { + { ["id"] = "explicit.stat_1042153418", ["text"] = "# to Level of Temporal Chains Skills", ["type"] = "explicit", }, - [44] = { + { ["id"] = "explicit.stat_3507701584", ["text"] = "# to Level of Vulnerability Skills", ["type"] = "explicit", }, - [45] = { + { ["id"] = "explicit.stat_3035140377", ["text"] = "# to Level of all Attack Skills", ["type"] = "explicit", }, - [46] = { + { ["id"] = "explicit.stat_67169579", ["text"] = "# to Level of all Chaos Skills", ["type"] = "explicit", }, - [47] = { + { ["id"] = "explicit.stat_4226189338", ["text"] = "# to Level of all Chaos Spell Skills", ["type"] = "explicit", }, - [48] = { + { ["id"] = "explicit.stat_1078455967", ["text"] = "# to Level of all Cold Skills", ["type"] = "explicit", }, - [49] = { + { ["id"] = "explicit.stat_2254480358", ["text"] = "# to Level of all Cold Spell Skills", ["type"] = "explicit", }, - [50] = { + { ["id"] = "explicit.stat_2061237517", ["text"] = "# to Level of all Corrupted Spell Skill Gems", ["type"] = "explicit", }, - [51] = { + { ["id"] = "explicit.stat_805298720", ["text"] = "# to Level of all Curse Skills", ["type"] = "explicit", }, - [52] = { + { ["id"] = "explicit.stat_2901213448", ["text"] = "# to Level of all Elemental Skills", ["type"] = "explicit", }, - [53] = { + { ["id"] = "explicit.stat_599749213", ["text"] = "# to Level of all Fire Skills", ["type"] = "explicit", }, - [54] = { + { ["id"] = "explicit.stat_591105508", ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "explicit", }, - [55] = { + { ["id"] = "explicit.stat_1147690586", ["text"] = "# to Level of all Lightning Skills", ["type"] = "explicit", }, - [56] = { + { ["id"] = "explicit.stat_1545858329", ["text"] = "# to Level of all Lightning Spell Skills", ["type"] = "explicit", }, - [57] = { + { ["id"] = "explicit.stat_1992191903", ["text"] = "# to Level of all Mark Skills", ["type"] = "explicit", }, - [58] = { + { ["id"] = "explicit.stat_9187492", ["text"] = "# to Level of all Melee Skills", ["type"] = "explicit", }, - [59] = { + { ["id"] = "explicit.stat_2162097452", ["text"] = "# to Level of all Minion Skills", ["type"] = "explicit", }, - [60] = { + { ["id"] = "explicit.stat_1600707273", ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "explicit", }, - [61] = { + { ["id"] = "explicit.stat_1202301673", ["text"] = "# to Level of all Projectile Skills", ["type"] = "explicit", }, - [62] = { + { ["id"] = "explicit.stat_4283407333", ["text"] = "# to Level of all Skills", ["type"] = "explicit", }, - [63] = { + { ["id"] = "explicit.stat_124131830", ["text"] = "# to Level of all Spell Skills", ["type"] = "explicit", }, - [64] = { + { ["id"] = "explicit.stat_1713927892", ["text"] = "# to Limit for Elemental Skills", ["type"] = "explicit", }, - [65] = { + { ["id"] = "explicit.stat_1515657623", ["text"] = "# to Maximum Endurance Charges", ["type"] = "explicit", }, - [66] = { + { ["id"] = "explicit.stat_4078695", ["text"] = "# to Maximum Frenzy Charges", ["type"] = "explicit", }, - [67] = { + { ["id"] = "explicit.stat_227523295", ["text"] = "# to Maximum Power Charges", ["type"] = "explicit", }, - [68] = { + { ["id"] = "explicit.stat_1181501418", ["text"] = "# to Maximum Rage", ["type"] = "explicit", }, - [69] = { + { ["id"] = "explicit.stat_3981240776", ["text"] = "# to Spirit", ["type"] = "explicit", }, - [70] = { + { ["id"] = "explicit.stat_2704225257", ["text"] = "# to Spirit", ["type"] = "explicit", }, - [71] = { + { ["id"] = "explicit.stat_2694614739", ["text"] = "# to Spirit while you have at least 200 Dexterity", ["type"] = "explicit", }, - [72] = { + { ["id"] = "explicit.stat_1282318918", ["text"] = "# to Spirit while you have at least 200 Intelligence", ["type"] = "explicit", }, - [73] = { + { ["id"] = "explicit.stat_3044685077", ["text"] = "# to Spirit while you have at least 200 Strength", ["type"] = "explicit", }, - [74] = { + { ["id"] = "explicit.stat_4080418644", ["text"] = "# to Strength", ["type"] = "explicit", }, - [75] = { + { ["id"] = "explicit.stat_538848803", ["text"] = "# to Strength and Dexterity", ["type"] = "explicit", }, - [76] = { + { ["id"] = "explicit.stat_1535626285", ["text"] = "# to Strength and Intelligence", ["type"] = "explicit", }, - [77] = { + { ["id"] = "explicit.stat_915769802", ["text"] = "# to Stun Threshold", ["type"] = "explicit", }, - [78] = { + { ["id"] = "explicit.stat_3679769182", ["text"] = "# to Stun Threshold per Socket filled", ["type"] = "explicit", }, - [79] = { + { ["id"] = "explicit.stat_350598685", ["text"] = "# to Weapon Range", ["type"] = "explicit", }, - [80] = { - ["id"] = "explicit.stat_1379411836", + { + ["id"] = "explicit.stat_2897413282", ["text"] = "# to all Attributes", ["type"] = "explicit", }, - [81] = { - ["id"] = "explicit.stat_2897413282", + { + ["id"] = "explicit.stat_1379411836", ["text"] = "# to all Attributes", ["type"] = "explicit", }, - [82] = { + { ["id"] = "explicit.stat_2333085568", ["text"] = "# to all Attributes per Level", ["type"] = "explicit", }, - [83] = { + { ["id"] = "explicit.stat_3474271079", ["text"] = "# to all Attributes per Socket filled", ["type"] = "explicit", }, - [84] = { + { ["id"] = "explicit.stat_3489782002", ["text"] = "# to maximum Energy Shield", ["type"] = "explicit", }, - [85] = { + { ["id"] = "explicit.stat_4052037485", ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "explicit", }, - [86] = { + { ["id"] = "explicit.stat_3299347043", ["text"] = "# to maximum Life", ["type"] = "explicit", }, - [87] = { + { ["id"] = "explicit.stat_150391334", ["text"] = "# to maximum Life per Socket filled", ["type"] = "explicit", }, - [88] = { + { ["id"] = "explicit.stat_1050105434", ["text"] = "# to maximum Mana", ["type"] = "explicit", }, - [89] = { + { ["id"] = "explicit.stat_1036267537", ["text"] = "# to maximum Mana per Socket filled", ["type"] = "explicit", }, - [90] = { - ["id"] = "explicit.stat_774059442", + { + ["id"] = "explicit.stat_3336230913", ["text"] = "# to maximum Runic Ward", ["type"] = "explicit", }, - [91] = { - ["id"] = "explicit.stat_3336230913", + { + ["id"] = "explicit.stat_774059442", ["text"] = "# to maximum Runic Ward", ["type"] = "explicit", }, - [92] = { + { ["id"] = "explicit.stat_1896726125", ["text"] = "# to maximum Valour", ["type"] = "explicit", }, - [93] = { + { ["id"] = "explicit.stat_4097212302", ["text"] = "# to maximum number of Elemental Infusions", ["type"] = "explicit", }, - [94] = { + { ["id"] = "explicit.stat_1823942939", ["text"] = "# to maximum number of Summoned Ballista Totems", ["type"] = "explicit", }, - [95] = { + { ["id"] = "explicit.stat_429867172", ["text"] = "# to maximum number of Summoned Totems", ["type"] = "explicit", }, - [96] = { + { ["id"] = "explicit.stat_828533480", ["text"] = "#% Chance to gain a Charge when you kill an enemy", ["type"] = "explicit", }, - [97] = { + { ["id"] = "explicit.stat_2221570601", ["text"] = "#% Global chance to Blind Enemies on Hit", ["type"] = "explicit", }, - [98] = { + { ["id"] = "explicit.stat_2840930496", ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", ["type"] = "explicit", }, - [99] = { + { ["id"] = "explicit.stat_2463230181", ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "explicit", }, - [100] = { + { ["id"] = "explicit.stat_1347539079", ["text"] = "#% Surpassing chance to fire an additional Projectile", ["type"] = "explicit", }, - [101] = { + { ["id"] = "explicit.stat_3771516363", ["text"] = "#% additional Physical Damage Reduction", ["type"] = "explicit", }, - [102] = { + { ["id"] = "explicit.stat_501873429", ["text"] = "#% chance for Charms you use to not consume Charges", ["type"] = "explicit", }, - [103] = { + { ["id"] = "explicit.stat_1618482990", ["text"] = "#% chance for Energy Shield Recharge to start when you Kill an Enemy", ["type"] = "explicit", }, - [104] = { + { ["id"] = "explicit.stat_311641062", ["text"] = "#% chance for Flasks you use to not consume Charges", ["type"] = "explicit", }, - [105] = { + { ["id"] = "explicit.stat_2466011626", ["text"] = "#% chance for Lightning Damage with Hits to be Lucky", ["type"] = "explicit", }, - [106] = { + { ["id"] = "explicit.stat_3950000557", ["text"] = "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", ["type"] = "explicit", }, - [107] = { + { ["id"] = "explicit.stat_3422093970", ["text"] = "#% chance for Remnants you pick up to count as picking up an additional Remnant", ["type"] = "explicit", }, - [108] = { + { ["id"] = "explicit.stat_2749595652", ["text"] = "#% chance for Skills to retain 40% of Glory on use", ["type"] = "explicit", }, - [109] = { + { ["id"] = "explicit.stat_1157523820", ["text"] = "#% chance for Slam Skills to cause an additional Aftershock", ["type"] = "explicit", }, - [110] = { + { ["id"] = "explicit.stat_2045949233", ["text"] = "#% chance for Slam Skills you use yourself to cause an additional Aftershock", ["type"] = "explicit", }, - [111] = { + { ["id"] = "explicit.stat_1133346493", ["text"] = "#% chance for Spell Damage with Critical Hits to be Lucky", ["type"] = "explicit", }, - [112] = { + { ["id"] = "explicit.stat_2910761524", ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", ["type"] = "explicit", }, - [113] = { + { ["id"] = "explicit.stat_4224832423", ["text"] = "#% chance for Spell Skills to fire 8 additional Projectiles in a circle", ["type"] = "explicit", }, - [114] = { + { ["id"] = "explicit.stat_599320227", ["text"] = "#% chance for Trigger skills to refund half of Energy Spent", ["type"] = "explicit", }, - [115] = { + { ["id"] = "explicit.stat_1359775981", ["text"] = "#% chance for an extra packs of Monsters around Vaal Beacons in Map", ["type"] = "explicit", }, - [116] = { + { ["id"] = "explicit.stat_2710292678", ["text"] = "#% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", ["type"] = "explicit", }, - [117] = { + { ["id"] = "explicit.stat_1009412152", ["text"] = "#% chance to Aggravate Bleeding on Hit", ["type"] = "explicit", }, - [118] = { + { ["id"] = "explicit.stat_2438634449", ["text"] = "#% chance to Aggravate Bleeding on targets you Critically Hit with Attacks", ["type"] = "explicit", }, - [119] = { + { ["id"] = "explicit.stat_2705185939", ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", ["type"] = "explicit", }, - [120] = { + { ["id"] = "explicit.stat_1563503803", ["text"] = "#% chance to Avoid Chaos Damage from Hits", ["type"] = "explicit", }, - [121] = { + { ["id"] = "explicit.stat_3743375737", ["text"] = "#% chance to Avoid Cold Damage from Hits", ["type"] = "explicit", }, - [122] = { + { ["id"] = "explicit.stat_1689729380", ["text"] = "#% chance to Avoid Death from Hits", ["type"] = "explicit", }, - [123] = { + { ["id"] = "explicit.stat_42242677", ["text"] = "#% chance to Avoid Fire Damage from Hits", ["type"] = "explicit", }, - [124] = { + { ["id"] = "explicit.stat_2889664727", ["text"] = "#% chance to Avoid Lightning Damage from Hits", ["type"] = "explicit", }, - [125] = { + { ["id"] = "explicit.stat_2415497478", ["text"] = "#% chance to Avoid Physical Damage from Hits", ["type"] = "explicit", }, - [126] = { + { ["id"] = "explicit.stat_318953428", ["text"] = "#% chance to Blind Enemies on Hit with Attacks", ["type"] = "explicit", }, - [127] = { + { ["id"] = "explicit.stat_1028592286", ["text"] = "#% chance to Chain an additional time", ["type"] = "explicit", }, - [128] = { + { ["id"] = "explicit.stat_3830953767", ["text"] = "#% chance to Curse Enemies with Enfeeble on Block", ["type"] = "explicit", }, - [129] = { + { ["id"] = "explicit.stat_446027070", ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Hit", ["type"] = "explicit", }, - [130] = { + { ["id"] = "explicit.stat_78985352", ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", ["type"] = "explicit", }, - [131] = { + { ["id"] = "explicit.stat_2321178454", ["text"] = "#% chance to Pierce an Enemy", ["type"] = "explicit", }, - [132] = { + { ["id"] = "explicit.stat_795138349", ["text"] = "#% chance to Poison on Hit", ["type"] = "explicit", }, - [133] = { + { ["id"] = "explicit.stat_3954735777", ["text"] = "#% chance to Poison on Hit with Attacks", ["type"] = "explicit", }, - [134] = { + { ["id"] = "explicit.stat_1493211587", ["text"] = "#% chance to Poison on Hit with Spell Damage", ["type"] = "explicit", }, - [135] = { + { ["id"] = "explicit.stat_3885634897", ["text"] = "#% chance to Poison on Hit with this weapon", ["type"] = "explicit", }, - [136] = { + { ["id"] = "explicit.stat_3591307827", ["text"] = "#% chance to add a Vaal Beacon Unique Monster to the Map", ["type"] = "explicit", }, - [137] = { + { ["id"] = "explicit.stat_3452269808", ["text"] = "#% chance to avoid Projectiles", ["type"] = "explicit", }, - [138] = { + { ["id"] = "explicit.stat_4250009622", ["text"] = "#% chance to be Poisoned", ["type"] = "explicit", }, - [139] = { + { ["id"] = "explicit.stat_3423694372", ["text"] = "#% chance to be inflicted with Bleeding when Hit", ["type"] = "explicit", }, - [140] = { + { ["id"] = "explicit.stat_4258524206", ["text"] = "#% chance to build an additional Combo on Hit", ["type"] = "explicit", }, - [141] = { + { ["id"] = "explicit.stat_1519615863", ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "explicit", }, - [142] = { + { ["id"] = "explicit.stat_2880019685", ["text"] = "#% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", ["type"] = "explicit", }, - [143] = { + { ["id"] = "explicit.stat_3518449420", ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", ["type"] = "explicit", }, - [144] = { + { ["id"] = "explicit.stat_1881230714", ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", ["type"] = "explicit", }, - [145] = { + { ["id"] = "explicit.stat_3749502527", ["text"] = "#% chance to gain Volatility on Kill", ["type"] = "explicit", }, - [146] = { + { ["id"] = "explicit.stat_3814876985", ["text"] = "#% chance to gain a Power Charge on Critical Hit", ["type"] = "explicit", }, - [147] = { + { ["id"] = "explicit.stat_1453197917", ["text"] = "#% chance to gain a Power Charge on Hit", ["type"] = "explicit", }, - [148] = { + { ["id"] = "explicit.stat_1940774881", ["text"] = "#% chance to gain an additional Crystal from Vaal Beacons in Map", ["type"] = "explicit", }, - [149] = { + { ["id"] = "explicit.stat_504210122", ["text"] = "#% chance to gain an additional random Charge when you gain a Charge", ["type"] = "explicit", }, - [150] = { + { ["id"] = "explicit.stat_2174054121", ["text"] = "#% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, - [151] = { + { ["id"] = "explicit.stat_3602667353", ["text"] = "#% chance to inflict Exposure on Hit", ["type"] = "explicit", }, - [152] = { + { ["id"] = "explicit.stat_3823990000", ["text"] = "#% chance to load a bolt into all Crossbow skills on Kill", ["type"] = "explicit", }, - [153] = { + { ["id"] = "explicit.stat_965913123", ["text"] = "#% chance to not destroy Corpses when Consuming Corpses", ["type"] = "explicit", }, - [154] = { + { ["id"] = "explicit.stat_1949851472", ["text"] = "#% chance when a Charm is used to use another Charm without consuming Charges", ["type"] = "explicit", }, - [155] = { + { ["id"] = "explicit.stat_3927679277", ["text"] = "#% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", ["type"] = "explicit", }, - [156] = { + { ["id"] = "explicit.stat_2760344900", ["text"] = "#% chance when you Reload a Crossbow to be immediate", ["type"] = "explicit", }, - [157] = { + { ["id"] = "explicit.stat_1555237944", ["text"] = "#% chance when you gain a Charge to gain an additional Charge", ["type"] = "explicit", }, - [158] = { + { ["id"] = "explicit.stat_3537994888", ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", ["type"] = "explicit", }, - [159] = { + { ["id"] = "explicit.stat_1104825894", ["text"] = "#% faster Curse Activation", ["type"] = "explicit", }, - [160] = { + { ["id"] = "explicit.stat_504054855", ["text"] = "#% faster Dodge Roll", ["type"] = "explicit", }, - [161] = { + { ["id"] = "explicit.stat_1782086450", ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "explicit", }, - [162] = { + { ["id"] = "explicit.stat_624954515", ["text"] = "#% increased Accuracy Rating", ["type"] = "explicit", }, - [163] = { + { ["id"] = "explicit.stat_4255854327", ["text"] = "#% increased Accuracy Rating against Enemies affected by Abyssal Wasting", ["type"] = "explicit", }, - [164] = { + { ["id"] = "explicit.stat_169946467", ["text"] = "#% increased Accuracy Rating with Bows", ["type"] = "explicit", }, - [165] = { + { ["id"] = "explicit.stat_700317374", ["text"] = "#% increased Amount Recovered", ["type"] = "explicit", }, - [166] = { + { ["id"] = "explicit.stat_2158617060", ["text"] = "#% increased Archon Buff duration", ["type"] = "explicit", }, - [167] = { + { ["id"] = "explicit.stat_280731498", ["text"] = "#% increased Area of Effect", ["type"] = "explicit", }, - [168] = { + { ["id"] = "explicit.stat_1840985759", ["text"] = "#% increased Area of Effect for Attacks", ["type"] = "explicit", }, - [169] = { + { ["id"] = "explicit.stat_434750362", ["text"] = "#% increased Area of Effect for Attacks per 10 Intelligence", ["type"] = "explicit", }, - [170] = { + { ["id"] = "explicit.stat_3481736410", ["text"] = "#% increased Area of Effect if you've Killed Recently", ["type"] = "explicit", }, - [171] = { + { ["id"] = "explicit.stat_153777645", ["text"] = "#% increased Area of Effect of Curses", ["type"] = "explicit", }, - [172] = { + { ["id"] = "explicit.stat_2866361420", ["text"] = "#% increased Armour", ["type"] = "explicit", }, - [173] = { + { ["id"] = "explicit.stat_1062208444", ["text"] = "#% increased Armour (Local)", ["type"] = "explicit", }, - [174] = { + { ["id"] = "explicit.stat_2637470878", ["text"] = "#% increased Armour Break Duration", ["type"] = "explicit", }, - [175] = { + { ["id"] = "explicit.stat_3321629045", ["text"] = "#% increased Armour and Energy Shield", ["type"] = "explicit", }, - [176] = { + { ["id"] = "explicit.stat_2451402625", ["text"] = "#% increased Armour and Evasion", ["type"] = "explicit", }, - [177] = { + { ["id"] = "explicit.stat_1015576579", ["text"] = "#% increased Armour from Equipped Body Armour", ["type"] = "explicit", }, - [178] = { + { ["id"] = "explicit.stat_3523867985", ["text"] = "#% increased Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [179] = { + { ["id"] = "explicit.stat_2523933828", ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "explicit", }, - [180] = { + { ["id"] = "explicit.stat_1207554355", ["text"] = "#% increased Arrow Speed", ["type"] = "explicit", }, - [181] = { + { ["id"] = "explicit.stat_2843214518", ["text"] = "#% increased Attack Damage", ["type"] = "explicit", }, - [182] = { + { ["id"] = "explicit.stat_2879725899", ["text"] = "#% increased Attack Damage while Surrounded", ["type"] = "explicit", }, - [183] = { + { ["id"] = "explicit.stat_2462683918", ["text"] = "#% increased Attack Damage while not on Low Mana", ["type"] = "explicit", }, - [184] = { + { ["id"] = "explicit.stat_4246007234", ["text"] = "#% increased Attack Damage while on Low Life", ["type"] = "explicit", }, - [185] = { + { ["id"] = "explicit.stat_681332047", ["text"] = "#% increased Attack Speed", ["type"] = "explicit", }, - [186] = { + { ["id"] = "explicit.stat_210067635", ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, - [187] = { + { ["id"] = "explicit.stat_889691035", ["text"] = "#% increased Attack Speed per 10 Dexterity", ["type"] = "explicit", }, - [188] = { + { ["id"] = "explicit.stat_720908147", ["text"] = "#% increased Attack Speed per 20 Dexterity", ["type"] = "explicit", }, - [189] = { + { ["id"] = "explicit.stat_324579579", ["text"] = "#% increased Attack Speed per 20 Spirit", ["type"] = "explicit", }, - [190] = { + { ["id"] = "explicit.stat_2241560081", ["text"] = "#% increased Attack Speed per 25 Dexterity", ["type"] = "explicit", }, - [191] = { + { ["id"] = "explicit.stat_314741699", ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", ["type"] = "explicit", }, - [192] = { + { ["id"] = "explicit.stat_325171970", ["text"] = "#% increased Attack Speed while missing Runic Ward", ["type"] = "explicit", }, - [193] = { + { ["id"] = "explicit.stat_4145314483", ["text"] = "#% increased Attack Speed while on Full Mana", ["type"] = "explicit", }, - [194] = { + { ["id"] = "explicit.stat_299996", ["text"] = "#% increased Attack Speed while your Companion is in your Presence", ["type"] = "explicit", }, - [195] = { + { ["id"] = "explicit.stat_3759735052", ["text"] = "#% increased Attack Speed with Bows", ["type"] = "explicit", }, - [196] = { + { ["id"] = "explicit.stat_1135928777", ["text"] = "#% increased Attack Speed with Crossbows", ["type"] = "explicit", }, - [197] = { + { ["id"] = "explicit.stat_3283482523", ["text"] = "#% increased Attack Speed with Quarterstaves", ["type"] = "explicit", }, - [198] = { + { ["id"] = "explicit.stat_1165163804", ["text"] = "#% increased Attack Speed with Spears", ["type"] = "explicit", }, - [199] = { + { ["id"] = "explicit.stat_2672805335", ["text"] = "#% increased Attack and Cast Speed", ["type"] = "explicit", }, - [200] = { + { ["id"] = "explicit.stat_3910614548", ["text"] = "#% increased Attack and Cast Speed if you've summoned a Totem Recently", ["type"] = "explicit", }, - [201] = { + { ["id"] = "explicit.stat_3639275092", ["text"] = "#% increased Attribute Requirements", ["type"] = "explicit", }, - [202] = { + { ["id"] = "explicit.stat_3143208761", ["text"] = "#% increased Attributes", ["type"] = "explicit", }, - [203] = { + { ["id"] = "explicit.stat_2513318031", ["text"] = "#% increased Attributes per Socket filled", ["type"] = "explicit", }, - [204] = { + { ["id"] = "explicit.stat_1459321413", ["text"] = "#% increased Bleeding Duration", ["type"] = "explicit", }, - [205] = { + { ["id"] = "explicit.stat_1585769763", ["text"] = "#% increased Blind Effect", ["type"] = "explicit", }, - [206] = { + { ["id"] = "explicit.stat_4147897060", ["text"] = "#% increased Block chance", ["type"] = "explicit", }, - [207] = { + { ["id"] = "explicit.stat_2481353198", ["text"] = "#% increased Block chance (Local)", ["type"] = "explicit", }, - [208] = { + { ["id"] = "explicit.stat_3583542124", ["text"] = "#% increased Block chance against Projectiles", ["type"] = "explicit", }, - [209] = { + { ["id"] = "explicit.stat_2531622767", ["text"] = "#% increased Block chance per 100 total Item Armour on Equipped Armour Items", ["type"] = "explicit", }, - [210] = { + { ["id"] = "explicit.stat_2891184298", ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, - [211] = { + { ["id"] = "explicit.stat_145581225", ["text"] = "#% increased Cast Speed during any Flask Effect", ["type"] = "explicit", }, - [212] = { + { ["id"] = "explicit.stat_1518586897", ["text"] = "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", ["type"] = "explicit", }, - [213] = { + { ["id"] = "explicit.stat_1174076861", ["text"] = "#% increased Cast Speed if you've dealt a Critical Hit Recently", ["type"] = "explicit", }, - [214] = { + { ["id"] = "explicit.stat_34174842", ["text"] = "#% increased Cast Speed per 20 Spirit", ["type"] = "explicit", }, - [215] = { + { ["id"] = "explicit.stat_656291658", ["text"] = "#% increased Cast Speed when on Full Life", ["type"] = "explicit", }, - [216] = { + { ["id"] = "explicit.stat_1136768410", ["text"] = "#% increased Cast Speed when on Low Life", ["type"] = "explicit", }, - [217] = { + { ["id"] = "explicit.stat_1914226331", ["text"] = "#% increased Cast Speed while on Full Mana", ["type"] = "explicit", }, - [218] = { + { ["id"] = "explicit.stat_892489594", ["text"] = "#% increased Chance to be afflicted by Ailments when Hit", ["type"] = "explicit", }, - [219] = { + { ["id"] = "explicit.stat_736967255", ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, - [220] = { + { ["id"] = "explicit.stat_1366840608", ["text"] = "#% increased Charges", ["type"] = "explicit", }, - [221] = { + { ["id"] = "explicit.stat_3196823591", ["text"] = "#% increased Charges gained", ["type"] = "explicit", }, - [222] = { + { ["id"] = "explicit.stat_388617051", ["text"] = "#% increased Charges per use", ["type"] = "explicit", }, - [223] = { + { ["id"] = "explicit.stat_3585532255", ["text"] = "#% increased Charm Charges gained", ["type"] = "explicit", }, - [224] = { + { ["id"] = "explicit.stat_1389754388", ["text"] = "#% increased Charm Effect Duration", ["type"] = "explicit", }, - [225] = { + { ["id"] = "explicit.stat_3485067555", ["text"] = "#% increased Chill Duration on Enemies", ["type"] = "explicit", }, - [226] = { + { ["id"] = "explicit.stat_3291658075", ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, - [227] = { + { ["id"] = "explicit.stat_1002535626", ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", ["type"] = "explicit", }, - [228] = { + { ["id"] = "explicit.stat_1004011302", ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [229] = { + { ["id"] = "explicit.stat_1544773869", ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", ["type"] = "explicit", }, - [230] = { + { ["id"] = "explicit.stat_1571268546", ["text"] = "#% increased Corrupted Charms effect duration", ["type"] = "explicit", }, - [231] = { + { ["id"] = "explicit.stat_263495202", ["text"] = "#% increased Cost Efficiency", ["type"] = "explicit", }, - [232] = { + { ["id"] = "explicit.stat_3350279336", ["text"] = "#% increased Cost Efficiency of Attacks", ["type"] = "explicit", }, - [233] = { + { ["id"] = "explicit.stat_2369495153", ["text"] = "#% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", ["type"] = "explicit", }, - [234] = { + { ["id"] = "explicit.stat_2650053239", ["text"] = "#% increased Cost of Skills for each 200 total Mana Spent Recently", ["type"] = "explicit", }, - [235] = { + { ["id"] = "explicit.stat_3556824919", ["text"] = "#% increased Critical Damage Bonus", ["type"] = "explicit", }, - [236] = { + { ["id"] = "explicit.stat_3714003708", ["text"] = "#% increased Critical Damage Bonus for Attack Damage", ["type"] = "explicit", }, - [237] = { + { ["id"] = "explicit.stat_23669307", ["text"] = "#% increased Critical Damage Bonus if you've consumed a Power Charge Recently", ["type"] = "explicit", }, - [238] = { + { ["id"] = "explicit.stat_4164870816", ["text"] = "#% increased Critical Damage Bonus per Power Charge", ["type"] = "explicit", }, - [239] = { + { ["id"] = "explicit.stat_2408983956", ["text"] = "#% increased Critical Damage Bonus while Shocked", ["type"] = "explicit", }, - [240] = { + { ["id"] = "explicit.stat_2456523742", ["text"] = "#% increased Critical Damage Bonus with Spears", ["type"] = "explicit", }, - [241] = { + { ["id"] = "explicit.stat_587431675", ["text"] = "#% increased Critical Hit Chance", ["type"] = "explicit", }, - [242] = { + { ["id"] = "explicit.stat_1045789614", ["text"] = "#% increased Critical Hit Chance against Marked Enemies", ["type"] = "explicit", }, - [243] = { + { ["id"] = "explicit.stat_2194114101", ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "explicit", }, - [244] = { + { ["id"] = "explicit.stat_737908626", ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "explicit", }, - [245] = { + { ["id"] = "explicit.stat_2856328513", ["text"] = "#% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", ["type"] = "explicit", }, - [246] = { + { ["id"] = "explicit.stat_274716455", ["text"] = "#% increased Critical Spell Damage Bonus", ["type"] = "explicit", }, - [247] = { + { ["id"] = "explicit.stat_2972244965", ["text"] = "#% increased Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", ["type"] = "explicit", }, - [248] = { + { ["id"] = "explicit.stat_3192728503", ["text"] = "#% increased Crossbow Reload Speed", ["type"] = "explicit", }, - [249] = { + { ["id"] = "explicit.stat_3563080185", ["text"] = "#% increased Culling Strike Threshold", ["type"] = "explicit", }, - [250] = { + { ["id"] = "explicit.stat_3824372849", ["text"] = "#% increased Curse Duration", ["type"] = "explicit", }, - [251] = { + { ["id"] = "explicit.stat_2353576063", ["text"] = "#% increased Curse Magnitudes", ["type"] = "explicit", }, - [252] = { + { ["id"] = "explicit.stat_2154246560", ["text"] = "#% increased Damage", ["type"] = "explicit", }, - [253] = { + { ["id"] = "explicit.stat_2301718443", ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", ["type"] = "explicit", }, - [254] = { + { ["id"] = "explicit.stat_3120508478", ["text"] = "#% increased Damage against Immobilised Enemies", ["type"] = "explicit", }, - [255] = { + { ["id"] = "explicit.stat_3388405805", ["text"] = "#% increased Damage for each type of Elemental Ailment on Enemy", ["type"] = "explicit", }, - [256] = { + { ["id"] = "explicit.stat_2118708619", ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", ["type"] = "explicit", }, - [257] = { + { ["id"] = "explicit.stat_1019020209", ["text"] = "#% increased Damage per Curse on you", ["type"] = "explicit", }, - [258] = { + { ["id"] = "explicit.stat_3399499561", ["text"] = "#% increased Damage per Minion", ["type"] = "explicit", }, - [259] = { + { ["id"] = "explicit.stat_310246444", ["text"] = "#% increased Damage while Leeching", ["type"] = "explicit", }, - [260] = { + { ["id"] = "explicit.stat_2440073079", ["text"] = "#% increased Damage while Shapeshifted", ["type"] = "explicit", }, - [261] = { + { ["id"] = "explicit.stat_2543331226", ["text"] = "#% increased Damage while you have a Totem", ["type"] = "explicit", }, - [262] = { + { ["id"] = "explicit.stat_627767961", ["text"] = "#% increased Damage while you have an active Charm", ["type"] = "explicit", }, - [263] = { + { ["id"] = "explicit.stat_693180608", ["text"] = "#% increased Damage while your Companion is in your Presence", ["type"] = "explicit", }, - [264] = { + { ["id"] = "explicit.stat_1241625305", ["text"] = "#% increased Damage with Bow Skills", ["type"] = "explicit", }, - [265] = { + { ["id"] = "explicit.stat_4188894176", ["text"] = "#% increased Damage with Bows", ["type"] = "explicit", }, - [266] = { + { ["id"] = "explicit.stat_427684353", ["text"] = "#% increased Damage with Crossbows", ["type"] = "explicit", }, - [267] = { + { ["id"] = "explicit.stat_1852872083", ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, - [268] = { + { ["id"] = "explicit.stat_4015438188", ["text"] = "#% increased Damage with Hits against targets in your Presence", ["type"] = "explicit", }, - [269] = { + { ["id"] = "explicit.stat_1181419800", ["text"] = "#% increased Damage with Maces", ["type"] = "explicit", }, - [270] = { + { ["id"] = "explicit.stat_2518900926", ["text"] = "#% increased Damage with Plant Skills", ["type"] = "explicit", }, - [271] = { + { ["id"] = "explicit.stat_4045894391", ["text"] = "#% increased Damage with Quarterstaves", ["type"] = "explicit", }, - [272] = { + { ["id"] = "explicit.stat_2696027455", ["text"] = "#% increased Damage with Spears", ["type"] = "explicit", }, - [273] = { + { ["id"] = "explicit.stat_1594812856", ["text"] = "#% increased Damage with Warcries", ["type"] = "explicit", }, - [274] = { + { ["id"] = "explicit.stat_1949833742", ["text"] = "#% increased Daze Buildup", ["type"] = "explicit", }, - [275] = { + { ["id"] = "explicit.stat_3040571529", ["text"] = "#% increased Deflection Rating", ["type"] = "explicit", }, - [276] = { + { ["id"] = "explicit.stat_1382805233", ["text"] = "#% increased Deflection Rating while moving", ["type"] = "explicit", }, - [277] = { + { ["id"] = "explicit.stat_586037801", ["text"] = "#% increased Desecrated Modifier magnitudes", ["type"] = "explicit", }, - [278] = { + { ["id"] = "explicit.stat_4139681126", ["text"] = "#% increased Dexterity", ["type"] = "explicit", }, - [279] = { + { ["id"] = "explicit.stat_2541588185", ["text"] = "#% increased Duration (Charm)", ["type"] = "explicit", }, - [280] = { + { ["id"] = "explicit.stat_1256719186", ["text"] = "#% increased Duration (Flask)", ["type"] = "explicit", }, - [281] = { + { ["id"] = "explicit.stat_548070846", ["text"] = "#% increased Duration of Ailments on You", ["type"] = "explicit", }, - [282] = { + { ["id"] = "explicit.stat_1692879867", ["text"] = "#% increased Duration of Bleeding on You", ["type"] = "explicit", }, - [283] = { + { ["id"] = "explicit.stat_2920970371", ["text"] = "#% increased Duration of Curses on you", ["type"] = "explicit", }, - [284] = { + { ["id"] = "explicit.stat_1829102168", ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "explicit", }, - [285] = { + { ["id"] = "explicit.stat_2604619892", ["text"] = "#% increased Duration of Elemental Ailments on Enemies", ["type"] = "explicit", }, - [286] = { + { ["id"] = "explicit.stat_1062710370", ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "explicit", }, - [287] = { + { ["id"] = "explicit.stat_3841138199", ["text"] = "#% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", ["type"] = "explicit", }, - [288] = { + { ["id"] = "explicit.stat_3078574625", ["text"] = "#% increased Effect of Expedition Remnants in Map", ["type"] = "explicit", }, - [289] = { + { ["id"] = "explicit.stat_461663422", ["text"] = "#% increased Effect of Jewel Socket Passive Skillscontaining Corrupted Magic Jewels", ["type"] = "explicit", }, - [290] = { + { ["id"] = "explicit.stat_3128077011", ["text"] = "#% increased Effect of Jewel Socket Passive Skillscontaining Corrupted Rare Jewels", ["type"] = "explicit", }, - [291] = { + { ["id"] = "explicit.stat_4234573345", ["text"] = "#% increased Effect of Notable Passive Skills in Radius", ["type"] = "explicit", }, - [292] = { + { ["id"] = "explicit.stat_1443502073", ["text"] = "#% increased Effect of Prefixes", ["type"] = "explicit", }, - [293] = { + { ["id"] = "explicit.stat_3078574625", ["text"] = "#% increased Effect of Remnants in Area", ["type"] = "explicit", }, - [294] = { + { ["id"] = "explicit.stat_1060572482", ["text"] = "#% increased Effect of Small Passive Skills in Radius", ["type"] = "explicit", }, - [295] = { + { ["id"] = "explicit.stat_2475221757", ["text"] = "#% increased Effect of Suffixes", ["type"] = "explicit", }, - [296] = { + { ["id"] = "explicit.stat_712554801", ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "explicit", }, - [297] = { + { ["id"] = "explicit.stat_2895378479", ["text"] = "#% increased Effectiveness of Rare Breach Monsters in Map", ["type"] = "explicit", }, - [298] = { + { ["id"] = "explicit.stat_3544800472", ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "explicit", }, - [299] = { + { ["id"] = "explicit.stat_3141070085", ["text"] = "#% increased Elemental Damage", ["type"] = "explicit", }, - [300] = { + { ["id"] = "explicit.stat_387439868", ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "explicit", }, - [301] = { + { ["id"] = "explicit.stat_1170174456", ["text"] = "#% increased Endurance Charge Duration", ["type"] = "explicit", }, - [302] = { + { ["id"] = "explicit.stat_2839036860", ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", ["type"] = "explicit", }, - [303] = { + { ["id"] = "explicit.stat_4015621042", ["text"] = "#% increased Energy Shield", ["type"] = "explicit", }, - [304] = { + { ["id"] = "explicit.stat_2339757871", ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "explicit", }, - [305] = { + { ["id"] = "explicit.stat_1079292660", ["text"] = "#% increased Energy Shield Recharge Rate if you've Blocked Recently", ["type"] = "explicit", }, - [306] = { + { ["id"] = "explicit.stat_2408276841", ["text"] = "#% increased Energy Shield Recharge Rate per 4 Strength", ["type"] = "explicit", }, - [307] = { + { ["id"] = "explicit.stat_988575597", ["text"] = "#% increased Energy Shield Recovery rate", ["type"] = "explicit", }, - [308] = { + { ["id"] = "explicit.stat_1195319608", ["text"] = "#% increased Energy Shield from Equipped Body Armour", ["type"] = "explicit", }, - [309] = { + { ["id"] = "explicit.stat_3174700878", ["text"] = "#% increased Energy Shield from Equipped Focus", ["type"] = "explicit", }, - [310] = { + { ["id"] = "explicit.stat_2106365538", ["text"] = "#% increased Evasion Rating", ["type"] = "explicit", }, - [311] = { + { ["id"] = "explicit.stat_124859000", ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "explicit", }, - [312] = { + { ["id"] = "explicit.stat_3509362078", ["text"] = "#% increased Evasion Rating from Equipped Body Armour", ["type"] = "explicit", }, - [313] = { + { ["id"] = "explicit.stat_1073310669", ["text"] = "#% increased Evasion Rating if you have been Hit Recently", ["type"] = "explicit", }, - [314] = { + { ["id"] = "explicit.stat_1040569494", ["text"] = "#% increased Evasion Rating if you've Dodge Rolled Recently", ["type"] = "explicit", }, - [315] = { + { ["id"] = "explicit.stat_88817332", ["text"] = "#% increased Evasion Rating when on Full Life", ["type"] = "explicit", }, - [316] = { + { ["id"] = "explicit.stat_1586136369", ["text"] = "#% increased Evasion Rating while Sprinting", ["type"] = "explicit", }, - [317] = { + { ["id"] = "explicit.stat_1999113824", ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "explicit", }, - [318] = { + { ["id"] = "explicit.stat_1539368271", ["text"] = "#% increased Expedition Explosive Placement Range", ["type"] = "explicit", }, - [319] = { + { ["id"] = "explicit.stat_1539368271", ["text"] = "#% increased Expedition Explosive Placement Range in Map", ["type"] = "explicit", }, - [320] = { + { ["id"] = "explicit.stat_3289828378", ["text"] = "#% increased Expedition Explosive Radius", ["type"] = "explicit", }, - [321] = { + { ["id"] = "explicit.stat_3289828378", ["text"] = "#% increased Expedition Explosive Radius in Map", ["type"] = "explicit", }, - [322] = { - ["id"] = "explicit.stat_3666934677", + { + ["id"] = "explicit.stat_57434274", ["text"] = "#% increased Experience gain", ["type"] = "explicit", }, - [323] = { - ["id"] = "explicit.stat_57434274", + { + ["id"] = "explicit.stat_3666934677", ["text"] = "#% increased Experience gain", ["type"] = "explicit", }, - [324] = { + { ["id"] = "explicit.stat_57434274", ["text"] = "#% increased Experience gain in Map", ["type"] = "explicit", }, - [325] = { + { ["id"] = "explicit.stat_3196512240", ["text"] = "#% increased Explicit Chaos Modifier magnitudes", ["type"] = "explicit", }, - [326] = { + { ["id"] = "explicit.stat_3206904707", ["text"] = "#% increased Explicit Cold Modifier magnitudes", ["type"] = "explicit", }, - [327] = { + { ["id"] = "explicit.stat_2393315299", ["text"] = "#% increased Explicit Critical Modifier magnitudes", ["type"] = "explicit", }, - [328] = { + { ["id"] = "explicit.stat_231689132", ["text"] = "#% increased Explicit Elemental Damage Modifier magnitudes", ["type"] = "explicit", }, - [329] = { + { ["id"] = "explicit.stat_3574578302", ["text"] = "#% increased Explicit Fire Modifier magnitudes", ["type"] = "explicit", }, - [330] = { + { ["id"] = "explicit.stat_3624940721", ["text"] = "#% increased Explicit Lightning Modifier magnitudes", ["type"] = "explicit", }, - [331] = { + { + ["id"] = "explicit.stat_3514984677", + ["text"] = "#% increased Explicit Mana Modifier magnitudes", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_1335369947", ["text"] = "#% increased Explicit Physical Modifier magnitudes", ["type"] = "explicit", }, - [332] = { + { ["id"] = "explicit.stat_1972391381", ["text"] = "#% increased Explicit Resistance Modifier magnitudes", ["type"] = "explicit", }, - [333] = { + { ["id"] = "explicit.stat_363924732", ["text"] = "#% increased Explicit Speed Modifier magnitudes", ["type"] = "explicit", }, - [334] = { + { ["id"] = "explicit.stat_2074866941", ["text"] = "#% increased Exposure Effect", ["type"] = "explicit", }, - [335] = { + { ["id"] = "explicit.stat_3962278098", ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, - [336] = { + { ["id"] = "explicit.stat_3858572996", ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", ["type"] = "explicit", }, - [337] = { + { ["id"] = "explicit.stat_2968503605", ["text"] = "#% increased Flammability Magnitude", ["type"] = "explicit", }, - [338] = { + { ["id"] = "explicit.stat_1836676211", ["text"] = "#% increased Flask Charges gained", ["type"] = "explicit", }, - [339] = { + { ["id"] = "explicit.stat_3741323227", ["text"] = "#% increased Flask Effect Duration", ["type"] = "explicit", }, - [340] = { + { ["id"] = "explicit.stat_51994685", ["text"] = "#% increased Flask Life Recovery rate", ["type"] = "explicit", }, - [341] = { + { ["id"] = "explicit.stat_1412217137", ["text"] = "#% increased Flask Mana Recovery rate", ["type"] = "explicit", }, - [342] = { + { ["id"] = "explicit.stat_473429811", ["text"] = "#% increased Freeze Buildup", ["type"] = "explicit", }, - [343] = { + { ["id"] = "explicit.stat_232701452", ["text"] = "#% increased Freeze Buildup if you've consumed an Power Charge Recently", ["type"] = "explicit", }, - [344] = { + { ["id"] = "explicit.stat_1697447343", ["text"] = "#% increased Freeze Buildup with Quarterstaves", ["type"] = "explicit", }, - [345] = { + { ["id"] = "explicit.stat_1073942215", ["text"] = "#% increased Freeze Duration on Enemies", ["type"] = "explicit", }, - [346] = { + { ["id"] = "explicit.stat_3780644166", ["text"] = "#% increased Freeze Threshold", ["type"] = "explicit", }, - [347] = { + { ["id"] = "explicit.stat_1177404658", ["text"] = "#% increased Global Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [348] = { + { ["id"] = "explicit.stat_933768533", ["text"] = "#% increased Global Armour, Evasion and Energy Shield per Socket filled", ["type"] = "explicit", }, - [349] = { + { ["id"] = "explicit.stat_2695354435", ["text"] = "#% increased Global Evasion Rating when on Low Life", ["type"] = "explicit", }, - [350] = { + { ["id"] = "explicit.stat_1310194496", ["text"] = "#% increased Global Physical Damage", ["type"] = "explicit", }, - [351] = { + { ["id"] = "explicit.stat_3143918757", ["text"] = "#% increased Glory generation", ["type"] = "explicit", }, - [352] = { + { ["id"] = "explicit.stat_1869147066", ["text"] = "#% increased Glory generation for Banner Skills", ["type"] = "explicit", }, - [353] = { + { ["id"] = "explicit.stat_1276056105", ["text"] = "#% increased Gold found in Map (Gold Piles)", ["type"] = "explicit", }, - [354] = { + { ["id"] = "explicit.stat_1133965702", ["text"] = "#% increased Gold found in this Area", ["type"] = "explicit", }, - [355] = { + { ["id"] = "explicit.stat_1276056105", ["text"] = "#% increased Gold found in this Area (Gold Piles)", ["type"] = "explicit", }, - [356] = { + { ["id"] = "explicit.stat_3131442032", ["text"] = "#% increased Grenade Damage", ["type"] = "explicit", }, - [357] = { + { ["id"] = "explicit.stat_1365232741", ["text"] = "#% increased Grenade Duration", ["type"] = "explicit", }, - [358] = { + { ["id"] = "explicit.stat_1697951953", ["text"] = "#% increased Hazard Damage", ["type"] = "explicit", }, - [359] = { + { ["id"] = "explicit.stat_3274422940", ["text"] = "#% increased Ice Crystal Life", ["type"] = "explicit", }, - [360] = { + { ["id"] = "explicit.stat_1086147743", ["text"] = "#% increased Ignite Duration on Enemies", ["type"] = "explicit", }, - [361] = { + { ["id"] = "explicit.stat_3791899485", ["text"] = "#% increased Ignite Magnitude", ["type"] = "explicit", }, - [362] = { + { ["id"] = "explicit.stat_330530785", ["text"] = "#% increased Immobilisation buildup", ["type"] = "explicit", }, - [363] = { + { ["id"] = "explicit.stat_656461285", ["text"] = "#% increased Intelligence", ["type"] = "explicit", }, - [364] = { + { ["id"] = "explicit.stat_565784293", ["text"] = "#% increased Knockback Distance", ["type"] = "explicit", }, - [365] = { + { ["id"] = "explicit.stat_310945763", ["text"] = "#% increased Life Cost Efficiency", ["type"] = "explicit", }, - [366] = { + { ["id"] = "explicit.stat_4009879772", ["text"] = "#% increased Life Flask Charges gained", ["type"] = "explicit", }, - [367] = { + { ["id"] = "explicit.stat_1261982764", ["text"] = "#% increased Life Recovered", ["type"] = "explicit", }, - [368] = { + { ["id"] = "explicit.stat_821241191", ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "explicit", }, - [369] = { + { ["id"] = "explicit.stat_3240073117", ["text"] = "#% increased Life Recovery rate", ["type"] = "explicit", }, - [370] = { + { ["id"] = "explicit.stat_2116424886", ["text"] = "#% increased Life Regeneration Rate while moving", ["type"] = "explicit", }, - [371] = { + { ["id"] = "explicit.stat_44972811", ["text"] = "#% increased Life Regeneration rate", ["type"] = "explicit", }, - [372] = { + { ["id"] = "explicit.stat_1261076060", ["text"] = "#% increased Life Regeneration rate during Effect of any Life Flask", ["type"] = "explicit", }, - [373] = { + { ["id"] = "explicit.stat_3084372306", ["text"] = "#% increased Life Regeneration rate while Surrounded", ["type"] = "explicit", }, - [374] = { + { ["id"] = "explicit.stat_2310741722", ["text"] = "#% increased Life and Mana Recovery from Flasks", ["type"] = "explicit", }, - [375] = { + { ["id"] = "explicit.stat_1263695895", ["text"] = "#% increased Light Radius", ["type"] = "explicit", }, - [376] = { + { ["id"] = "explicit.stat_2231156303", ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, - [377] = { + { ["id"] = "explicit.stat_797289402", ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", ["type"] = "explicit", }, - [378] = { + { ["id"] = "explicit.stat_1714706956", ["text"] = "#% increased Magic Pack Size", ["type"] = "explicit", }, - [379] = { + { ["id"] = "explicit.stat_4043376133", ["text"] = "#% increased Magnitude of Abyssal Wasting you inflict", ["type"] = "explicit", }, - [380] = { + { ["id"] = "explicit.stat_1303248024", ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "explicit", }, - [381] = { + { ["id"] = "explicit.stat_3166958180", ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "explicit", }, - [382] = { + { ["id"] = "explicit.stat_828179689", ["text"] = "#% increased Magnitude of Chill you inflict", ["type"] = "explicit", }, - [383] = { + { ["id"] = "explicit.stat_1381474422", ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", ["type"] = "explicit", }, - [384] = { + { ["id"] = "explicit.stat_440490623", ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "explicit", }, - [385] = { + { ["id"] = "explicit.stat_3621874554", ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", ["type"] = "explicit", }, - [386] = { + { ["id"] = "explicit.stat_916833363", ["text"] = "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", ["type"] = "explicit", }, - [387] = { + { ["id"] = "explicit.stat_4259875040", ["text"] = "#% increased Magnitude of Impales inflicted with Spells", ["type"] = "explicit", }, - [388] = { + { ["id"] = "explicit.stat_2487305362", ["text"] = "#% increased Magnitude of Poison you inflict", ["type"] = "explicit", }, - [389] = { + { ["id"] = "explicit.stat_1864159246", ["text"] = "#% increased Magnitude of Poison you inflict on targets that are not Poisoned", ["type"] = "explicit", }, - [390] = { + { ["id"] = "explicit.stat_120969026", ["text"] = "#% increased Magnitude of Poison you inflict while Poisoned", ["type"] = "explicit", }, - [391] = { + { ["id"] = "explicit.stat_324210709", ["text"] = "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", ["type"] = "explicit", }, - [392] = { + { ["id"] = "explicit.stat_2527686725", ["text"] = "#% increased Magnitude of Shock you inflict", ["type"] = "explicit", }, - [393] = { + { ["id"] = "explicit.stat_2725205297", ["text"] = "#% increased Magnitude of Unholy Might buffs you grant", ["type"] = "explicit", }, - [394] = { + { ["id"] = "explicit.stat_4101445926", ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "explicit", }, - [395] = { + { ["id"] = "explicit.stat_3396435291", ["text"] = "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", ["type"] = "explicit", }, - [396] = { + { ["id"] = "explicit.stat_2653231923", ["text"] = "#% increased Mana Cost Efficiency of Spells", ["type"] = "explicit", }, - [397] = { + { ["id"] = "explicit.stat_3590792340", ["text"] = "#% increased Mana Flask Charges gained", ["type"] = "explicit", }, - [398] = { + { ["id"] = "explicit.stat_1811130680", ["text"] = "#% increased Mana Recovered", ["type"] = "explicit", }, - [399] = { + { ["id"] = "explicit.stat_2222186378", ["text"] = "#% increased Mana Recovery from Flasks", ["type"] = "explicit", }, - [400] = { + { ["id"] = "explicit.stat_789117908", ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "explicit", }, - [401] = { + { ["id"] = "explicit.stat_1659564104", ["text"] = "#% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", ["type"] = "explicit", }, - [402] = { + { ["id"] = "explicit.stat_344174146", ["text"] = "#% increased Mana Regeneration Rate per Fragile Regrowth", ["type"] = "explicit", }, - [403] = { + { ["id"] = "explicit.stat_1895238057", ["text"] = "#% increased Mana Regeneration Rate while Surrounded", ["type"] = "explicit", }, - [404] = { + { ["id"] = "explicit.stat_1327522346", ["text"] = "#% increased Mana Regeneration Rate while moving", ["type"] = "explicit", }, - [405] = { + { ["id"] = "explicit.stat_3308030688", ["text"] = "#% increased Mana Regeneration Rate while stationary", ["type"] = "explicit", }, - [406] = { + { ["id"] = "explicit.stat_2702182380", ["text"] = "#% increased Maximum Life per Socket filled", ["type"] = "explicit", }, - [407] = { + { ["id"] = "explicit.stat_332217711", ["text"] = "#% increased Maximum Life per socketed Grand Spectrum", ["type"] = "explicit", }, - [408] = { + { ["id"] = "explicit.stat_911712882", ["text"] = "#% increased Maximum Mana per Socket filled", ["type"] = "explicit", }, - [409] = { + { ["id"] = "explicit.stat_1002362373", ["text"] = "#% increased Melee Damage", ["type"] = "explicit", }, - [410] = { + { ["id"] = "explicit.stat_2677352961", ["text"] = "#% increased Melee Damage against Heavy Stunned enemies", ["type"] = "explicit", }, - [411] = { + { ["id"] = "explicit.stat_3028809864", ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", ["type"] = "explicit", }, - [412] = { + { ["id"] = "explicit.stat_548198834", ["text"] = "#% increased Melee Strike Range with this weapon", ["type"] = "explicit", }, - [413] = { + { ["id"] = "explicit.stat_1718147982", ["text"] = "#% increased Minion Accuracy Rating", ["type"] = "explicit", }, - [414] = { + { ["id"] = "explicit.stat_3526763442", ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", ["type"] = "explicit", }, - [415] = { + { ["id"] = "explicit.stat_999511066", ["text"] = "#% increased Minion Duration", ["type"] = "explicit", }, - [416] = { + { ["id"] = "explicit.stat_1913583994", ["text"] = "#% increased Monster Attack Speed", ["type"] = "explicit", }, - [417] = { + { ["id"] = "explicit.stat_2488361432", ["text"] = "#% increased Monster Cast Speed", ["type"] = "explicit", }, - [418] = { + { ["id"] = "explicit.stat_1890519597", ["text"] = "#% increased Monster Damage", ["type"] = "explicit", }, - [419] = { + { ["id"] = "explicit.stat_2306522833", ["text"] = "#% increased Monster Movement Speed", ["type"] = "explicit", }, - [420] = { + { ["id"] = "explicit.stat_2250533757", ["text"] = "#% increased Movement Speed", ["type"] = "explicit", }, - [421] = { + { ["id"] = "explicit.stat_2590797182", ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", ["type"] = "explicit", }, - [422] = { + { ["id"] = "explicit.stat_1541516339", ["text"] = "#% increased Movement Speed per Frenzy Charge", ["type"] = "explicit", }, - [423] = { + { ["id"] = "explicit.stat_3393547195", ["text"] = "#% increased Movement Speed when on Full Life", ["type"] = "explicit", }, - [424] = { + { ["id"] = "explicit.stat_3107707789", ["text"] = "#% increased Movement Speed while Sprinting", ["type"] = "explicit", }, - [425] = { + { ["id"] = "explicit.stat_610276769", ["text"] = "#% increased Movement Speed while affected by an Ailment", ["type"] = "explicit", }, - [426] = { + { ["id"] = "explicit.stat_890040946", ["text"] = "#% increased Pack Size for Monsters around Vaal Beacons in Map", ["type"] = "explicit", }, - [427] = { + { ["id"] = "explicit.stat_2017682521", ["text"] = "#% increased Pack Size in Map", ["type"] = "explicit", }, - [428] = { + { ["id"] = "explicit.stat_3401186585", ["text"] = "#% increased Parried Debuff Duration", ["type"] = "explicit", }, - [429] = { + { ["id"] = "explicit.stat_818877178", ["text"] = "#% increased Parried Debuff Magnitude", ["type"] = "explicit", }, - [430] = { + { ["id"] = "explicit.stat_1569159338", ["text"] = "#% increased Parry Damage", ["type"] = "explicit", }, - [431] = { + { ["id"] = "explicit.stat_1509134228", ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, - [432] = { + { ["id"] = "explicit.stat_3473929743", ["text"] = "#% increased Pin Buildup", ["type"] = "explicit", }, - [433] = { + { ["id"] = "explicit.stat_2011656677", ["text"] = "#% increased Poison Duration", ["type"] = "explicit", }, - [434] = { + { ["id"] = "explicit.stat_3301100256", ["text"] = "#% increased Poison Duration on you", ["type"] = "explicit", }, - [435] = { + { ["id"] = "explicit.stat_3872306017", ["text"] = "#% increased Power Charge Duration", ["type"] = "explicit", }, - [436] = { + { ["id"] = "explicit.stat_101878827", ["text"] = "#% increased Presence Area of Effect", ["type"] = "explicit", }, - [437] = { + { ["id"] = "explicit.stat_1839076647", ["text"] = "#% increased Projectile Damage", ["type"] = "explicit", }, - [438] = { + { ["id"] = "explicit.stat_3596695232", ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", ["type"] = "explicit", }, - [439] = { + { ["id"] = "explicit.stat_3759663284", ["text"] = "#% increased Projectile Speed", ["type"] = "explicit", }, - [440] = { + { ["id"] = "explicit.stat_3359797958", ["text"] = "#% increased Projectile Speed for Spell Skills", ["type"] = "explicit", }, - [441] = { + { ["id"] = "explicit.stat_535217483", ["text"] = "#% increased Projectile Speed with this Weapon", ["type"] = "explicit", }, - [442] = { + { ["id"] = "explicit.stat_624534143", ["text"] = "#% increased Quantity of Breach Splinters dropped by Breach Monsters in Area", ["type"] = "explicit", }, - [443] = { + { ["id"] = "explicit.stat_624534143", ["text"] = "#% increased Quantity of Breach Splinters dropped by Breach Monsters in Map", ["type"] = "explicit", }, - [444] = { + { ["id"] = "explicit.stat_1083387327", ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters", ["type"] = "explicit", }, - [445] = { + { ["id"] = "explicit.stat_1083387327", ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters in Map", ["type"] = "explicit", }, - [446] = { + { ["id"] = "explicit.stat_3175163625", ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "explicit", }, - [447] = { + { ["id"] = "explicit.stat_2778285247", ["text"] = "#% increased Quantity of Hiveblood found in Map", ["type"] = "explicit", }, - [448] = { + { ["id"] = "explicit.stat_3119172063", ["text"] = "#% increased Quantity of Items dropped by Map Bosses", ["type"] = "explicit", }, - [449] = { + { ["id"] = "explicit.stat_2390685262", ["text"] = "#% increased Quantity of Items found in Map", ["type"] = "explicit", }, - [450] = { + { ["id"] = "explicit.stat_1457896329", ["text"] = "#% increased Quantity of Waystones dropped by Map Bosses", ["type"] = "explicit", }, - [451] = { + { ["id"] = "explicit.stat_2777224821", ["text"] = "#% increased Quantity of Waystones found in Map", ["type"] = "explicit", }, - [452] = { + { ["id"] = "explicit.stat_472809816", ["text"] = "#% increased Quantity of Wombgifts found in Map", ["type"] = "explicit", }, - [453] = { + { ["id"] = "explicit.stat_2416650879", ["text"] = "#% increased Rage Cost Efficiency", ["type"] = "explicit", }, - [454] = { + { ["id"] = "explicit.stat_21824003", ["text"] = "#% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", ["type"] = "explicit", }, - [455] = { + { ["id"] = "explicit.stat_4255069232", ["text"] = "#% increased Rarity of Items dropped by Map Bosses", ["type"] = "explicit", }, - [456] = { + { ["id"] = "explicit.stat_3917489142", ["text"] = "#% increased Rarity of Items found", ["type"] = "explicit", }, - [457] = { - ["id"] = "explicit.stat_2261942307", + { + ["id"] = "explicit.stat_1602191394", ["text"] = "#% increased Rarity of Items foundYour other Modifiers to Rarity of Items found do not apply", ["type"] = "explicit", }, - [458] = { - ["id"] = "explicit.stat_1602191394", + { + ["id"] = "explicit.stat_2261942307", ["text"] = "#% increased Rarity of Items foundYour other Modifiers to Rarity of Items found do not apply", ["type"] = "explicit", }, - [459] = { + { ["id"] = "explicit.stat_2306002879", ["text"] = "#% increased Rarity of Items found in Map", ["type"] = "explicit", }, - [460] = { + { ["id"] = "explicit.stat_313223231", ["text"] = "#% increased Rarity of Items found per Socket filled", ["type"] = "explicit", }, - [461] = { + { ["id"] = "explicit.stat_2929867083", ["text"] = "#% increased Rarity of Items found when on Low Life", ["type"] = "explicit", }, - [462] = { + { ["id"] = "explicit.stat_173226756", ["text"] = "#% increased Recovery rate", ["type"] = "explicit", }, - [463] = { + { ["id"] = "explicit.stat_710476746", ["text"] = "#% increased Reload Speed", ["type"] = "explicit", }, - [464] = { + { ["id"] = "explicit.stat_3413635271", ["text"] = "#% increased Reservation Efficiency of Companion Skills", ["type"] = "explicit", }, - [465] = { + { ["id"] = "explicit.stat_1697191405", ["text"] = "#% increased Reservation Efficiency of Herald Skills", ["type"] = "explicit", }, - [466] = { + { ["id"] = "explicit.stat_1805633363", ["text"] = "#% increased Reservation Efficiency of Minion Skills", ["type"] = "explicit", }, - [467] = { + { ["id"] = "explicit.stat_1350127730", ["text"] = "#% increased Reservation Efficiency of Remnant Skills", ["type"] = "explicit", }, - [468] = { + { ["id"] = "explicit.stat_2308632835", ["text"] = "#% increased Reservation Efficiency of Skills which create Undead Minions", ["type"] = "explicit", }, - [469] = { + { ["id"] = "explicit.stat_830161081", ["text"] = "#% increased Runic Ward", ["type"] = "explicit", }, - [470] = { + { ["id"] = "explicit.stat_2392260628", ["text"] = "#% increased Runic Ward Regeneration Rate", ["type"] = "explicit", }, - [471] = { + { ["id"] = "explicit.stat_3668351662", ["text"] = "#% increased Shock Duration", ["type"] = "explicit", }, - [472] = { + { ["id"] = "explicit.stat_3377888098", ["text"] = "#% increased Skill Effect Duration", ["type"] = "explicit", }, - [473] = { + { ["id"] = "explicit.stat_970213192", ["text"] = "#% increased Skill Speed", ["type"] = "explicit", }, - [474] = { + { ["id"] = "explicit.stat_3313255158", ["text"] = "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", ["type"] = "explicit", }, - [475] = { + { ["id"] = "explicit.stat_918325986", ["text"] = "#% increased Skill Speed while Shapeshifted", ["type"] = "explicit", }, - [476] = { + { ["id"] = "explicit.stat_924253255", ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "explicit", }, - [477] = { + { ["id"] = "explicit.stat_2974417149", ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, - [478] = { + { ["id"] = "explicit.stat_1014398896", ["text"] = "#% increased Spell Damage during any Flask Effect", ["type"] = "explicit", }, - [479] = { + { ["id"] = "explicit.stat_2818518881", ["text"] = "#% increased Spell Damage per 10 Intelligence", ["type"] = "explicit", }, - [480] = { + { ["id"] = "explicit.stat_2412053423", ["text"] = "#% increased Spell Damage per 10 Spirit", ["type"] = "explicit", }, - [481] = { + { ["id"] = "explicit.stat_3491815140", ["text"] = "#% increased Spell Damage per 100 Maximum Life", ["type"] = "explicit", }, - [482] = { + { ["id"] = "explicit.stat_1850249186", ["text"] = "#% increased Spell Damage per 100 maximum Mana", ["type"] = "explicit", }, - [483] = { + { ["id"] = "explicit.stat_3176481473", ["text"] = "#% increased Spell Damage while on Full Energy Shield", ["type"] = "explicit", }, - [484] = { + { ["id"] = "explicit.stat_4136346606", ["text"] = "#% increased Spell Damage while wielding a Melee Weapon", ["type"] = "explicit", }, - [485] = { + { ["id"] = "explicit.stat_1373860425", ["text"] = "#% increased Spell Damage with Spells that cost Life", ["type"] = "explicit", }, - [486] = { + { ["id"] = "explicit.stat_2768835289", ["text"] = "#% increased Spell Physical Damage", ["type"] = "explicit", }, - [487] = { + { ["id"] = "explicit.stat_347220474", ["text"] = "#% increased Spell damage for each 200 total Mana you have Spent Recently", ["type"] = "explicit", }, - [488] = { - ["id"] = "explicit.stat_3984865854", + { + ["id"] = "explicit.stat_1416406066", ["text"] = "#% increased Spirit", ["type"] = "explicit", }, - [489] = { - ["id"] = "explicit.stat_1416406066", + { + ["id"] = "explicit.stat_3984865854", ["text"] = "#% increased Spirit", ["type"] = "explicit", }, - [490] = { + { ["id"] = "explicit.stat_3581035970", ["text"] = "#% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", ["type"] = "explicit", }, - [491] = { + { ["id"] = "explicit.stat_53386210", ["text"] = "#% increased Spirit Reservation Efficiency of Skills", ["type"] = "explicit", }, - [492] = { + { ["id"] = "explicit.stat_1430165758", ["text"] = "#% increased Spirit per socketed Grand Spectrum", ["type"] = "explicit", }, - [493] = { + { ["id"] = "explicit.stat_3836551197", ["text"] = "#% increased Stack size of Simulacrum Splinters found in Area", ["type"] = "explicit", }, - [494] = { + { ["id"] = "explicit.stat_3836551197", ["text"] = "#% increased Stack size of Simulacrum Splinters found in Map", ["type"] = "explicit", }, - [495] = { + { ["id"] = "explicit.stat_734614379", ["text"] = "#% increased Strength", ["type"] = "explicit", }, - [496] = { + { ["id"] = "explicit.stat_295075366", ["text"] = "#% increased Strength Requirement", ["type"] = "explicit", }, - [497] = { + { ["id"] = "explicit.stat_239367161", ["text"] = "#% increased Stun Buildup", ["type"] = "explicit", }, - [498] = { + { ["id"] = "explicit.stat_872504239", ["text"] = "#% increased Stun Buildup with Maces", ["type"] = "explicit", }, - [499] = { + { ["id"] = "explicit.stat_748522257", ["text"] = "#% increased Stun Duration", ["type"] = "explicit", }, - [500] = { + { ["id"] = "explicit.stat_2511217560", ["text"] = "#% increased Stun Recovery", ["type"] = "explicit", }, - [501] = { + { ["id"] = "explicit.stat_680068163", ["text"] = "#% increased Stun Threshold", ["type"] = "explicit", }, - [502] = { + { ["id"] = "explicit.stat_1405298142", ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "explicit", }, - [503] = { + { ["id"] = "explicit.stat_1911237468", ["text"] = "#% increased Stun Threshold while Parrying", ["type"] = "explicit", }, - [504] = { + { ["id"] = "explicit.stat_909236563", ["text"] = "#% increased Surrounded Area of Effect", ["type"] = "explicit", }, - [505] = { + { ["id"] = "explicit.stat_1315743832", ["text"] = "#% increased Thorns damage", ["type"] = "explicit", }, - [506] = { + { ["id"] = "explicit.stat_806994543", ["text"] = "#% increased Thorns damage if you've consumed an Endurance Charge Recently", ["type"] = "explicit", }, - [507] = { + { ["id"] = "explicit.stat_3851254963", ["text"] = "#% increased Totem Damage", ["type"] = "explicit", }, - [508] = { + { ["id"] = "explicit.stat_2639983772", ["text"] = "#% increased Totem Damage per Curse on you", ["type"] = "explicit", }, - [509] = { + { ["id"] = "explicit.stat_2357996603", ["text"] = "#% increased Totem Duration", ["type"] = "explicit", }, - [510] = { + { ["id"] = "explicit.stat_686254215", ["text"] = "#% increased Totem Life", ["type"] = "explicit", }, - [511] = { + { ["id"] = "explicit.stat_3374165039", ["text"] = "#% increased Totem Placement speed", ["type"] = "explicit", }, - [512] = { + { ["id"] = "explicit.stat_3037553757", ["text"] = "#% increased Warcry Buff Effect", ["type"] = "explicit", }, - [513] = { + { ["id"] = "explicit.stat_4159248054", ["text"] = "#% increased Warcry Cooldown Recovery Rate", ["type"] = "explicit", }, - [514] = { + { ["id"] = "explicit.stat_1316278494", ["text"] = "#% increased Warcry Speed", ["type"] = "explicit", }, - [515] = { + { ["id"] = "explicit.stat_1791136590", ["text"] = "#% increased Weapon Damage per 10 Strength", ["type"] = "explicit", }, - [516] = { + { ["id"] = "explicit.stat_3233599707", ["text"] = "#% increased Weapon Swap Speed", ["type"] = "explicit", }, - [517] = { + { ["id"] = "explicit.stat_3973629633", ["text"] = "#% increased Withered Magnitude", ["type"] = "explicit", }, - [518] = { + { ["id"] = "explicit.stat_2112395885", ["text"] = "#% increased amount of Life Leeched", ["type"] = "explicit", }, - [519] = { + { ["id"] = "explicit.stat_3843204146", ["text"] = "#% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", ["type"] = "explicit", }, - [520] = { + { ["id"] = "explicit.stat_2898517796", ["text"] = "#% increased amount of Magic Chests", ["type"] = "explicit", }, - [521] = { + { ["id"] = "explicit.stat_2839066308", ["text"] = "#% increased amount of Mana Leeched", ["type"] = "explicit", }, - [522] = { + { ["id"] = "explicit.stat_798469000", ["text"] = "#% increased amount of Rare Chests", ["type"] = "explicit", }, - [523] = { + { ["id"] = "explicit.stat_1200678966", ["text"] = "#% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, - [524] = { + { ["id"] = "explicit.stat_2793222406", ["text"] = "#% increased bonuses gained from Equipped Rings", ["type"] = "explicit", }, - [525] = { + { ["id"] = "explicit.stat_513747733", ["text"] = "#% increased bonuses gained from left Equipped Ring", ["type"] = "explicit", }, - [526] = { + { ["id"] = "explicit.stat_3885501357", ["text"] = "#% increased bonuses gained from right Equipped Ring", ["type"] = "explicit", }, - [527] = { + { ["id"] = "explicit.stat_2514439422", ["text"] = "#% increased chance Vaal Beacon Chests are Rare in Map", ["type"] = "explicit", }, - [528] = { + { ["id"] = "explicit.stat_632698321", ["text"] = "#% increased chance Vaal Beacons summon additional Monsters in Map", ["type"] = "explicit", }, - [529] = { + { ["id"] = "explicit.stat_2789248444", ["text"] = "#% increased chance for Abyssal monsters in Map to have Abyssal Modifiers", ["type"] = "explicit", }, - [530] = { + { ["id"] = "explicit.stat_1710200734", ["text"] = "#% increased chance for Desecrated Currency from Abysses in Map", ["type"] = "explicit", }, - [531] = { + { ["id"] = "explicit.stat_3481083201", ["text"] = "#% increased chance to Poison", ["type"] = "explicit", }, - [532] = { + { ["id"] = "explicit.stat_293638271", ["text"] = "#% increased chance to Shock", ["type"] = "explicit", }, - [533] = { + { ["id"] = "explicit.stat_1772247089", ["text"] = "#% increased chance to inflict Ailments", ["type"] = "explicit", }, - [534] = { + { ["id"] = "explicit.stat_2760643568", ["text"] = "#% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", ["type"] = "explicit", }, - [535] = { + { ["id"] = "explicit.stat_242637938", ["text"] = "#% increased chance to inflict Bleeding", ["type"] = "explicit", }, - [536] = { + { ["id"] = "explicit.stat_2103650854", ["text"] = "#% increased effect of Arcane Surge on you", ["type"] = "explicit", }, - [537] = { + { ["id"] = "explicit.stat_1180552088", ["text"] = "#% increased effect of Archon Buffs on you", ["type"] = "explicit", }, - [538] = { + { ["id"] = "explicit.stat_1879206848", ["text"] = "#% increased effect of Fully Broken Armour", ["type"] = "explicit", }, - [539] = { + { ["id"] = "explicit.stat_2081918629", ["text"] = "#% increased effect of Socketed Augment Items", ["type"] = "explicit", }, - [540] = { + { + ["id"] = "explicit.stat_704409219", + ["text"] = "#% increased effect of Socketed Runes", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_4065505214", ["text"] = "#% increased effect of Socketed Soul Cores", ["type"] = "explicit", }, - [541] = { + { ["id"] = "explicit.stat_878697053", ["text"] = "#% increased maximum Divinity", ["type"] = "explicit", }, - [542] = { + { ["id"] = "explicit.stat_2189090852", ["text"] = "#% increased maximum Divinity per Corrupted Item Equipped", ["type"] = "explicit", }, - [543] = { + { ["id"] = "explicit.stat_2482852589", ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", }, - [544] = { + { ["id"] = "explicit.stat_983749596", ["text"] = "#% increased maximum Life", ["type"] = "explicit", }, - [545] = { + { ["id"] = "explicit.stat_2748665614", ["text"] = "#% increased maximum Mana", ["type"] = "explicit", }, - [546] = { + { ["id"] = "explicit.stat_4273473110", ["text"] = "#% increased maximum Runic Ward", ["type"] = "explicit", }, - [547] = { + { ["id"] = "explicit.stat_2624927319", ["text"] = "#% increased number of Monster Packs", ["type"] = "explicit", }, - [548] = { + { ["id"] = "explicit.stat_2694800111", ["text"] = "#% increased number of Rare Expedition Monsters in Area", ["type"] = "explicit", }, - [549] = { + { ["id"] = "explicit.stat_2694800111", ["text"] = "#% increased number of Rare Expedition Monsters in Map", ["type"] = "explicit", }, - [550] = { + { ["id"] = "explicit.stat_4219583418", ["text"] = "#% increased quantity of Artifacts dropped by Monsters", ["type"] = "explicit", }, - [551] = { + { ["id"] = "explicit.stat_4219583418", ["text"] = "#% increased quantity of Expedition Artifacts dropped by Monsters in Map", ["type"] = "explicit", }, - [552] = { + { ["id"] = "explicit.stat_2363593824", ["text"] = "#% increased speed of Recoup Effects", ["type"] = "explicit", }, - [553] = { + { ["id"] = "explicit.stat_2663359259", ["text"] = "#% increased total Power counted by Warcries", ["type"] = "explicit", }, - [554] = { + { ["id"] = "explicit.stat_1803659985", ["text"] = "#% less Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [555] = { + { ["id"] = "explicit.stat_1274947822", ["text"] = "#% less Damage", ["type"] = "explicit", }, - [556] = { + { ["id"] = "explicit.stat_67637087", ["text"] = "#% less Damage taken if you have not been Hit Recently", ["type"] = "explicit", }, - [557] = { + { ["id"] = "explicit.stat_3749630567", ["text"] = "#% less Flask Charges used", ["type"] = "explicit", }, - [558] = { + { ["id"] = "explicit.stat_2146799605", ["text"] = "#% less Movement Speed", ["type"] = "explicit", }, - [559] = { + { ["id"] = "explicit.stat_3156445245", ["text"] = "#% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", ["type"] = "explicit", }, - [560] = { + { ["id"] = "explicit.stat_537850431", ["text"] = "#% less Spirit", ["type"] = "explicit", }, - [561] = { + { ["id"] = "explicit.stat_3796523155", ["text"] = "#% less effect of Curses on Monsters", ["type"] = "explicit", }, - [562] = { + { ["id"] = "explicit.stat_1633735772", ["text"] = "#% less maximum Life", ["type"] = "explicit", }, - [563] = { + { ["id"] = "explicit.stat_3045154261", ["text"] = "#% less maximum Mana", ["type"] = "explicit", }, - [564] = { + { ["id"] = "explicit.stat_2423248184", ["text"] = "#% less minimum Physical Attack Damage", ["type"] = "explicit", }, - [565] = { + { ["id"] = "explicit.stat_3376488707", ["text"] = "#% maximum Player Resistances", ["type"] = "explicit", }, - [566] = { + { ["id"] = "explicit.stat_412462523", ["text"] = "#% more Attack Damage", ["type"] = "explicit", }, - [567] = { + { ["id"] = "explicit.stat_2939415499", ["text"] = "#% more Curse Magnitudes", ["type"] = "explicit", }, - [568] = { + { ["id"] = "explicit.stat_1972661424", ["text"] = "#% more Life Flask Recovery", ["type"] = "explicit", }, - [569] = { + { ["id"] = "explicit.stat_1726753705", ["text"] = "#% more Life Recovered", ["type"] = "explicit", }, - [570] = { + { ["id"] = "explicit.stat_95249895", ["text"] = "#% more Monster Life", ["type"] = "explicit", }, - [571] = { + { ["id"] = "explicit.stat_886931978", ["text"] = "#% more Recovery if used while on Low Life", ["type"] = "explicit", }, - [572] = { + { ["id"] = "explicit.stat_3276224428", ["text"] = "#% more Recovery if used while on Low Mana", ["type"] = "explicit", }, - [573] = { + { ["id"] = "explicit.stat_3735888493", ["text"] = "#% more maximum Physical Attack Damage", ["type"] = "explicit", }, - [574] = { + { ["id"] = "explicit.stat_3972229254", ["text"] = "#% of Armour also applies to Chaos Damage", ["type"] = "explicit", }, - [575] = { + { ["id"] = "explicit.stat_3362812763", ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "explicit", }, - [576] = { + { ["id"] = "explicit.stat_2678930256", ["text"] = "#% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", ["type"] = "explicit", }, - [577] = { + { ["id"] = "explicit.stat_2369960685", ["text"] = "#% of Charges consumed by used Charms are granted to your Life Flasks", ["type"] = "explicit", }, - [578] = { + { ["id"] = "explicit.stat_2020463573", ["text"] = "#% of Charges consumed by used Life Flasks are granted to your Charms", ["type"] = "explicit", }, - [579] = { + { ["id"] = "explicit.stat_1686824704", ["text"] = "#% of Cold Damage Converted to Lightning Damage", ["type"] = "explicit", }, - [580] = { + { ["id"] = "explicit.stat_3679418014", ["text"] = "#% of Cold Damage taken Recouped as Life", ["type"] = "explicit", }, - [581] = { + { ["id"] = "explicit.stat_2342939473", ["text"] = "#% of Current Energy Shield also grants Elemental Damage reduction", ["type"] = "explicit", }, - [582] = { + { ["id"] = "explicit.stat_2319832234", ["text"] = "#% of Damage Taken Recouped as Life, Mana and Energy Shield", ["type"] = "explicit", }, - [583] = { + { ["id"] = "explicit.stat_3918757604", ["text"] = "#% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", ["type"] = "explicit", }, - [584] = { + { ["id"] = "explicit.stat_1150343007", ["text"] = "#% of Damage from Hits is taken from your Damageable Companion's Life before you", ["type"] = "explicit", }, - [585] = { + { ["id"] = "explicit.stat_54812069", ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", ["type"] = "explicit", }, - [586] = { + { ["id"] = "explicit.stat_458438597", ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "explicit", }, - [587] = { + { ["id"] = "explicit.stat_679019978", ["text"] = "#% of Damage is taken from Mana before Life while not on Low Mana", ["type"] = "explicit", }, - [588] = { + { ["id"] = "explicit.stat_1444556985", ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "explicit", }, - [589] = { + { ["id"] = "explicit.stat_472520716", ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "explicit", }, - [590] = { + { ["id"] = "explicit.stat_2448633171", ["text"] = "#% of Damage taken bypasses Energy Shield", ["type"] = "explicit", }, - [591] = { + { ["id"] = "explicit.stat_3598623697", ["text"] = "#% of Damage taken during effect Recouped as Life", ["type"] = "explicit", }, - [592] = { + { ["id"] = "explicit.stat_3471443885", ["text"] = "#% of Damage taken from Deflected Hits Recouped as Life", ["type"] = "explicit", }, - [593] = { + { ["id"] = "explicit.stat_1311130924", ["text"] = "#% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", ["type"] = "explicit", }, - [594] = { + { ["id"] = "explicit.stat_2295988214", ["text"] = "#% of Elemental Damage Converted to Chaos Damage", ["type"] = "explicit", }, - [595] = { + { ["id"] = "explicit.stat_210092264", ["text"] = "#% of Elemental Damage Converted to Cold Damage", ["type"] = "explicit", }, - [596] = { + { ["id"] = "explicit.stat_40154188", ["text"] = "#% of Elemental Damage Converted to Fire Damage", ["type"] = "explicit", }, - [597] = { + { ["id"] = "explicit.stat_289540902", ["text"] = "#% of Elemental Damage Converted to Lightning Damage", ["type"] = "explicit", }, - [598] = { + { ["id"] = "explicit.stat_2896115339", ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", ["type"] = "explicit", }, - [599] = { + { ["id"] = "explicit.stat_1175213674", ["text"] = "#% of Elemental damage from Hits taken as Chaos damage", ["type"] = "explicit", }, - [600] = { + { ["id"] = "explicit.stat_3503160529", ["text"] = "#% of Fire Damage Converted to Cold Damage", ["type"] = "explicit", }, - [601] = { + { ["id"] = "explicit.stat_3205239847", ["text"] = "#% of Fire Damage from Hits taken as Physical Damage", ["type"] = "explicit", }, - [602] = { + { ["id"] = "explicit.stat_1742651309", ["text"] = "#% of Fire Damage taken Recouped as Life", ["type"] = "explicit", }, - [603] = { + { ["id"] = "explicit.stat_2772033465", ["text"] = "#% of Fire damage Converted to Lightning damage", ["type"] = "explicit", }, - [604] = { + { ["id"] = "explicit.stat_4108426433", ["text"] = "#% of Fire damage taken as Cold damage", ["type"] = "explicit", }, - [605] = { + { ["id"] = "explicit.stat_3561837752", ["text"] = "#% of Leech is Instant", ["type"] = "explicit", }, - [606] = { + { ["id"] = "explicit.stat_3658708511", ["text"] = "#% of Life Leeched from targets affected by Abyssal Wasting is Instant", ["type"] = "explicit", }, - [607] = { + { ["id"] = "explicit.stat_2109189637", ["text"] = "#% of Lightning Damage Converted to Chaos Damage", ["type"] = "explicit", }, - [608] = { + { ["id"] = "explicit.stat_3627052716", ["text"] = "#% of Lightning Damage Converted to Cold Damage", ["type"] = "explicit", }, - [609] = { + { ["id"] = "explicit.stat_2970621759", ["text"] = "#% of Lightning Damage taken Recouped as Life", ["type"] = "explicit", }, - [610] = { + { ["id"] = "explicit.stat_3198708642", ["text"] = "#% of Lightning damage taken as Cold damage", ["type"] = "explicit", }, - [611] = { + { ["id"] = "explicit.stat_546201303", ["text"] = "#% of Mana Leeched from targets affected by Abyssal Wasting is Instant", ["type"] = "explicit", }, - [612] = { + { ["id"] = "explicit.stat_2458962764", ["text"] = "#% of Maximum Life Converted to Energy Shield", ["type"] = "explicit", }, - [613] = { + { ["id"] = "explicit.stat_1092987622", ["text"] = "#% of Melee Physical Damage taken reflected to Attacker", ["type"] = "explicit", }, - [614] = { + { ["id"] = "explicit.stat_2089152298", ["text"] = "#% of Parry Physical Damage Converted to Cold Damage", ["type"] = "explicit", }, - [615] = { + { ["id"] = "explicit.stat_4129825612", ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "explicit", }, - [616] = { + { ["id"] = "explicit.stat_1374654984", ["text"] = "#% of Physical Damage prevented Recouped as Life", ["type"] = "explicit", }, - [617] = { + { ["id"] = "explicit.stat_1004468512", ["text"] = "#% of Physical Damage taken as Fire Damage", ["type"] = "explicit", }, - [618] = { + { ["id"] = "explicit.stat_321970274", ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", ["type"] = "explicit", }, - [619] = { + { ["id"] = "explicit.stat_70760090", ["text"] = "#% of Physical damage dealt by your Hits causes Blood Loss", ["type"] = "explicit", }, - [620] = { + { ["id"] = "explicit.stat_425242359", ["text"] = "#% of Physical damage from Hits taken as Lightning damage", ["type"] = "explicit", }, - [621] = { + { ["id"] = "explicit.stat_2503377690", ["text"] = "#% of Recovery applied Instantly", ["type"] = "explicit", }, - [622] = { + { ["id"] = "explicit.stat_2480498143", ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "explicit", }, - [623] = { + { ["id"] = "explicit.stat_782941180", ["text"] = "#% of Spell Damage Leeched as Life", ["type"] = "explicit", }, - [624] = { + { ["id"] = "explicit.stat_3544050945", ["text"] = "#% of Spell Mana Cost Converted to Life Cost", ["type"] = "explicit", }, - [625] = { + { ["id"] = "explicit.stat_1753977518", ["text"] = "#% of Thorns Damage Leeched as Life", ["type"] = "explicit", }, - [626] = { + { ["id"] = "explicit.stat_3190121041", ["text"] = "#% of Volatility Physical Damage Taken as Cold Damage", ["type"] = "explicit", }, - [627] = { + { ["id"] = "explicit.stat_3175722882", ["text"] = "#% of maximum Life Regenerated per second per Fragile Regrowth", ["type"] = "explicit", }, - [628] = { + { ["id"] = "explicit.stat_4287671144", ["text"] = "#% of your Base Life Regeneration is granted to Allies in your Presence", ["type"] = "explicit", }, - [629] = { + { ["id"] = "explicit.stat_1570770415", ["text"] = "#% reduced Charm Charges used", ["type"] = "explicit", }, - [630] = { + { ["id"] = "explicit.stat_1874553720", ["text"] = "#% reduced Chill Duration on you", ["type"] = "explicit", }, - [631] = { + { ["id"] = "explicit.stat_1478653032", ["text"] = "#% reduced Effect of Chill on you", ["type"] = "explicit", }, - [632] = { + { ["id"] = "explicit.stat_644456512", ["text"] = "#% reduced Flask Charges used", ["type"] = "explicit", }, - [633] = { + { ["id"] = "explicit.stat_2160282525", ["text"] = "#% reduced Freeze Duration on you", ["type"] = "explicit", }, - [634] = { + { ["id"] = "explicit.stat_986397080", ["text"] = "#% reduced Ignite Duration on you", ["type"] = "explicit", }, - [635] = { + { ["id"] = "explicit.stat_1269971728", ["text"] = "#% reduced Magnitude of Ignite on you", ["type"] = "explicit", }, - [636] = { + { ["id"] = "explicit.stat_474294393", ["text"] = "#% reduced Mana Cost of Skills", ["type"] = "explicit", }, - [637] = { + { ["id"] = "explicit.stat_99927264", ["text"] = "#% reduced Shock duration on you", ["type"] = "explicit", }, - [638] = { + { ["id"] = "explicit.stat_3839676903", ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", ["type"] = "explicit", }, - [639] = { + { ["id"] = "explicit.stat_3407849389", ["text"] = "#% reduced effect of Curses on you", ["type"] = "explicit", }, - [640] = { + { ["id"] = "explicit.stat_3801067695", ["text"] = "#% reduced effect of Shock on you", ["type"] = "explicit", }, - [641] = { + { ["id"] = "explicit.stat_3122852693", ["text"] = "#% to Block Chance while holding a Focus", ["type"] = "explicit", }, - [642] = { + { ["id"] = "explicit.stat_1702195217", ["text"] = "#% to Block chance", ["type"] = "explicit", }, - [643] = { + { ["id"] = "explicit.stat_2923486259", ["text"] = "#% to Chaos Resistance", ["type"] = "explicit", }, - [644] = { + { ["id"] = "explicit.stat_1123023256", ["text"] = "#% to Chaos Resistance per Socket filled", ["type"] = "explicit", }, - [645] = { + { ["id"] = "explicit.stat_4220027924", ["text"] = "#% to Cold Resistance", ["type"] = "explicit", }, - [646] = { + { ["id"] = "explicit.stat_3393628375", ["text"] = "#% to Cold and Chaos Resistances", ["type"] = "explicit", }, - [647] = { + { ["id"] = "explicit.stat_4277795662", ["text"] = "#% to Cold and Lightning Resistances", ["type"] = "explicit", }, - [648] = { + { ["id"] = "explicit.stat_2381897042", ["text"] = "#% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", ["type"] = "explicit", }, - [649] = { + { ["id"] = "explicit.stat_2694482655", ["text"] = "#% to Critical Damage Bonus", ["type"] = "explicit", }, - [650] = { + { ["id"] = "explicit.stat_518292764", ["text"] = "#% to Critical Hit Chance", ["type"] = "explicit", }, - [651] = { + { ["id"] = "explicit.stat_3372524247", ["text"] = "#% to Fire Resistance", ["type"] = "explicit", }, - [652] = { + { ["id"] = "explicit.stat_38301299", ["text"] = "#% to Fire Resistance while on Low Life", ["type"] = "explicit", }, - [653] = { + { ["id"] = "explicit.stat_3399401168", ["text"] = "#% to Fire Spell Critical Hit Chance", ["type"] = "explicit", }, - [654] = { + { ["id"] = "explicit.stat_378817135", ["text"] = "#% to Fire and Chaos Resistances", ["type"] = "explicit", }, - [655] = { + { ["id"] = "explicit.stat_2915988346", ["text"] = "#% to Fire and Cold Resistances", ["type"] = "explicit", }, - [656] = { + { ["id"] = "explicit.stat_4032948616", ["text"] = "#% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", ["type"] = "explicit", }, - [657] = { + { ["id"] = "explicit.stat_3441501978", ["text"] = "#% to Fire and Lightning Resistances", ["type"] = "explicit", }, - [658] = { + { ["id"] = "explicit.stat_3753008264", ["text"] = "#% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", ["type"] = "explicit", }, - [659] = { + { ["id"] = "explicit.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "explicit", }, - [660] = { + { ["id"] = "explicit.stat_3465022881", ["text"] = "#% to Lightning and Chaos Resistances", ["type"] = "explicit", }, - [661] = { + { ["id"] = "explicit.stat_1301765461", ["text"] = "#% to Maximum Chaos Resistance", ["type"] = "explicit", }, - [662] = { + { ["id"] = "explicit.stat_3676141501", ["text"] = "#% to Maximum Cold Resistance", ["type"] = "explicit", }, - [663] = { + { ["id"] = "explicit.stat_4095671657", ["text"] = "#% to Maximum Fire Resistance", ["type"] = "explicit", }, - [664] = { + { ["id"] = "explicit.stat_1011760251", ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "explicit", }, - [665] = { + { ["id"] = "explicit.stat_2039822488", ["text"] = "#% to Maximum Quality", ["type"] = "explicit", }, - [666] = { + { ["id"] = "explicit.stat_3655769732", ["text"] = "#% to Quality of all Skills", ["type"] = "explicit", }, - [667] = { + { ["id"] = "explicit.stat_2715190555", ["text"] = "#% to Thorns Critical Hit Chance", ["type"] = "explicit", }, - [668] = { + { ["id"] = "explicit.stat_3613173483", ["text"] = "#% to Unarmed Melee Attack Critical Hit Chance", ["type"] = "explicit", }, - [669] = { + { ["id"] = "explicit.stat_2901986750", ["text"] = "#% to all Elemental Resistances", ["type"] = "explicit", }, - [670] = { + { ["id"] = "explicit.stat_2593644209", ["text"] = "#% to all Elemental Resistances per Power Charge", ["type"] = "explicit", }, - [671] = { + { ["id"] = "explicit.stat_242161915", ["text"] = "#% to all Elemental Resistances per socketed Grand Spectrum", ["type"] = "explicit", }, - [672] = { + { ["id"] = "explicit.stat_1978899297", ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "explicit", }, - [673] = { + { ["id"] = "explicit.stat_569299859", ["text"] = "#% to all maximum Resistances", ["type"] = "explicit", }, - [674] = { + { ["id"] = "explicit.stat_933355817", ["text"] = "#% to gain Archon of Undeath when you create an Offering", ["type"] = "explicit", }, - [675] = { + { ["id"] = "explicit.stat_480796730", ["text"] = "#% to maximum Block chance", ["type"] = "explicit", }, - [676] = { + { ["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", }, - [677] = { + { ["id"] = "explicit.stat_3302775221", ["text"] = "+# maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", ["type"] = "explicit", }, - [678] = { + { ["id"] = "explicit.stat_1484026495", ["text"] = "+# maximum stacks of Puppet Master", ["type"] = "explicit", }, - [679] = { + { ["id"] = "explicit.stat_448592698|8", ["text"] = "+# to Level of all Alchemist's Boon Skills", ["type"] = "explicit", }, - [680] = { + { ["id"] = "explicit.stat_448592698|208", ["text"] = "+# to Level of all Ancestral Cry Skills", ["type"] = "explicit", }, - [681] = { + { ["id"] = "explicit.stat_448592698|21", ["text"] = "+# to Level of all Ancestral Warrior Totem Skills", ["type"] = "explicit", }, - [682] = { + { ["id"] = "explicit.stat_448592698|98", ["text"] = "+# to Level of all Arc Skills", ["type"] = "explicit", }, - [683] = { + { ["id"] = "explicit.stat_448592698|11", ["text"] = "+# to Level of all Archmage Skills", ["type"] = "explicit", }, - [684] = { + { ["id"] = "explicit.stat_448592698|119", ["text"] = "+# to Level of all Arctic Armour Skills", ["type"] = "explicit", }, - [685] = { + { ["id"] = "explicit.stat_448592698|237", ["text"] = "+# to Level of all Arctic Howl Skills", ["type"] = "explicit", }, - [686] = { + { ["id"] = "explicit.stat_448592698|135", ["text"] = "+# to Level of all Armour Breaker Skills", ["type"] = "explicit", }, - [687] = { + { ["id"] = "explicit.stat_448592698|174", ["text"] = "+# to Level of all Armour Piercing Rounds Skills", ["type"] = "explicit", }, - [688] = { + { ["id"] = "explicit.stat_448592698|86", ["text"] = "+# to Level of all Artillery Ballista Skills", ["type"] = "explicit", }, - [689] = { + { ["id"] = "explicit.stat_448592698|5", ["text"] = "+# to Level of all Attrition Skills", ["type"] = "explicit", }, - [690] = { + { ["id"] = "explicit.stat_448592698|30", ["text"] = "+# to Level of all Ball Lightning Skills", ["type"] = "explicit", }, - [691] = { + { ["id"] = "explicit.stat_448592698|242", ["text"] = "+# to Level of all Barkskin Skills", ["type"] = "explicit", }, - [692] = { + { ["id"] = "explicit.stat_448592698|100", ["text"] = "+# to Level of all Barrage Skills", ["type"] = "explicit", }, - [693] = { + { ["id"] = "explicit.stat_448592698|67", ["text"] = "+# to Level of all Barrier Invocation Skills", ["type"] = "explicit", }, - [694] = { + { ["id"] = "explicit.stat_448592698|12", ["text"] = "+# to Level of all Berserk Skills", ["type"] = "explicit", }, - [695] = { + { ["id"] = "explicit.stat_448592698|63", ["text"] = "+# to Level of all Blasphemy Skills", ["type"] = "explicit", }, - [696] = { + { ["id"] = "explicit.stat_448592698|3", ["text"] = "+# to Level of all Blink Skills", ["type"] = "explicit", }, - [697] = { + { ["id"] = "explicit.stat_448592698|178", ["text"] = "+# to Level of all Blood Hunt Skills", ["type"] = "explicit", }, - [698] = { + { ["id"] = "explicit.stat_448592698|192", ["text"] = "+# to Level of all Bloodhound's Mark Skills", ["type"] = "explicit", }, - [699] = { + { ["id"] = "explicit.stat_448592698|145", ["text"] = "+# to Level of all Bone Cage Skills", ["type"] = "explicit", }, - [700] = { + { ["id"] = "explicit.stat_448592698|31", ["text"] = "+# to Level of all Bone Offering Skills", ["type"] = "explicit", }, - [701] = { + { ["id"] = "explicit.stat_448592698|163", ["text"] = "+# to Level of all Boneshatter Skills", ["type"] = "explicit", }, - [702] = { + { ["id"] = "explicit.stat_448592698|107", ["text"] = "+# to Level of all Bonestorm Skills", ["type"] = "explicit", }, - [703] = { + { ["id"] = "explicit.stat_448592698|238", ["text"] = "+# to Level of all Briarpatch Skills", ["type"] = "explicit", }, - [704] = { + { ["id"] = "explicit.stat_448592698|1", ["text"] = "+# to Level of all Cast on Critical Skills", ["type"] = "explicit", }, - [705] = { + { ["id"] = "explicit.stat_448592698|2", ["text"] = "+# to Level of all Cast on Dodge Skills", ["type"] = "explicit", }, - [706] = { + { ["id"] = "explicit.stat_448592698|215", ["text"] = "+# to Level of all Cast on Elemental Ailment Skills", ["type"] = "explicit", }, - [707] = { + { ["id"] = "explicit.stat_448592698|65", ["text"] = "+# to Level of all Cast on Freeze Skills", ["type"] = "explicit", }, - [708] = { + { ["id"] = "explicit.stat_448592698|66", ["text"] = "+# to Level of all Cast on Ignite Skills", ["type"] = "explicit", }, - [709] = { + { ["id"] = "explicit.stat_448592698|69", ["text"] = "+# to Level of all Cast on Minion Death Skills", ["type"] = "explicit", }, - [710] = { + { ["id"] = "explicit.stat_448592698|64", ["text"] = "+# to Level of all Cast on Shock Skills", ["type"] = "explicit", }, - [711] = { + { ["id"] = "explicit.stat_448592698|7", ["text"] = "+# to Level of all Charge Regulation Skills", ["type"] = "explicit", }, - [712] = { + { ["id"] = "explicit.stat_448592698|55", ["text"] = "+# to Level of all Charged Staff Skills", ["type"] = "explicit", }, - [713] = { + { ["id"] = "explicit.stat_448592698|26", ["text"] = "+# to Level of all Cluster Grenade Skills", ["type"] = "explicit", }, - [714] = { + { ["id"] = "explicit.stat_448592698|76", ["text"] = "+# to Level of all Combat Frenzy Skills", ["type"] = "explicit", }, - [715] = { + { ["id"] = "explicit.stat_448592698|37", ["text"] = "+# to Level of all Comet Skills", ["type"] = "explicit", }, - [716] = { + { ["id"] = "explicit.stat_448592698|82", ["text"] = "+# to Level of all Conductivity Skills", ["type"] = "explicit", }, - [717] = { + { ["id"] = "explicit.stat_448592698|159", ["text"] = "+# to Level of all Contagion Skills", ["type"] = "explicit", }, - [718] = { + { ["id"] = "explicit.stat_448592698|202", ["text"] = "+# to Level of all Convalescence Skills", ["type"] = "explicit", }, - [719] = { + { ["id"] = "explicit.stat_448592698|232", ["text"] = "+# to Level of all Cross Slash Skills", ["type"] = "explicit", }, - [720] = { + { ["id"] = "explicit.stat_448592698|203", ["text"] = "+# to Level of all Cull The Weak Skills", ["type"] = "explicit", }, - [721] = { + { ["id"] = "explicit.stat_448592698|58", ["text"] = "+# to Level of all Dark Effigy Skills", ["type"] = "explicit", }, - [722] = { + { ["id"] = "explicit.stat_448592698|70", ["text"] = "+# to Level of all Defiance Banner Skills", ["type"] = "explicit", }, - [723] = { + { ["id"] = "explicit.stat_448592698|46", ["text"] = "+# to Level of all Despair Skills", ["type"] = "explicit", }, - [724] = { + { ["id"] = "explicit.stat_448592698|78", ["text"] = "+# to Level of all Detonate Dead Skills", ["type"] = "explicit", }, - [725] = { + { ["id"] = "explicit.stat_448592698|56", ["text"] = "+# to Level of all Detonating Arrow Skills", ["type"] = "explicit", }, - [726] = { + { ["id"] = "explicit.stat_448592698|234", ["text"] = "+# to Level of all Devour Skills", ["type"] = "explicit", }, - [727] = { + { ["id"] = "explicit.stat_448592698|177", ["text"] = "+# to Level of all Disengage Skills", ["type"] = "explicit", }, - [728] = { + { ["id"] = "explicit.stat_448592698|4", ["text"] = "+# to Level of all Dread Banner Skills", ["type"] = "explicit", }, - [729] = { + { ["id"] = "explicit.stat_448592698|158", ["text"] = "+# to Level of all Earthquake Skills", ["type"] = "explicit", }, - [730] = { + { ["id"] = "explicit.stat_448592698|84", ["text"] = "+# to Level of all Earthshatter Skills", ["type"] = "explicit", }, - [731] = { + { ["id"] = "explicit.stat_448592698|110", ["text"] = "+# to Level of all Electrocuting Arrow Skills", ["type"] = "explicit", }, - [732] = { + { ["id"] = "explicit.stat_448592698|6", ["text"] = "+# to Level of all Elemental Conflux Skills", ["type"] = "explicit", }, - [733] = { + { ["id"] = "explicit.stat_448592698|72", ["text"] = "+# to Level of all Elemental Invocation Skills", ["type"] = "explicit", }, - [734] = { + { ["id"] = "explicit.stat_448592698|196", ["text"] = "+# to Level of all Elemental Sundering Skills", ["type"] = "explicit", }, - [735] = { + { ["id"] = "explicit.stat_448592698|216", ["text"] = "+# to Level of all Elemental Weakness Skills", ["type"] = "explicit", }, - [736] = { + { ["id"] = "explicit.stat_448592698|149", ["text"] = "+# to Level of all Ember Fusillade Skills", ["type"] = "explicit", }, - [737] = { + { ["id"] = "explicit.stat_448592698|43", ["text"] = "+# to Level of all Emergency Reload Skills", ["type"] = "explicit", }, - [738] = { + { ["id"] = "explicit.stat_448592698|134", ["text"] = "+# to Level of all Enfeeble Skills", ["type"] = "explicit", }, - [739] = { + { ["id"] = "explicit.stat_448592698|230", ["text"] = "+# to Level of all Entangle Skills", ["type"] = "explicit", }, - [740] = { + { ["id"] = "explicit.stat_448592698|165", ["text"] = "+# to Level of all Escape Shot Skills", ["type"] = "explicit", }, - [741] = { + { ["id"] = "explicit.stat_448592698|139", ["text"] = "+# to Level of all Essence Drain Skills", ["type"] = "explicit", }, - [742] = { + { ["id"] = "explicit.stat_448592698|239", ["text"] = "+# to Level of all Eternal Rage Skills", ["type"] = "explicit", }, - [743] = { + { ["id"] = "explicit.stat_448592698|168", ["text"] = "+# to Level of all Explosive Grenade Skills", ["type"] = "explicit", }, - [744] = { + { ["id"] = "explicit.stat_448592698|92", ["text"] = "+# to Level of all Explosive Shot Skills", ["type"] = "explicit", }, - [745] = { + { ["id"] = "explicit.stat_448592698|184", ["text"] = "+# to Level of all Explosive Spear Skills", ["type"] = "explicit", }, - [746] = { + { ["id"] = "explicit.stat_448592698|18", ["text"] = "+# to Level of all Eye of Winter Skills", ["type"] = "explicit", }, - [747] = { + { ["id"] = "explicit.stat_448592698|155", ["text"] = "+# to Level of all Falling Thunder Skills", ["type"] = "explicit", }, - [748] = { + { ["id"] = "explicit.stat_448592698|189", ["text"] = "+# to Level of all Fangs of Frost Skills", ["type"] = "explicit", }, - [749] = { + { ["id"] = "explicit.stat_448592698|243", ["text"] = "+# to Level of all Feral Invocation Skills", ["type"] = "explicit", }, - [750] = { + { ["id"] = "explicit.stat_448592698|225", ["text"] = "+# to Level of all Ferocious Roar Skills", ["type"] = "explicit", }, - [751] = { + { ["id"] = "explicit.stat_448592698|57", ["text"] = "+# to Level of all Fireball Skills", ["type"] = "explicit", }, - [752] = { + { ["id"] = "explicit.stat_448592698|29", ["text"] = "+# to Level of all Firestorm Skills", ["type"] = "explicit", }, - [753] = { + { ["id"] = "explicit.stat_448592698|229", ["text"] = "+# to Level of all Flame Breath Skills", ["type"] = "explicit", }, - [754] = { + { ["id"] = "explicit.stat_448592698|162", ["text"] = "+# to Level of all Flame Wall Skills", ["type"] = "explicit", }, - [755] = { + { ["id"] = "explicit.stat_448592698|15", ["text"] = "+# to Level of all Flameblast Skills", ["type"] = "explicit", }, - [756] = { + { ["id"] = "explicit.stat_448592698|80", ["text"] = "+# to Level of all Flammability Skills", ["type"] = "explicit", }, - [757] = { + { ["id"] = "explicit.stat_448592698|142", ["text"] = "+# to Level of all Flash Grenade Skills", ["type"] = "explicit", }, - [758] = { + { ["id"] = "explicit.stat_448592698|13", ["text"] = "+# to Level of all Flicker Strike Skills", ["type"] = "explicit", }, - [759] = { + { ["id"] = "explicit.stat_448592698|207", ["text"] = "+# to Level of all Forge Hammer Skills", ["type"] = "explicit", }, - [760] = { + { ["id"] = "explicit.stat_448592698|206", ["text"] = "+# to Level of all Fortifying Cry Skills", ["type"] = "explicit", }, - [761] = { + { ["id"] = "explicit.stat_448592698|173", ["text"] = "+# to Level of all Fragmentation Rounds Skills", ["type"] = "explicit", }, - [762] = { + { ["id"] = "explicit.stat_448592698|95", ["text"] = "+# to Level of all Freezing Mark Skills", ["type"] = "explicit", }, - [763] = { + { ["id"] = "explicit.stat_448592698|118", ["text"] = "+# to Level of all Freezing Salvo Skills", ["type"] = "explicit", }, - [764] = { + { ["id"] = "explicit.stat_448592698|157", ["text"] = "+# to Level of all Frost Bomb Skills", ["type"] = "explicit", }, - [765] = { + { ["id"] = "explicit.stat_448592698|211", ["text"] = "+# to Level of all Frost Darts Skills", ["type"] = "explicit", }, - [766] = { + { ["id"] = "explicit.stat_448592698|45", ["text"] = "+# to Level of all Frost Wall Skills", ["type"] = "explicit", }, - [767] = { + { ["id"] = "explicit.stat_448592698|140", ["text"] = "+# to Level of all Frostbolt Skills", ["type"] = "explicit", }, - [768] = { + { ["id"] = "explicit.stat_448592698|169", ["text"] = "+# to Level of all Frozen Locus Skills", ["type"] = "explicit", }, - [769] = { + { ["id"] = "explicit.stat_448592698|224", ["text"] = "+# to Level of all Furious Slam Skills", ["type"] = "explicit", }, - [770] = { + { ["id"] = "explicit.stat_448592698|231", ["text"] = "+# to Level of all Fury of the Mountain Skills", ["type"] = "explicit", }, - [771] = { + { ["id"] = "explicit.stat_448592698|117", ["text"] = "+# to Level of all Galvanic Shards Skills", ["type"] = "explicit", }, - [772] = { + { ["id"] = "explicit.stat_448592698|89", ["text"] = "+# to Level of all Gas Arrow Skills", ["type"] = "explicit", }, - [773] = { + { ["id"] = "explicit.stat_448592698|104", ["text"] = "+# to Level of all Gas Grenade Skills", ["type"] = "explicit", }, - [774] = { + { ["id"] = "explicit.stat_448592698|28", ["text"] = "+# to Level of all Gathering Storm Skills", ["type"] = "explicit", }, - [775] = { + { ["id"] = "explicit.stat_448592698|124", ["text"] = "+# to Level of all Ghost Dance Skills", ["type"] = "explicit", }, - [776] = { + { ["id"] = "explicit.stat_448592698|93", ["text"] = "+# to Level of all Glacial Bolt Skills", ["type"] = "explicit", }, - [777] = { + { ["id"] = "explicit.stat_448592698|166", ["text"] = "+# to Level of all Glacial Cascade Skills", ["type"] = "explicit", }, - [778] = { + { ["id"] = "explicit.stat_448592698|182", ["text"] = "+# to Level of all Glacial Lance Skills", ["type"] = "explicit", }, - [779] = { + { ["id"] = "explicit.stat_448592698|129", ["text"] = "+# to Level of all Grim Feast Skills", ["type"] = "explicit", }, - [780] = { + { ["id"] = "explicit.stat_448592698|40", ["text"] = "+# to Level of all Hailstorm Rounds Skills", ["type"] = "explicit", }, - [781] = { + { ["id"] = "explicit.stat_448592698|23", ["text"] = "+# to Level of all Hammer of the Gods Skills", ["type"] = "explicit", }, - [782] = { + { ["id"] = "explicit.stat_448592698|62", ["text"] = "+# to Level of all Hand of Chayula Skills", ["type"] = "explicit", }, - [783] = { + { ["id"] = "explicit.stat_448592698|120", ["text"] = "+# to Level of all Herald of Ash Skills", ["type"] = "explicit", }, - [784] = { + { ["id"] = "explicit.stat_448592698|186", ["text"] = "+# to Level of all Herald of Blood Skills", ["type"] = "explicit", }, - [785] = { + { ["id"] = "explicit.stat_448592698|199", ["text"] = "+# to Level of all Herald of Blood Skills", ["type"] = "explicit", }, - [786] = { + { ["id"] = "explicit.stat_448592698|121", ["text"] = "+# to Level of all Herald of Ice Skills", ["type"] = "explicit", }, - [787] = { + { ["id"] = "explicit.stat_448592698|75", ["text"] = "+# to Level of all Herald of Plague Skills", ["type"] = "explicit", }, - [788] = { + { ["id"] = "explicit.stat_448592698|122", ["text"] = "+# to Level of all Herald of Thunder Skills", ["type"] = "explicit", }, - [789] = { + { ["id"] = "explicit.stat_448592698|34", ["text"] = "+# to Level of all Hexblast Skills", ["type"] = "explicit", }, - [790] = { + { ["id"] = "explicit.stat_448592698|150", ["text"] = "+# to Level of all High Velocity Rounds Skills", ["type"] = "explicit", }, - [791] = { + { ["id"] = "explicit.stat_448592698|81", ["text"] = "+# to Level of all Hypothermia Skills", ["type"] = "explicit", }, - [792] = { + { ["id"] = "explicit.stat_448592698|153", ["text"] = "+# to Level of all Ice Nova Skills", ["type"] = "explicit", }, - [793] = { + { ["id"] = "explicit.stat_448592698|116", ["text"] = "+# to Level of all Ice Shards Skills", ["type"] = "explicit", }, - [794] = { + { ["id"] = "explicit.stat_448592698|61", ["text"] = "+# to Level of all Ice Shot Skills", ["type"] = "explicit", }, - [795] = { + { ["id"] = "explicit.stat_448592698|103", ["text"] = "+# to Level of all Ice Strike Skills", ["type"] = "explicit", }, - [796] = { + { ["id"] = "explicit.stat_448592698|210", ["text"] = "+# to Level of all Ice-Tipped Arrows Skills", ["type"] = "explicit", }, - [797] = { + { ["id"] = "explicit.stat_448592698|151", ["text"] = "+# to Level of all Incendiary Shot Skills", ["type"] = "explicit", }, - [798] = { + { ["id"] = "explicit.stat_448592698|99", ["text"] = "+# to Level of all Incinerate Skills", ["type"] = "explicit", }, - [799] = { + { ["id"] = "explicit.stat_448592698|137", ["text"] = "+# to Level of all Infernal Cry Skills", ["type"] = "explicit", }, - [800] = { + { ["id"] = "explicit.stat_448592698|205", ["text"] = "+# to Level of all Iron Ward Skills", ["type"] = "explicit", }, - [801] = { + { ["id"] = "explicit.stat_448592698|167", ["text"] = "+# to Level of all Killing Palm Skills", ["type"] = "explicit", }, - [802] = { + { ["id"] = "explicit.stat_448592698|77", ["text"] = "+# to Level of all Leap Slam Skills", ["type"] = "explicit", }, - [803] = { + { ["id"] = "explicit.stat_448592698|156", ["text"] = "+# to Level of all Lightning Arrow Skills", ["type"] = "explicit", }, - [804] = { + { ["id"] = "explicit.stat_448592698|19", ["text"] = "+# to Level of all Lightning Conduit Skills", ["type"] = "explicit", }, - [805] = { + { ["id"] = "explicit.stat_448592698|172", ["text"] = "+# to Level of all Lightning Rod Skills", ["type"] = "explicit", }, - [806] = { + { ["id"] = "explicit.stat_448592698|181", ["text"] = "+# to Level of all Lightning Spear Skills", ["type"] = "explicit", }, - [807] = { + { ["id"] = "explicit.stat_448592698|47", ["text"] = "+# to Level of all Lightning Warp Skills", ["type"] = "explicit", }, - [808] = { + { ["id"] = "explicit.stat_448592698|68", ["text"] = "+# to Level of all Lingering Illusion Skills", ["type"] = "explicit", }, - [809] = { + { ["id"] = "explicit.stat_448592698|244", ["text"] = "+# to Level of all Living Bomb Skills", ["type"] = "explicit", }, - [810] = { + { ["id"] = "explicit.stat_448592698|233", ["text"] = "+# to Level of all Lunar Assault Skills", ["type"] = "explicit", }, - [811] = { + { ["id"] = "explicit.stat_448592698|236", ["text"] = "+# to Level of all Lunar Blessing Skills", ["type"] = "explicit", }, - [812] = { + { ["id"] = "explicit.stat_448592698|126", ["text"] = "+# to Level of all Magma Barrier Skills", ["type"] = "explicit", }, - [813] = { + { ["id"] = "explicit.stat_448592698|27", ["text"] = "+# to Level of all Magnetic Salvo Skills", ["type"] = "explicit", }, - [814] = { + { ["id"] = "explicit.stat_448592698|125", ["text"] = "+# to Level of all Mana Remnants Skills", ["type"] = "explicit", }, - [815] = { + { ["id"] = "explicit.stat_448592698|53", ["text"] = "+# to Level of all Mana Tempest Skills", ["type"] = "explicit", }, - [816] = { + { ["id"] = "explicit.stat_448592698|60", ["text"] = "+# to Level of all Mantra of Destruction Skills", ["type"] = "explicit", }, - [817] = { + { ["id"] = "explicit.stat_448592698|213", ["text"] = "+# to Level of all Mirage Archer Skills", ["type"] = "explicit", }, - [818] = { + { ["id"] = "explicit.stat_448592698|114", ["text"] = "+# to Level of all Molten Blast Skills", ["type"] = "explicit", }, - [819] = { + { ["id"] = "explicit.stat_448592698|212", ["text"] = "+# to Level of all Mortar Cannon Skills", ["type"] = "explicit", }, - [820] = { + { ["id"] = "explicit.stat_448592698|228", ["text"] = "+# to Level of all Oil Barrage Skills", ["type"] = "explicit", }, - [821] = { + { ["id"] = "explicit.stat_448592698|54", ["text"] = "+# to Level of all Oil Grenade Skills", ["type"] = "explicit", }, - [822] = { + { ["id"] = "explicit.stat_448592698|138", ["text"] = "+# to Level of all Orb of Storms Skills", ["type"] = "explicit", }, - [823] = { + { ["id"] = "explicit.stat_448592698|74", ["text"] = "+# to Level of all Overwhelming Presence Skills", ["type"] = "explicit", }, - [824] = { + { ["id"] = "explicit.stat_448592698|105", ["text"] = "+# to Level of all Pain Offering Skills", ["type"] = "explicit", }, - [825] = { + { ["id"] = "explicit.stat_448592698|112", ["text"] = "+# to Level of all Perfect Strike Skills", ["type"] = "explicit", }, - [826] = { + { ["id"] = "explicit.stat_448592698|175", ["text"] = "+# to Level of all Permafrost Bolts Skills", ["type"] = "explicit", }, - [827] = { + { ["id"] = "explicit.stat_448592698|123", ["text"] = "+# to Level of all Plague Bearer Skills", ["type"] = "explicit", }, - [828] = { + { ["id"] = "explicit.stat_448592698|25", ["text"] = "+# to Level of all Plasma Blast Skills", ["type"] = "explicit", }, - [829] = { + { ["id"] = "explicit.stat_448592698|171", ["text"] = "+# to Level of all Poisonburst Arrow Skills", ["type"] = "explicit", }, - [830] = { + { ["id"] = "explicit.stat_448592698|221", ["text"] = "+# to Level of all Pounce Skills", ["type"] = "explicit", }, - [831] = { + { ["id"] = "explicit.stat_448592698|188", ["text"] = "+# to Level of all Primal Strikes Skills", ["type"] = "explicit", }, - [832] = { + { ["id"] = "explicit.stat_448592698|90", ["text"] = "+# to Level of all Profane Ritual Skills", ["type"] = "explicit", }, - [833] = { + { ["id"] = "explicit.stat_448592698|127", ["text"] = "+# to Level of all Raging Spirits Skills", ["type"] = "explicit", }, - [834] = { + { ["id"] = "explicit.stat_448592698|48", ["text"] = "+# to Level of all Rain of Arrows Skills", ["type"] = "explicit", }, - [835] = { + { ["id"] = "explicit.stat_448592698|97", ["text"] = "+# to Level of all Raise Zombie Skills", ["type"] = "explicit", }, - [836] = { + { ["id"] = "explicit.stat_448592698|191", ["text"] = "+# to Level of all Rake Skills", ["type"] = "explicit", }, - [837] = { + { ["id"] = "explicit.stat_448592698|222", ["text"] = "+# to Level of all Rampage Skills", ["type"] = "explicit", }, - [838] = { + { ["id"] = "explicit.stat_448592698|176", ["text"] = "+# to Level of all Rapid Assault Skills", ["type"] = "explicit", }, - [839] = { + { ["id"] = "explicit.stat_448592698|115", ["text"] = "+# to Level of all Rapid Shot Skills", ["type"] = "explicit", }, - [840] = { + { ["id"] = "explicit.stat_448592698|204", ["text"] = "+# to Level of all Ravenous Swarm Skills", ["type"] = "explicit", }, - [841] = { + { ["id"] = "explicit.stat_448592698|9", ["text"] = "+# to Level of all Reaper's Invocation Skills", ["type"] = "explicit", }, - [842] = { + { ["id"] = "explicit.stat_448592698|113", ["text"] = "+# to Level of all Resonating Shield Skills", ["type"] = "explicit", }, - [843] = { + { ["id"] = "explicit.stat_448592698|217", ["text"] = "+# to Level of all Rolling Magma Skills", ["type"] = "explicit", }, - [844] = { + { ["id"] = "explicit.stat_448592698|164", ["text"] = "+# to Level of all Rolling Slam Skills", ["type"] = "explicit", }, - [845] = { + { ["id"] = "explicit.stat_448592698|10", ["text"] = "+# to Level of all Sacrifice Skills", ["type"] = "explicit", }, - [846] = { + { ["id"] = "explicit.stat_448592698|240", ["text"] = "+# to Level of all Savage Fury Skills", ["type"] = "explicit", }, - [847] = { + { ["id"] = "explicit.stat_448592698|130", ["text"] = "+# to Level of all Scavenged Plating Skills", ["type"] = "explicit", }, - [848] = { + { ["id"] = "explicit.stat_448592698|33", ["text"] = "+# to Level of all Seismic Cry Skills", ["type"] = "explicit", }, - [849] = { + { ["id"] = "explicit.stat_448592698|73", ["text"] = "+# to Level of all Shard Scavenger Skills", ["type"] = "explicit", }, - [850] = { + { ["id"] = "explicit.stat_448592698|38", ["text"] = "+# to Level of all Shattering Palm Skills", ["type"] = "explicit", }, - [851] = { + { ["id"] = "explicit.stat_448592698|133", ["text"] = "+# to Level of all Shield Charge Skills", ["type"] = "explicit", }, - [852] = { + { ["id"] = "explicit.stat_448592698|91", ["text"] = "+# to Level of all Shield Wall Skills", ["type"] = "explicit", }, - [853] = { + { ["id"] = "explicit.stat_448592698|41", ["text"] = "+# to Level of all Shockburst Rounds Skills", ["type"] = "explicit", }, - [854] = { + { ["id"] = "explicit.stat_448592698|42", ["text"] = "+# to Level of all Shockchain Arrow Skills", ["type"] = "explicit", }, - [855] = { + { ["id"] = "explicit.stat_448592698|136", ["text"] = "+# to Level of all Shockwave Totem Skills", ["type"] = "explicit", }, - [856] = { + { ["id"] = "explicit.stat_448592698|51", ["text"] = "+# to Level of all Siege Ballista Skills", ["type"] = "explicit", }, - [857] = { + { ["id"] = "explicit.stat_448592698|24", ["text"] = "+# to Level of all Siege Cascade Skills", ["type"] = "explicit", }, - [858] = { + { ["id"] = "explicit.stat_448592698|214", ["text"] = "+# to Level of all Siphon Elements Skills", ["type"] = "explicit", }, - [859] = { + { ["id"] = "explicit.stat_448592698|88", ["text"] = "+# to Level of all Siphoning Strike Skills", ["type"] = "explicit", }, - [860] = { + { ["id"] = "explicit.stat_448592698|141", ["text"] = "+# to Level of all Skeletal Arsonist Skills", ["type"] = "explicit", }, - [861] = { + { ["id"] = "explicit.stat_448592698|16", ["text"] = "+# to Level of all Skeletal Brute Skills", ["type"] = "explicit", }, - [862] = { + { ["id"] = "explicit.stat_448592698|17", ["text"] = "+# to Level of all Skeletal Cleric Skills", ["type"] = "explicit", }, - [863] = { + { ["id"] = "explicit.stat_448592698|101", ["text"] = "+# to Level of all Skeletal Frost Mage Skills", ["type"] = "explicit", }, - [864] = { + { ["id"] = "explicit.stat_448592698|50", ["text"] = "+# to Level of all Skeletal Reaver Skills", ["type"] = "explicit", }, - [865] = { - ["id"] = "explicit.stat_448592698|161", + { + ["id"] = "explicit.stat_448592698|160", ["text"] = "+# to Level of all Skeletal Sniper Skills", ["type"] = "explicit", }, - [866] = { - ["id"] = "explicit.stat_448592698|160", + { + ["id"] = "explicit.stat_448592698|161", ["text"] = "+# to Level of all Skeletal Sniper Skills", ["type"] = "explicit", }, - [867] = { + { ["id"] = "explicit.stat_448592698|32", ["text"] = "+# to Level of all Skeletal Storm Mage Skills", ["type"] = "explicit", }, - [868] = { + { ["id"] = "explicit.stat_448592698|111", ["text"] = "+# to Level of all Snap Skills", ["type"] = "explicit", }, - [869] = { + { ["id"] = "explicit.stat_448592698|147", ["text"] = "+# to Level of all Snipe Skills", ["type"] = "explicit", }, - [870] = { + { ["id"] = "explicit.stat_448592698|79", ["text"] = "+# to Level of all Sniper's Mark Skills", ["type"] = "explicit", }, - [871] = { + { ["id"] = "explicit.stat_448592698|109", ["text"] = "+# to Level of all Solar Orb Skills", ["type"] = "explicit", }, - [872] = { + { ["id"] = "explicit.stat_448592698|22", ["text"] = "+# to Level of all Soul Offering Skills", ["type"] = "explicit", }, - [873] = { + { ["id"] = "explicit.stat_448592698|154", ["text"] = "+# to Level of all Spark Skills", ["type"] = "explicit", }, - [874] = { + { ["id"] = "explicit.stat_448592698|194", ["text"] = "+# to Level of all Spear of Solaris Skills", ["type"] = "explicit", }, - [875] = { + { ["id"] = "explicit.stat_448592698|180", ["text"] = "+# to Level of all Spearfield Skills", ["type"] = "explicit", }, - [876] = { + { ["id"] = "explicit.stat_448592698|226", ["text"] = "+# to Level of all Spell Totem Skills", ["type"] = "explicit", }, - [877] = { + { ["id"] = "explicit.stat_448592698|20", ["text"] = "+# to Level of all Spiral Volley Skills", ["type"] = "explicit", }, - [878] = { + { ["id"] = "explicit.stat_448592698|143", ["text"] = "+# to Level of all Staggering Palm Skills", ["type"] = "explicit", }, - [879] = { + { ["id"] = "explicit.stat_448592698|39", ["text"] = "+# to Level of all Stampede Skills", ["type"] = "explicit", }, - [880] = { + { ["id"] = "explicit.stat_448592698|195", ["text"] = "+# to Level of all Storm Lance Skills", ["type"] = "explicit", }, - [881] = { + { ["id"] = "explicit.stat_448592698|94", ["text"] = "+# to Level of all Storm Wave Skills", ["type"] = "explicit", }, - [882] = { + { ["id"] = "explicit.stat_448592698|59", ["text"] = "+# to Level of all Stormblast Bolts Skills", ["type"] = "explicit", }, - [883] = { + { ["id"] = "explicit.stat_448592698|146", ["text"] = "+# to Level of all Stormcaller Arrow Skills", ["type"] = "explicit", }, - [884] = { + { ["id"] = "explicit.stat_448592698|200", ["text"] = "+# to Level of all Summon Spectre Skills", ["type"] = "explicit", }, - [885] = { + { ["id"] = "explicit.stat_448592698|49", ["text"] = "+# to Level of all Sunder Skills", ["type"] = "explicit", }, - [886] = { + { ["id"] = "explicit.stat_448592698|36", ["text"] = "+# to Level of all Supercharged Slam Skills", ["type"] = "explicit", }, - [887] = { + { ["id"] = "explicit.stat_448592698|201", ["text"] = "+# to Level of all Tamed Companion Skills", ["type"] = "explicit", }, - [888] = { + { ["id"] = "explicit.stat_448592698|193", ["text"] = "+# to Level of all Tamed Companion Skills", ["type"] = "explicit", }, - [889] = { + { ["id"] = "explicit.stat_448592698|144", ["text"] = "+# to Level of all Tempest Bell Skills", ["type"] = "explicit", }, - [890] = { + { ["id"] = "explicit.stat_448592698|106", ["text"] = "+# to Level of all Tempest Flurry Skills", ["type"] = "explicit", }, - [891] = { + { ["id"] = "explicit.stat_448592698|14", ["text"] = "+# to Level of all Temporal Chains Skills", ["type"] = "explicit", }, - [892] = { + { ["id"] = "explicit.stat_448592698|235", ["text"] = "+# to Level of all Thrashing Vines Skills", ["type"] = "explicit", }, - [893] = { + { ["id"] = "explicit.stat_448592698|185", ["text"] = "+# to Level of all Thunderous Leap Skills", ["type"] = "explicit", }, - [894] = { + { ["id"] = "explicit.stat_448592698|223", ["text"] = "+# to Level of all Thunderstorm Skills", ["type"] = "explicit", }, - [895] = { + { ["id"] = "explicit.stat_448592698|71", ["text"] = "+# to Level of all Time of Need Skills", ["type"] = "explicit", }, - [896] = { + { ["id"] = "explicit.stat_448592698|44", ["text"] = "+# to Level of all Tornado Shot Skills", ["type"] = "explicit", }, - [897] = { + { ["id"] = "explicit.stat_448592698|218", ["text"] = "+# to Level of all Tornado Skills", ["type"] = "explicit", }, - [898] = { + { ["id"] = "explicit.stat_448592698|209", ["text"] = "+# to Level of all Toxic Domain Skills", ["type"] = "explicit", }, - [899] = { + { ["id"] = "explicit.stat_448592698|108", ["text"] = "+# to Level of all Toxic Growth Skills", ["type"] = "explicit", }, - [900] = { + { ["id"] = "explicit.stat_448592698|198", ["text"] = "+# to Level of all Trail of Caltrops Skills", ["type"] = "explicit", }, - [901] = { + { ["id"] = "explicit.stat_448592698|197", ["text"] = "+# to Level of all Trinity Skills", ["type"] = "explicit", }, - [902] = { + { ["id"] = "explicit.stat_448592698|183", ["text"] = "+# to Level of all Twister Skills", ["type"] = "explicit", }, - [903] = { + { ["id"] = "explicit.stat_448592698|170", ["text"] = "+# to Level of all Unearth Skills", ["type"] = "explicit", }, - [904] = { + { ["id"] = "explicit.stat_448592698|152", ["text"] = "+# to Level of all Vaulting Impact Skills", ["type"] = "explicit", }, - [905] = { + { ["id"] = "explicit.stat_448592698|148", ["text"] = "+# to Level of all Vine Arrow Skills", ["type"] = "explicit", }, - [906] = { + { ["id"] = "explicit.stat_448592698|52", ["text"] = "+# to Level of all Volcanic Fissure Skills", ["type"] = "explicit", }, - [907] = { + { ["id"] = "explicit.stat_448592698|219", ["text"] = "+# to Level of all Volcano Skills", ["type"] = "explicit", }, - [908] = { + { ["id"] = "explicit.stat_448592698|87", ["text"] = "+# to Level of all Voltaic Grenade Skills", ["type"] = "explicit", }, - [909] = { + { ["id"] = "explicit.stat_448592698|96", ["text"] = "+# to Level of all Voltaic Mark Skills", ["type"] = "explicit", }, - [910] = { + { ["id"] = "explicit.stat_448592698|83", ["text"] = "+# to Level of all Vulnerability Skills", ["type"] = "explicit", }, - [911] = { + { ["id"] = "explicit.stat_448592698|241", ["text"] = "+# to Level of all Walking Calamity Skills", ["type"] = "explicit", }, - [912] = { + { ["id"] = "explicit.stat_448592698|131", ["text"] = "+# to Level of all War Banner Skills", ["type"] = "explicit", }, - [913] = { + { ["id"] = "explicit.stat_448592698|85", ["text"] = "+# to Level of all Wave of Frost Skills", ["type"] = "explicit", }, - [914] = { + { ["id"] = "explicit.stat_448592698|35", ["text"] = "+# to Level of all Whirling Assault Skills", ["type"] = "explicit", }, - [915] = { + { ["id"] = "explicit.stat_448592698|179", ["text"] = "+# to Level of all Whirling Slash Skills", ["type"] = "explicit", }, - [916] = { + { ["id"] = "explicit.stat_448592698|187", ["text"] = "+# to Level of all Whirlwind Lance Skills", ["type"] = "explicit", }, - [917] = { + { ["id"] = "explicit.stat_448592698|102", ["text"] = "+# to Level of all Wind Blast Skills", ["type"] = "explicit", }, - [918] = { + { ["id"] = "explicit.stat_448592698|128", ["text"] = "+# to Level of all Wind Dancer Skills", ["type"] = "explicit", }, - [919] = { + { ["id"] = "explicit.stat_448592698|190", ["text"] = "+# to Level of all Wind Serpent's Fury Skills", ["type"] = "explicit", }, - [920] = { + { ["id"] = "explicit.stat_448592698|227", ["text"] = "+# to Level of all Wing Blast Skills", ["type"] = "explicit", }, - [921] = { + { ["id"] = "explicit.stat_448592698|132", ["text"] = "+# to Level of all Withering Presence Skills", ["type"] = "explicit", }, - [922] = { + { ["id"] = "explicit.stat_448592698|220", ["text"] = "+# to Level of all Wolf Pack Skills", ["type"] = "explicit", }, - [923] = { + { ["id"] = "explicit.stat_4163415912", ["text"] = "+# to Spirit per Socket filled", ["type"] = "explicit", }, - [924] = { + { ["id"] = "explicit.stat_1054098949", ["text"] = "+#% Monster Elemental Resistances", ["type"] = "explicit", }, - [925] = { + { ["id"] = "explicit.stat_2593651571", ["text"] = "+#% to all Elemental Resistances per Socket filled", ["type"] = "explicit", }, - [926] = { + { ["id"] = "explicit.stat_1291132817", ["text"] = "+1 to Armour per Strength", ["type"] = "explicit", }, - [927] = { + { ["id"] = "explicit.stat_1345486764", ["text"] = "+1 to Maximum Spirit per # Maximum Life", ["type"] = "explicit", }, - [928] = { + { ["id"] = "explicit.stat_2134207902", ["text"] = "+100% of Armour also applies to Lightning Damage", ["type"] = "explicit", }, - [929] = { + { ["id"] = "explicit.stat_3452816629", ["text"] = "1% more Unarmed Damage per # Strength", ["type"] = "explicit", }, - [930] = { + { ["id"] = "explicit.stat_1388221282", ["text"] = "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", ["type"] = "explicit", }, - [931] = { + { ["id"] = "explicit.stat_4157613372", ["text"] = "Abyss Pits have #% chance to spawn all Monsters as at least Magic", ["type"] = "explicit", }, - [932] = { + { ["id"] = "explicit.stat_4256531808", ["text"] = "Abyss Pits in Area are twice as likely to have Rewards", ["type"] = "explicit", }, - [933] = { + { ["id"] = "explicit.stat_4256531808", ["text"] = "Abyss Pits in Map are twice as likely to have Rewards", ["type"] = "explicit", }, - [934] = { + { ["id"] = "explicit.stat_2975078312", ["text"] = "Abyssal Monsters grant #% increased Experience", ["type"] = "explicit", }, - [935] = { + { ["id"] = "explicit.stat_664606484", ["text"] = "Abyssal Monsters have #% increased Effectiveness for each closed Pit, up to 100%", ["type"] = "explicit", }, - [936] = { + { ["id"] = "explicit.stat_360553763", ["text"] = "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", ["type"] = "explicit", }, - [937] = { + { ["id"] = "explicit.stat_360553763", ["text"] = "Abyssal Monsters in Map have increased Difficulty and Reward for each closed Pit", ["type"] = "explicit", }, - [938] = { + { ["id"] = "explicit.stat_3979226081", ["text"] = "Abyssal Wasting also applies #% to Cold Resistance", ["type"] = "explicit", }, - [939] = { + { ["id"] = "explicit.stat_2991563371", ["text"] = "Abyssal Wasting also applies #% to Fire Resistance", ["type"] = "explicit", }, - [940] = { + { ["id"] = "explicit.stat_1726353460", ["text"] = "Abyssal Wasting also applies #% to Lightning Resistance", ["type"] = "explicit", }, - [941] = { + { ["id"] = "explicit.stat_1679776108", ["text"] = "Abyssal Wasting you inflict has Infinite Duration", ["type"] = "explicit", }, - [942] = { + { ["id"] = "explicit.stat_2722831300", ["text"] = "Abysses in Area have #% increased chance to lead to an Abyssal Depths", ["type"] = "explicit", }, - [943] = { + { ["id"] = "explicit.stat_2722831300", ["text"] = "Abysses in Map have #% increased chance to lead to an Abyssal Depths", ["type"] = "explicit", }, - [944] = { + { ["id"] = "explicit.stat_944630113", ["text"] = "Abysses in Map spawn #% increased Monsters", ["type"] = "explicit", }, - [945] = { + { ["id"] = "explicit.stat_2399592398", ["text"] = "Abysses lead to an Abyssal Boss", ["type"] = "explicit", }, - [946] = { + { ["id"] = "explicit.stat_2278777540", ["text"] = "Abysses lead to an Abyssal Depths", ["type"] = "explicit", }, - [947] = { + { ["id"] = "explicit.stat_944630113", ["text"] = "Abysses spawn #% increased Monsters", ["type"] = "explicit", }, - [948] = { + { ["id"] = "explicit.stat_2161347476", ["text"] = "Accuracy Rating is Doubled", ["type"] = "explicit", }, - [949] = { + { ["id"] = "explicit.stat_674553446", ["text"] = "Adds # to # Chaos Damage to Attacks", ["type"] = "explicit", }, - [950] = { + { ["id"] = "explicit.stat_2223678961", ["text"] = "Adds # to # Chaos damage", ["type"] = "explicit", }, - [951] = { + { ["id"] = "explicit.stat_1037193709", ["text"] = "Adds # to # Cold Damage", ["type"] = "explicit", }, - [952] = { + { ["id"] = "explicit.stat_4067062424", ["text"] = "Adds # to # Cold damage to Attacks", ["type"] = "explicit", }, - [953] = { + { ["id"] = "explicit.stat_709508406", ["text"] = "Adds # to # Fire Damage", ["type"] = "explicit", }, - [954] = { + { ["id"] = "explicit.stat_1573130764", ["text"] = "Adds # to # Fire damage to Attacks", ["type"] = "explicit", }, - [955] = { + { ["id"] = "explicit.stat_3336890334", ["text"] = "Adds # to # Lightning Damage", ["type"] = "explicit", }, - [956] = { + { ["id"] = "explicit.stat_3111921451", ["text"] = "Adds # to # Lightning Damage to Attacks per 20 Intelligence", ["type"] = "explicit", }, - [957] = { + { ["id"] = "explicit.stat_3835522656", ["text"] = "Adds # to # Lightning Damage to Unarmed Melee Hits", ["type"] = "explicit", }, - [958] = { + { ["id"] = "explicit.stat_1754445556", ["text"] = "Adds # to # Lightning damage to Attacks", ["type"] = "explicit", }, - [959] = { + { ["id"] = "explicit.stat_1940865751", ["text"] = "Adds # to # Physical Damage", ["type"] = "explicit", }, - [960] = { + { ["id"] = "explicit.stat_3032590688", ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "explicit", }, - [961] = { + { ["id"] = "explicit.stat_874646180", ["text"] = "Aggravate Bleeding on Enemies when they Enter your Presence", ["type"] = "explicit", }, - [962] = { + { ["id"] = "explicit.stat_2312741059", ["text"] = "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", ["type"] = "explicit", }, - [963] = { + { ["id"] = "explicit.stat_1952324525", ["text"] = "All Attacks count as Empowered Attacks", ["type"] = "explicit", }, - [964] = { + { ["id"] = "explicit.stat_4012215578", ["text"] = "All Damage from Hits Contributes to Poison Magnitude", ["type"] = "explicit", }, - [965] = { + { ["id"] = "explicit.stat_1717295693", ["text"] = "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", ["type"] = "explicit", }, - [966] = { + { ["id"] = "explicit.stat_1375667591", ["text"] = "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", ["type"] = "explicit", }, - [967] = { + { ["id"] = "explicit.stat_2156230257", ["text"] = "All Damage from Hits with this Weapon Contributes to Chill Magnitude", ["type"] = "explicit", }, - [968] = { + { ["id"] = "explicit.stat_3761294489", ["text"] = "All Damage from Hits with this Weapon Contributes to Freeze Buildup", ["type"] = "explicit", }, - [969] = { + { ["id"] = "explicit.stat_4142786792", ["text"] = "All Damage from Hits with this Weapon Contributes to Pin Buildup", ["type"] = "explicit", }, - [970] = { + { ["id"] = "explicit.stat_1705072014", ["text"] = "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", ["type"] = "explicit", }, - [971] = { + { ["id"] = "explicit.stat_2420248029", ["text"] = "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", ["type"] = "explicit", }, - [972] = { + { ["id"] = "explicit.stat_1291285202", ["text"] = "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", ["type"] = "explicit", }, - [973] = { + { ["id"] = "explicit.stat_3874491706", ["text"] = "All Mage's Legacies have #% increased effect per duplicate Mage's Legacy you have", ["type"] = "explicit", }, - [974] = { + { ["id"] = "explicit.stat_1910743684", ["text"] = "All damage with this Weapon causes Electrocution buildup", ["type"] = "explicit", }, - [975] = { + { ["id"] = "explicit.stat_4258251165", ["text"] = "Allies in your Presence Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, - [976] = { + { ["id"] = "explicit.stat_2173791158", ["text"] = "Allies in your Presence Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, - [977] = { + { ["id"] = "explicit.stat_4010677958", ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "explicit", }, - [978] = { + { ["id"] = "explicit.stat_3081479811", ["text"] = "Allies in your Presence Regenerate #% of their Maximum Life per second", ["type"] = "explicit", }, - [979] = { + { ["id"] = "explicit.stat_262946222", ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", ["type"] = "explicit", }, - [980] = { + { ["id"] = "explicit.stat_2347036682", ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", ["type"] = "explicit", }, - [981] = { + { ["id"] = "explicit.stat_849987426", ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", ["type"] = "explicit", }, - [982] = { + { ["id"] = "explicit.stat_2854751904", ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", ["type"] = "explicit", }, - [983] = { + { ["id"] = "explicit.stat_1574590649", ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "explicit", }, - [984] = { + { ["id"] = "explicit.stat_1798257884", ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "explicit", }, - [985] = { + { ["id"] = "explicit.stat_3169585282", ["text"] = "Allies in your Presence have # to Accuracy Rating", ["type"] = "explicit", }, - [986] = { + { ["id"] = "explicit.stat_1998951374", ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "explicit", }, - [987] = { + { ["id"] = "explicit.stat_289128254", ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "explicit", }, - [988] = { + { ["id"] = "explicit.stat_3057012405", ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "explicit", }, - [989] = { + { ["id"] = "explicit.stat_1250712710", ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "explicit", }, - [990] = { + { ["id"] = "explicit.stat_3850614073", ["text"] = "Allies in your Presence have #% to all Elemental Resistances", ["type"] = "explicit", }, - [991] = { + { ["id"] = "explicit.stat_1361645249", ["text"] = "Allies in your Presence have Block Chance equal to yours", ["type"] = "explicit", }, - [992] = { + { ["id"] = "explicit.stat_3929993388", ["text"] = "Allocates # Sinister Jewel sockets", ["type"] = "explicit", }, - [993] = { + { ["id"] = "explicit.stat_2954116742|7338", ["text"] = "Allocates Abasement", ["type"] = "explicit", }, - [994] = { + { ["id"] = "explicit.stat_2954116742|43082", ["text"] = "Allocates Acceleration", ["type"] = "explicit", }, - [995] = { + { ["id"] = "explicit.stat_2954116742|12822", ["text"] = "Allocates Adaptable Assault", ["type"] = "explicit", }, - [996] = { + { ["id"] = "explicit.stat_2954116742|43250", ["text"] = "Allocates Adaptive Skin", ["type"] = "explicit", }, - [997] = { + { ["id"] = "explicit.stat_2954116742|35876", ["text"] = "Allocates Admonisher", ["type"] = "explicit", }, - [998] = { + { ["id"] = "explicit.stat_2954116742|17340", ["text"] = "Allocates Adrenaline Rush", ["type"] = "explicit", }, - [999] = { + { ["id"] = "explicit.stat_2954116742|43829", ["text"] = "Allocates Advanced Munitions", ["type"] = "explicit", }, - [1000] = { + { ["id"] = "explicit.stat_2954116742|4295", ["text"] = "Allocates Adverse Growth", ["type"] = "explicit", }, - [1001] = { + { ["id"] = "explicit.stat_2954116742|4716", ["text"] = "Allocates Afterimage", ["type"] = "explicit", }, - [1002] = { + { ["id"] = "explicit.stat_2954116742|50253", ["text"] = "Allocates Aftershocks", ["type"] = "explicit", }, - [1003] = { + { ["id"] = "explicit.stat_2954116742|59938", ["text"] = "Allocates Against the Elements", ["type"] = "explicit", }, - [1004] = { + { ["id"] = "explicit.stat_2954116742|6655", ["text"] = "Allocates Aggravation", ["type"] = "explicit", }, - [1005] = { + { ["id"] = "explicit.stat_2954116742|8896", ["text"] = "Allocates Agile Sprinter", ["type"] = "explicit", }, - [1006] = { + { ["id"] = "explicit.stat_2954116742|56493", ["text"] = "Allocates Agile Succession", ["type"] = "explicit", }, - [1007] = { + { ["id"] = "explicit.stat_2954116742|43088", ["text"] = "Allocates Agonising Calamity", ["type"] = "explicit", }, - [1008] = { + { ["id"] = "explicit.stat_2954116742|55817", ["text"] = "Allocates Alchemical Oil", ["type"] = "explicit", }, - [1009] = { + { ["id"] = "explicit.stat_2954116742|43854", ["text"] = "Allocates All For One", ["type"] = "explicit", }, - [1010] = { + { ["id"] = "explicit.stat_2954116742|58016", ["text"] = "Allocates All Natural", ["type"] = "explicit", }, - [1011] = { + { ["id"] = "explicit.stat_2954116742|48974", ["text"] = "Allocates Altered Brain Chemistry", ["type"] = "explicit", }, - [1012] = { + { ["id"] = "explicit.stat_2954116742|23764", ["text"] = "Allocates Alternating Current", ["type"] = "explicit", }, - [1013] = { + { ["id"] = "explicit.stat_2954116742|20558", ["text"] = "Allocates Among the Hordes", ["type"] = "explicit", }, - [1014] = { + { ["id"] = "explicit.stat_2954116742|2575", ["text"] = "Allocates Ancestral Alacrity", ["type"] = "explicit", }, - [1015] = { + { ["id"] = "explicit.stat_2954116742|26339", ["text"] = "Allocates Ancestral Artifice", ["type"] = "explicit", }, - [1016] = { + { ["id"] = "explicit.stat_2954116742|51820", ["text"] = "Allocates Ancestral Conduits", ["type"] = "explicit", }, - [1017] = { + { ["id"] = "explicit.stat_2954116742|18419", ["text"] = "Allocates Ancestral Mending", ["type"] = "explicit", }, - [1018] = { + { ["id"] = "explicit.stat_2954116742|43396", ["text"] = "Allocates Ancestral Reach", ["type"] = "explicit", }, - [1019] = { + { ["id"] = "explicit.stat_2954116742|62609", ["text"] = "Allocates Ancestral Unity", ["type"] = "explicit", }, - [1020] = { + { ["id"] = "explicit.stat_2954116742|5728", ["text"] = "Allocates Ancient Aegis", ["type"] = "explicit", }, - [1021] = { + { ["id"] = "explicit.stat_2954116742|62431", ["text"] = "Allocates Anticipation", ["type"] = "explicit", }, - [1022] = { + { ["id"] = "explicit.stat_2954116742|38398", ["text"] = "Allocates Apocalypse", ["type"] = "explicit", }, - [1023] = { + { ["id"] = "explicit.stat_2954116742|46224", ["text"] = "Allocates Arcane Alchemy", ["type"] = "explicit", }, - [1024] = { + { ["id"] = "explicit.stat_2954116742|14324", ["text"] = "Allocates Arcane Blossom", ["type"] = "explicit", }, - [1025] = { + { ["id"] = "explicit.stat_2954116742|19044", ["text"] = "Allocates Arcane Intensity", ["type"] = "explicit", }, - [1026] = { + { ["id"] = "explicit.stat_2954116742|46972", ["text"] = "Allocates Arcane Mixtures", ["type"] = "explicit", }, - [1027] = { + { ["id"] = "explicit.stat_2954116742|16940", ["text"] = "Allocates Arcane Nature", ["type"] = "explicit", }, - [1028] = { + { ["id"] = "explicit.stat_2954116742|46124", ["text"] = "Allocates Arcane Remnants", ["type"] = "explicit", }, - [1029] = { + { ["id"] = "explicit.stat_2954116742|26926", ["text"] = "Allocates Archon of Undeath", ["type"] = "explicit", }, - [1030] = { + { ["id"] = "explicit.stat_2954116742|42045", ["text"] = "Allocates Archon of the Blizzard", ["type"] = "explicit", }, - [1031] = { + { ["id"] = "explicit.stat_2954116742|27434", ["text"] = "Allocates Archon of the Storm", ["type"] = "explicit", }, - [1032] = { + { ["id"] = "explicit.stat_2954116742|12245", ["text"] = "Allocates Arsonist", ["type"] = "explicit", }, - [1033] = { + { ["id"] = "explicit.stat_2954116742|58817", ["text"] = "Allocates Artillery Strike", ["type"] = "explicit", }, - [1034] = { + { ["id"] = "explicit.stat_2954116742|12661", ["text"] = "Allocates Asceticism", ["type"] = "explicit", }, - [1035] = { + { ["id"] = "explicit.stat_2954116742|27388", ["text"] = "Allocates Aspiring Genius", ["type"] = "explicit", }, - [1036] = { + { ["id"] = "explicit.stat_2954116742|35560", ["text"] = "Allocates At your Command", ["type"] = "explicit", }, - [1037] = { + { + ["id"] = "explicit.stat_2954116742|17696", + ["text"] = "Allocates Augmented Flesh", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_2954116742|20397", ["text"] = "Allocates Authority", ["type"] = "explicit", }, - [1038] = { + { ["id"] = "explicit.stat_2954116742|50673", ["text"] = "Allocates Avoiding Deflection", ["type"] = "explicit", }, - [1039] = { + { ["id"] = "explicit.stat_2954116742|33059", ["text"] = "Allocates Back in Action", ["type"] = "explicit", }, - [1040] = { + { ["id"] = "explicit.stat_2954116742|53853", ["text"] = "Allocates Backup Plan", ["type"] = "explicit", }, - [1041] = { + { ["id"] = "explicit.stat_2954116742|62455", ["text"] = "Allocates Bannerman", ["type"] = "explicit", }, - [1042] = { + { ["id"] = "explicit.stat_2954116742|50562", ["text"] = "Allocates Barbaric Strength", ["type"] = "explicit", }, - [1043] = { + { ["id"] = "explicit.stat_2954116742|50062", ["text"] = "Allocates Barrier of Venarius", ["type"] = "explicit", }, - [1044] = { + { ["id"] = "explicit.stat_2954116742|8916", ["text"] = "Allocates Bashing Beast", ["type"] = "explicit", }, - [1045] = { + { ["id"] = "explicit.stat_2954116742|37846", ["text"] = "Allocates Bastion of Light", ["type"] = "explicit", }, - [1046] = { + { ["id"] = "explicit.stat_2954116742|64240", ["text"] = "Allocates Battle Fever", ["type"] = "explicit", }, - [1047] = { + { ["id"] = "explicit.stat_2954116742|37276", ["text"] = "Allocates Battle Trance", ["type"] = "explicit", }, - [1048] = { + { ["id"] = "explicit.stat_2954116742|41620", ["text"] = "Allocates Bear's Roar", ["type"] = "explicit", }, - [1049] = { + { ["id"] = "explicit.stat_2954116742|59720", ["text"] = "Allocates Beastial Skin", ["type"] = "explicit", }, - [1050] = { + { ["id"] = "explicit.stat_2954116742|25482", ["text"] = "Allocates Beef", ["type"] = "explicit", }, - [1051] = { + { ["id"] = "explicit.stat_2954116742|5642", ["text"] = "Allocates Behemoth", ["type"] = "explicit", }, - [1052] = { + { ["id"] = "explicit.stat_2954116742|10873", ["text"] = "Allocates Bestial Rage", ["type"] = "explicit", }, - [1053] = { + { ["id"] = "explicit.stat_2954116742|15825", ["text"] = "Allocates Bhatair's Storm", ["type"] = "explicit", }, - [1054] = { + { ["id"] = "explicit.stat_2954116742|38329", ["text"] = "Allocates Biting Frost", ["type"] = "explicit", }, - [1055] = { + { ["id"] = "explicit.stat_2954116742|17029", ["text"] = "Allocates Blade Catcher", ["type"] = "explicit", }, - [1056] = { + { ["id"] = "explicit.stat_2954116742|2394", ["text"] = "Allocates Blade Flurry", ["type"] = "explicit", }, - [1057] = { + { ["id"] = "explicit.stat_2954116742|25753", ["text"] = "Allocates Blazing Arms", ["type"] = "explicit", }, - [1058] = { + { ["id"] = "explicit.stat_2954116742|18308", ["text"] = "Allocates Bleeding Out", ["type"] = "explicit", }, - [1059] = { + { ["id"] = "explicit.stat_2954116742|48925", ["text"] = "Allocates Blessing of the Moon", ["type"] = "explicit", }, - [1060] = { + { ["id"] = "explicit.stat_2954116742|42354", ["text"] = "Allocates Blinding Flash", ["type"] = "explicit", }, - [1061] = { + { ["id"] = "explicit.stat_2954116742|20916", ["text"] = "Allocates Blinding Strike", ["type"] = "explicit", }, - [1062] = { + { ["id"] = "explicit.stat_2954116742|39083", ["text"] = "Allocates Blood Rush", ["type"] = "explicit", }, - [1063] = { + { ["id"] = "explicit.stat_2954116742|58183", ["text"] = "Allocates Blood Tearing", ["type"] = "explicit", }, - [1064] = { + { ["id"] = "explicit.stat_2954116742|48524", ["text"] = "Allocates Blood Transfusion", ["type"] = "explicit", }, - [1065] = { + { ["id"] = "explicit.stat_2954116742|35792", ["text"] = "Allocates Blood of Rage", ["type"] = "explicit", }, - [1066] = { + { ["id"] = "explicit.stat_2954116742|49214", ["text"] = "Allocates Blood of the Wolf", ["type"] = "explicit", }, - [1067] = { + { ["id"] = "explicit.stat_2954116742|54990", ["text"] = "Allocates Bloodletting", ["type"] = "explicit", }, - [1068] = { + { ["id"] = "explicit.stat_2954116742|10772", ["text"] = "Allocates Bloodthirsty", ["type"] = "explicit", }, - [1069] = { + { ["id"] = "explicit.stat_2954116742|42177", ["text"] = "Allocates Blurred Motion", ["type"] = "explicit", }, - [1070] = { + { ["id"] = "explicit.stat_2954116742|26070", ["text"] = "Allocates Bolstering Yell", ["type"] = "explicit", }, - [1071] = { + { ["id"] = "explicit.stat_2954116742|712", ["text"] = "Allocates Bond of the Ape", ["type"] = "explicit", }, - [1072] = { + { ["id"] = "explicit.stat_2954116742|52568", ["text"] = "Allocates Bond of the Owl", ["type"] = "explicit", }, - [1073] = { + { ["id"] = "explicit.stat_2954116742|34478", ["text"] = "Allocates Bond of the Viper", ["type"] = "explicit", }, - [1074] = { + { ["id"] = "explicit.stat_2954116742|17725", ["text"] = "Allocates Bonded Precision", ["type"] = "explicit", }, - [1075] = { + { ["id"] = "explicit.stat_2954116742|26563", ["text"] = "Allocates Bone Chains", ["type"] = "explicit", }, - [1076] = { + { ["id"] = "explicit.stat_2954116742|52618", ["text"] = "Allocates Boon of the Beast", ["type"] = "explicit", }, - [1077] = { + { ["id"] = "explicit.stat_2954116742|15114", ["text"] = "Allocates Boundless Growth", ["type"] = "explicit", }, - [1078] = { + { ["id"] = "explicit.stat_2954116742|23244", ["text"] = "Allocates Bounty Hunter", ["type"] = "explicit", }, - [1079] = { + { ["id"] = "explicit.stat_2954116742|24721", ["text"] = "Allocates Brain Freeze", ["type"] = "explicit", }, - [1080] = { + { + ["id"] = "explicit.stat_2954116742|50498", + ["text"] = "Allocates Brain Storm", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_2954116742|37806", ["text"] = "Allocates Branching Bolts", ["type"] = "explicit", }, - [1081] = { + { ["id"] = "explicit.stat_2954116742|14777", ["text"] = "Allocates Bravado", ["type"] = "explicit", }, - [1082] = { + { ["id"] = "explicit.stat_2954116742|21453", ["text"] = "Allocates Breakage", ["type"] = "explicit", }, - [1083] = { + { ["id"] = "explicit.stat_2954116742|39347", ["text"] = "Allocates Breaking Blows", ["type"] = "explicit", }, - [1084] = { + { ["id"] = "explicit.stat_2954116742|7777", ["text"] = "Allocates Breaking Point", ["type"] = "explicit", }, - [1085] = { + { ["id"] = "explicit.stat_2954116742|24655", ["text"] = "Allocates Breath of Fire", ["type"] = "explicit", }, - [1086] = { + { ["id"] = "explicit.stat_2954116742|18086", ["text"] = "Allocates Breath of Ice", ["type"] = "explicit", }, - [1087] = { + { ["id"] = "explicit.stat_2954116742|61338", ["text"] = "Allocates Breath of Lightning", ["type"] = "explicit", }, - [1088] = { + { ["id"] = "explicit.stat_2954116742|9535", ["text"] = "Allocates Brinerot Ferocity", ["type"] = "explicit", }, - [1089] = { + { ["id"] = "explicit.stat_2954116742|48565", ["text"] = "Allocates Bringer of Order", ["type"] = "explicit", }, - [1090] = { + { ["id"] = "explicit.stat_2954116742|53935", ["text"] = "Allocates Briny Carapace", ["type"] = "explicit", }, - [1091] = { + { ["id"] = "explicit.stat_2954116742|63541", ["text"] = "Allocates Brush Off", ["type"] = "explicit", }, - [1092] = { + { ["id"] = "explicit.stat_2954116742|50392", ["text"] = "Allocates Brute Strength", ["type"] = "explicit", }, - [1093] = { + { ["id"] = "explicit.stat_2954116742|15986", ["text"] = "Allocates Building Toxins", ["type"] = "explicit", }, - [1094] = { + { ["id"] = "explicit.stat_2954116742|53294", ["text"] = "Allocates Burn Away", ["type"] = "explicit", }, - [1095] = { + { ["id"] = "explicit.stat_2954116742|8554", ["text"] = "Allocates Burning Nature", ["type"] = "explicit", }, - [1096] = { + { ["id"] = "explicit.stat_2954116742|6544", ["text"] = "Allocates Burning Strikes", ["type"] = "explicit", }, - [1097] = { + { ["id"] = "explicit.stat_2954116742|35324", ["text"] = "Allocates Burnout", ["type"] = "explicit", }, - [1098] = { + { ["id"] = "explicit.stat_2954116742|6514", ["text"] = "Allocates Cacophony", ["type"] = "explicit", }, - [1099] = { + { ["id"] = "explicit.stat_2954116742|32799", ["text"] = "Allocates Captivating Companionship", ["type"] = "explicit", }, - [1100] = { + { ["id"] = "explicit.stat_2954116742|50795", ["text"] = "Allocates Careful Aim", ["type"] = "explicit", }, - [1101] = { + { ["id"] = "explicit.stat_2954116742|46197", ["text"] = "Allocates Careful Assassin", ["type"] = "explicit", }, - [1102] = { + { ["id"] = "explicit.stat_2954116742|17955", ["text"] = "Allocates Careful Consideration", ["type"] = "explicit", }, - [1103] = { + { ["id"] = "explicit.stat_2954116742|52348", ["text"] = "Allocates Carved Earth", ["type"] = "explicit", }, - [1104] = { + { ["id"] = "explicit.stat_2954116742|44005", ["text"] = "Allocates Casting Cascade", ["type"] = "explicit", }, - [1105] = { + { ["id"] = "explicit.stat_2954116742|31433", ["text"] = "Allocates Catalysis", ["type"] = "explicit", }, - [1106] = { + { ["id"] = "explicit.stat_2954116742|9472", ["text"] = "Allocates Catapult", ["type"] = "explicit", }, - [1107] = { + { ["id"] = "explicit.stat_2954116742|32664", ["text"] = "Allocates Chakra of Breathing", ["type"] = "explicit", }, - [1108] = { + { ["id"] = "explicit.stat_2954116742|63400", ["text"] = "Allocates Chakra of Elements", ["type"] = "explicit", }, - [1109] = { + { ["id"] = "explicit.stat_2954116742|25362", ["text"] = "Allocates Chakra of Impact", ["type"] = "explicit", }, - [1110] = { + { ["id"] = "explicit.stat_2954116742|35031", ["text"] = "Allocates Chakra of Life", ["type"] = "explicit", }, - [1111] = { + { ["id"] = "explicit.stat_2954116742|28963", ["text"] = "Allocates Chakra of Rhythm", ["type"] = "explicit", }, - [1112] = { + { ["id"] = "explicit.stat_2954116742|42347", ["text"] = "Allocates Chakra of Sight", ["type"] = "explicit", }, - [1113] = { + { ["id"] = "explicit.stat_2954116742|42760", ["text"] = "Allocates Chakra of Stability", ["type"] = "explicit", }, - [1114] = { + { ["id"] = "explicit.stat_2954116742|29306", ["text"] = "Allocates Chakra of Thought", ["type"] = "explicit", }, - [1115] = { + { ["id"] = "explicit.stat_2954116742|5410", ["text"] = "Allocates Channelled Heritage", ["type"] = "explicit", }, - [1116] = { + { ["id"] = "explicit.stat_2954116742|23427", ["text"] = "Allocates Chilled to the Bone", ["type"] = "explicit", }, - [1117] = { + { ["id"] = "explicit.stat_2954116742|5686", ["text"] = "Allocates Chillproof", ["type"] = "explicit", }, - [1118] = { + { ["id"] = "explicit.stat_2954116742|39990", ["text"] = "Allocates Chronomancy", ["type"] = "explicit", }, - [1119] = { + { ["id"] = "explicit.stat_2954116742|21213", ["text"] = "Allocates Cirel of Tarth's Light", ["type"] = "explicit", }, - [1120] = { + { ["id"] = "explicit.stat_2954116742|57805", ["text"] = "Allocates Clear Space", ["type"] = "explicit", }, - [1121] = { + { ["id"] = "explicit.stat_2954116742|4627", ["text"] = "Allocates Climate Change", ["type"] = "explicit", }, - [1122] = { + { ["id"] = "explicit.stat_2954116742|38479", ["text"] = "Allocates Close Confines", ["type"] = "explicit", }, - [1123] = { + { ["id"] = "explicit.stat_2954116742|29514", ["text"] = "Allocates Cluster Bombs", ["type"] = "explicit", }, - [1124] = { + { ["id"] = "explicit.stat_2954116742|44330", ["text"] = "Allocates Coated Arms", ["type"] = "explicit", }, - [1125] = { + { ["id"] = "explicit.stat_2954116742|35618", ["text"] = "Allocates Cold Coat", ["type"] = "explicit", }, - [1126] = { + { ["id"] = "explicit.stat_2954116742|26518", ["text"] = "Allocates Cold Nature", ["type"] = "explicit", }, - [1127] = { + { ["id"] = "explicit.stat_2954116742|47363", ["text"] = "Allocates Colossal Weapon", ["type"] = "explicit", }, - [1128] = { + { ["id"] = "explicit.stat_2954116742|28044", ["text"] = "Allocates Coming Calamity", ["type"] = "explicit", }, - [1129] = { + { ["id"] = "explicit.stat_2954116742|42660", ["text"] = "Allocates Commanding Rage", ["type"] = "explicit", }, - [1130] = { + { + ["id"] = "explicit.stat_2954116742|34617", + ["text"] = "Allocates Conall the Hunted", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_2954116742|36931", ["text"] = "Allocates Concussive Attack", ["type"] = "explicit", }, - [1131] = { + { ["id"] = "explicit.stat_2954116742|52257", ["text"] = "Allocates Conductive Embrace", ["type"] = "explicit", }, - [1132] = { + { ["id"] = "explicit.stat_2954116742|34300", ["text"] = "Allocates Conservative Casting", ["type"] = "explicit", }, - [1133] = { + { ["id"] = "explicit.stat_2954116742|15030", ["text"] = "Allocates Consistent Intake", ["type"] = "explicit", }, - [1134] = { + { ["id"] = "explicit.stat_2954116742|54640", ["text"] = "Allocates Constricting", ["type"] = "explicit", }, - [1135] = { + { ["id"] = "explicit.stat_2954116742|30748", ["text"] = "Allocates Controlled Chaos", ["type"] = "explicit", }, - [1136] = { + { ["id"] = "explicit.stat_2954116742|13823", ["text"] = "Allocates Controlling Magic", ["type"] = "explicit", }, - [1137] = { + { ["id"] = "explicit.stat_2954116742|36623", ["text"] = "Allocates Convalescence", ["type"] = "explicit", }, - [1138] = { + { ["id"] = "explicit.stat_2954116742|56776", ["text"] = "Allocates Cooked", ["type"] = "explicit", }, - [1139] = { + { ["id"] = "explicit.stat_2954116742|6133", ["text"] = "Allocates Core of the Guardian", ["type"] = "explicit", }, - [1140] = { + { ["id"] = "explicit.stat_2954116742|27761", ["text"] = "Allocates Counterstancing", ["type"] = "explicit", }, - [1141] = { + { ["id"] = "explicit.stat_2954116742|50687", ["text"] = "Allocates Coursing Energy", ["type"] = "explicit", }, - [1142] = { + { ["id"] = "explicit.stat_2954116742|63451", ["text"] = "Allocates Cranial Impact", ["type"] = "explicit", }, - [1143] = { + { ["id"] = "explicit.stat_2954116742|9323", ["text"] = "Allocates Craving Slaughter", ["type"] = "explicit", }, - [1144] = { + { ["id"] = "explicit.stat_2954116742|20511", ["text"] = "Allocates Cremating Cries", ["type"] = "explicit", }, - [1145] = { + { ["id"] = "explicit.stat_2954116742|19715", ["text"] = "Allocates Cremation", ["type"] = "explicit", }, - [1146] = { + { ["id"] = "explicit.stat_2954116742|43677", ["text"] = "Allocates Crippling Toxins", ["type"] = "explicit", }, - [1147] = { + { ["id"] = "explicit.stat_2954116742|57204", ["text"] = "Allocates Critical Exploit", ["type"] = "explicit", }, - [1148] = { + { ["id"] = "explicit.stat_2954116742|45488", ["text"] = "Allocates Cross Strike", ["type"] = "explicit", }, - [1149] = { + { ["id"] = "explicit.stat_2954116742|42981", ["text"] = "Allocates Cruel Methods", ["type"] = "explicit", }, - [1150] = { + { ["id"] = "explicit.stat_2954116742|35739", ["text"] = "Allocates Crushing Judgement", ["type"] = "explicit", }, - [1151] = { + { ["id"] = "explicit.stat_2954116742|18505", ["text"] = "Allocates Crushing Verdict", ["type"] = "explicit", }, - [1152] = { + { ["id"] = "explicit.stat_2954116742|38895", ["text"] = "Allocates Crystal Elixir", ["type"] = "explicit", }, - [1153] = { + { ["id"] = "explicit.stat_2954116742|61026", ["text"] = "Allocates Crystalline Flesh", ["type"] = "explicit", }, - [1154] = { + { ["id"] = "explicit.stat_2954116742|32151", ["text"] = "Allocates Crystalline Resistance", ["type"] = "explicit", }, - [1155] = { + { ["id"] = "explicit.stat_2954116742|5332", ["text"] = "Allocates Crystallised Immunities", ["type"] = "explicit", }, - [1156] = { + { ["id"] = "explicit.stat_2954116742|36341", ["text"] = "Allocates Cull the Hordes", ["type"] = "explicit", }, - [1157] = { + { ["id"] = "explicit.stat_2954116742|13708", ["text"] = "Allocates Curved Weapon", ["type"] = "explicit", }, - [1158] = { + { ["id"] = "explicit.stat_2954116742|32507", ["text"] = "Allocates Cut to the Bone", ["type"] = "explicit", }, - [1159] = { + { ["id"] = "explicit.stat_2954116742|7128", ["text"] = "Allocates Dangerous Blossom", ["type"] = "explicit", }, - [1160] = { + { ["id"] = "explicit.stat_2954116742|63074", ["text"] = "Allocates Dark Entries", ["type"] = "explicit", }, - [1161] = { + { ["id"] = "explicit.stat_2954116742|20495", ["text"] = "Allocates Dark Entropy", ["type"] = "explicit", }, - [1162] = { + { ["id"] = "explicit.stat_2954116742|10500", ["text"] = "Allocates Dazing Blocks", ["type"] = "explicit", }, - [1163] = { + { ["id"] = "explicit.stat_2954116742|30523", ["text"] = "Allocates Dead can Dance", ["type"] = "explicit", }, - [1164] = { + { ["id"] = "explicit.stat_2954116742|49618", ["text"] = "Allocates Deadly Flourish", ["type"] = "explicit", }, - [1165] = { + { ["id"] = "explicit.stat_2954116742|13724", ["text"] = "Allocates Deadly Force", ["type"] = "explicit", }, - [1166] = { + { ["id"] = "explicit.stat_2954116742|29288", ["text"] = "Allocates Deadly Invocations", ["type"] = "explicit", }, - [1167] = { + { ["id"] = "explicit.stat_2954116742|38053", ["text"] = "Allocates Deafening Cries", ["type"] = "explicit", }, - [1168] = { + { ["id"] = "explicit.stat_2954116742|8904", ["text"] = "Allocates Death from Afar", ["type"] = "explicit", }, - [1169] = { + { ["id"] = "explicit.stat_2954116742|17664", ["text"] = "Allocates Decisive Retreat", ["type"] = "explicit", }, - [1170] = { + { ["id"] = "explicit.stat_2954116742|5594", ["text"] = "Allocates Decrepifying Curse", ["type"] = "explicit", }, - [1171] = { + { ["id"] = "explicit.stat_2954116742|16142", ["text"] = "Allocates Deep Freeze", ["type"] = "explicit", }, - [1172] = { + { ["id"] = "explicit.stat_2954116742|40166", ["text"] = "Allocates Deep Trance", ["type"] = "explicit", }, - [1173] = { + { ["id"] = "explicit.stat_2954116742|33216", ["text"] = "Allocates Deep Wounds", ["type"] = "explicit", }, - [1174] = { + { ["id"] = "explicit.stat_2954116742|45612", ["text"] = "Allocates Defensive Reflexes", ["type"] = "explicit", }, - [1175] = { + { ["id"] = "explicit.stat_2954116742|10681", ["text"] = "Allocates Defensive Stance", ["type"] = "explicit", }, - [1176] = { + { ["id"] = "explicit.stat_2954116742|32354", ["text"] = "Allocates Defiance", ["type"] = "explicit", }, - [1177] = { + { ["id"] = "explicit.stat_2954116742|45329", ["text"] = "Allocates Delayed Danger", ["type"] = "explicit", }, - [1178] = { + { ["id"] = "explicit.stat_2954116742|38570", ["text"] = "Allocates Demolitionist", ["type"] = "explicit", }, - [1179] = { + { ["id"] = "explicit.stat_2954116742|4931", ["text"] = "Allocates Dependable Ward", ["type"] = "explicit", }, - [1180] = { + { ["id"] = "explicit.stat_2954116742|28267", ["text"] = "Allocates Desensitisation", ["type"] = "explicit", }, - [1181] = { + { ["id"] = "explicit.stat_2954116742|37967", ["text"] = "Allocates Desert's Scorn", ["type"] = "explicit", }, - [1182] = { + { ["id"] = "explicit.stat_2954116742|56616", ["text"] = "Allocates Desperate Times", ["type"] = "explicit", }, - [1183] = { + { ["id"] = "explicit.stat_2954116742|14343", ["text"] = "Allocates Deterioration", ["type"] = "explicit", }, - [1184] = { + { ["id"] = "explicit.stat_2954116742|24753", ["text"] = "Allocates Determined Precision", ["type"] = "explicit", }, - [1185] = { + { ["id"] = "explicit.stat_2954116742|48006", ["text"] = "Allocates Devastation", ["type"] = "explicit", }, - [1186] = { + { ["id"] = "explicit.stat_2954116742|2344", ["text"] = "Allocates Dimensional Weakspot", ["type"] = "explicit", }, - [1187] = { + { ["id"] = "explicit.stat_2954116742|24483", ["text"] = "Allocates Direct Approach", ["type"] = "explicit", }, - [1188] = { + { ["id"] = "explicit.stat_2954116742|44573", ["text"] = "Allocates Disciplined Training", ["type"] = "explicit", }, - [1189] = { + { ["id"] = "explicit.stat_2954116742|38459", ["text"] = "Allocates Disorientation", ["type"] = "explicit", }, - [1190] = { + { ["id"] = "explicit.stat_2954116742|58939", ["text"] = "Allocates Dispatch Foes", ["type"] = "explicit", }, - [1191] = { + { ["id"] = "explicit.stat_2954116742|52245", ["text"] = "Allocates Distant Dreamer", ["type"] = "explicit", }, - [1192] = { + { ["id"] = "explicit.stat_2954116742|32721", ["text"] = "Allocates Distracted Target", ["type"] = "explicit", }, - [1193] = { + { ["id"] = "explicit.stat_2954116742|44765", ["text"] = "Allocates Distracting Presence", ["type"] = "explicit", }, - [1194] = { + { ["id"] = "explicit.stat_2954116742|47514", ["text"] = "Allocates Dizzying Hits", ["type"] = "explicit", }, - [1195] = { + { ["id"] = "explicit.stat_2954116742|1420", ["text"] = "Allocates Dizzying Sweep", ["type"] = "explicit", }, - [1196] = { + { ["id"] = "explicit.stat_2954116742|26214", ["text"] = "Allocates Dominion", ["type"] = "explicit", }, - [1197] = { + { + ["id"] = "explicit.stat_2954116742|58894", + ["text"] = "Allocates Dominus' Providence", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_2954116742|57190", ["text"] = "Allocates Doomsayer", ["type"] = "explicit", }, - [1198] = { + { ["id"] = "explicit.stat_2954116742|1502", ["text"] = "Allocates Draiocht Cleansing", ["type"] = "explicit", }, - [1199] = { + { ["id"] = "explicit.stat_2954116742|32858", ["text"] = "Allocates Dread Engineer's Concoction", ["type"] = "explicit", }, - [1200] = { + { ["id"] = "explicit.stat_2954116742|11838", ["text"] = "Allocates Dreamcatcher", ["type"] = "explicit", }, - [1201] = { + { ["id"] = "explicit.stat_2954116742|40073", ["text"] = "Allocates Drenched", ["type"] = "explicit", }, - [1202] = { + { ["id"] = "explicit.stat_2954116742|3688", ["text"] = "Allocates Dynamism", ["type"] = "explicit", }, - [1203] = { + { ["id"] = "explicit.stat_2954116742|10315", ["text"] = "Allocates Easy Going", ["type"] = "explicit", }, - [1204] = { + { ["id"] = "explicit.stat_2954116742|64525", ["text"] = "Allocates Easy Target", ["type"] = "explicit", }, - [1205] = { + { ["id"] = "explicit.stat_2954116742|60692", ["text"] = "Allocates Echoing Flames", ["type"] = "explicit", }, - [1206] = { + { ["id"] = "explicit.stat_2954116742|5257", ["text"] = "Allocates Echoing Frost", ["type"] = "explicit", }, - [1207] = { + { ["id"] = "explicit.stat_2954116742|7302", ["text"] = "Allocates Echoing Pulse", ["type"] = "explicit", }, - [1208] = { + { ["id"] = "explicit.stat_2954116742|5703", ["text"] = "Allocates Echoing Thunder", ["type"] = "explicit", }, - [1209] = { + { ["id"] = "explicit.stat_2954116742|33093", ["text"] = "Allocates Effervescent", ["type"] = "explicit", }, - [1210] = { + { ["id"] = "explicit.stat_2954116742|46692", ["text"] = "Allocates Efficient Alchemy", ["type"] = "explicit", }, - [1211] = { + { ["id"] = "explicit.stat_2954116742|16790", ["text"] = "Allocates Efficient Casting", ["type"] = "explicit", }, - [1212] = { + { ["id"] = "explicit.stat_2954116742|30408", ["text"] = "Allocates Efficient Contraptions", ["type"] = "explicit", }, - [1213] = { + { ["id"] = "explicit.stat_2954116742|42245", ["text"] = "Allocates Efficient Inscriptions", ["type"] = "explicit", }, - [1214] = { + { ["id"] = "explicit.stat_2954116742|94", ["text"] = "Allocates Efficient Killing", ["type"] = "explicit", }, - [1215] = { + { ["id"] = "explicit.stat_2954116742|53683", ["text"] = "Allocates Efficient Loading", ["type"] = "explicit", }, - [1216] = { + { ["id"] = "explicit.stat_2954116742|3894", ["text"] = "Allocates Eldritch Will", ["type"] = "explicit", }, - [1217] = { + { ["id"] = "explicit.stat_2954116742|55708", ["text"] = "Allocates Electric Amplification", ["type"] = "explicit", }, - [1218] = { + { ["id"] = "explicit.stat_2954116742|56988", ["text"] = "Allocates Electric Blood", ["type"] = "explicit", }, - [1219] = { + { ["id"] = "explicit.stat_2954116742|30546", ["text"] = "Allocates Electrified Claw", ["type"] = "explicit", }, - [1220] = { + { ["id"] = "explicit.stat_2954116742|56767", ["text"] = "Allocates Electrifying Daze", ["type"] = "explicit", }, - [1221] = { + { ["id"] = "explicit.stat_2954116742|26291", ["text"] = "Allocates Electrifying Nature", ["type"] = "explicit", }, - [1222] = { + { ["id"] = "explicit.stat_2954116742|7275", ["text"] = "Allocates Electrocuting Exposure", ["type"] = "explicit", }, - [1223] = { + { ["id"] = "explicit.stat_2954116742|36364", ["text"] = "Allocates Electrocution", ["type"] = "explicit", }, - [1224] = { + { ["id"] = "explicit.stat_2954116742|43090", ["text"] = "Allocates Electrotherapy", ["type"] = "explicit", }, - [1225] = { + { ["id"] = "explicit.stat_2954116742|59781", ["text"] = "Allocates Embodiment of Death", ["type"] = "explicit", }, - [1226] = { + { ["id"] = "explicit.stat_2954116742|10612", ["text"] = "Allocates Embodiment of Frost", ["type"] = "explicit", }, - [1227] = { + { ["id"] = "explicit.stat_2954116742|15991", ["text"] = "Allocates Embodiment of Lightning", ["type"] = "explicit", }, - [1228] = { + { ["id"] = "explicit.stat_2954116742|43423", ["text"] = "Allocates Emboldened Avatar", ["type"] = "explicit", }, - [1229] = { + { ["id"] = "explicit.stat_2954116742|10727", ["text"] = "Allocates Emboldening Casts", ["type"] = "explicit", }, - [1230] = { + { ["id"] = "explicit.stat_2954116742|34553", ["text"] = "Allocates Emboldening Lead", ["type"] = "explicit", }, - [1231] = { + { ["id"] = "explicit.stat_2954116742|9928", ["text"] = "Allocates Embracing Frost", ["type"] = "explicit", }, - [1232] = { + { ["id"] = "explicit.stat_2954116742|8782", ["text"] = "Allocates Empowering Infusions", ["type"] = "explicit", }, - [1233] = { + { ["id"] = "explicit.stat_2954116742|8397", ["text"] = "Allocates Empowering Remains", ["type"] = "explicit", }, - [1234] = { + { ["id"] = "explicit.stat_2954116742|40985", ["text"] = "Allocates Empowering Remnants", ["type"] = "explicit", }, - [1235] = { + { ["id"] = "explicit.stat_2954116742|7542", ["text"] = "Allocates Encompassing Domain", ["type"] = "explicit", }, - [1236] = { + { ["id"] = "explicit.stat_2954116742|19955", ["text"] = "Allocates Endless Blizzard", ["type"] = "explicit", }, - [1237] = { + { ["id"] = "explicit.stat_2954116742|8273", ["text"] = "Allocates Endless Circuit", ["type"] = "explicit", }, - [1238] = { + { ["id"] = "explicit.stat_2954116742|5663", ["text"] = "Allocates Endurance", ["type"] = "explicit", }, - [1239] = { + { ["id"] = "explicit.stat_2954116742|15443", ["text"] = "Allocates Endured Suffering", ["type"] = "explicit", }, - [1240] = { + { ["id"] = "explicit.stat_2954116742|59070", ["text"] = "Allocates Enduring Archon", ["type"] = "explicit", }, - [1241] = { + { ["id"] = "explicit.stat_2954116742|42103", ["text"] = "Allocates Enduring Deflection", ["type"] = "explicit", }, - [1242] = { + { ["id"] = "explicit.stat_2954116742|40399", ["text"] = "Allocates Energise", ["type"] = "explicit", }, - [1243] = { + { ["id"] = "explicit.stat_2954116742|43633", ["text"] = "Allocates Energising Archon", ["type"] = "explicit", }, - [1244] = { + { ["id"] = "explicit.stat_2954116742|34541", ["text"] = "Allocates Energising Deflection", ["type"] = "explicit", }, - [1245] = { + { ["id"] = "explicit.stat_2954116742|2814", ["text"] = "Allocates Engineered Blaze", ["type"] = "explicit", }, - [1246] = { + { ["id"] = "explicit.stat_2954116742|44299", ["text"] = "Allocates Enhanced Barrier", ["type"] = "explicit", }, - [1247] = { + { ["id"] = "explicit.stat_2954116742|51707", ["text"] = "Allocates Enhanced Reflexes", ["type"] = "explicit", }, - [1248] = { + { ["id"] = "explicit.stat_2954116742|56237", ["text"] = "Allocates Enhancing Attacks", ["type"] = "explicit", }, - [1249] = { + { ["id"] = "explicit.stat_2954116742|30720", ["text"] = "Allocates Entropic Incarnation", ["type"] = "explicit", }, - [1250] = { + { ["id"] = "explicit.stat_2954116742|65243", ["text"] = "Allocates Enveloping Presence", ["type"] = "explicit", }, - [1251] = { + { ["id"] = "explicit.stat_2954116742|61404", ["text"] = "Allocates Equilibrium", ["type"] = "explicit", }, - [1252] = { + { ["id"] = "explicit.stat_2954116742|52684", ["text"] = "Allocates Eroding Chains", ["type"] = "explicit", }, - [1253] = { + { ["id"] = "explicit.stat_2954116742|20032", ["text"] = "Allocates Erraticism", ["type"] = "explicit", }, - [1254] = { + { ["id"] = "explicit.stat_2954116742|42032", ["text"] = "Allocates Escalating Mayhem", ["type"] = "explicit", }, - [1255] = { + { ["id"] = "explicit.stat_2954116742|38628", ["text"] = "Allocates Escalating Toxins", ["type"] = "explicit", }, - [1256] = { + { ["id"] = "explicit.stat_2954116742|9187", ["text"] = "Allocates Escalation", ["type"] = "explicit", }, - [1257] = { + { ["id"] = "explicit.stat_2954116742|5227", ["text"] = "Allocates Escape Strategy", ["type"] = "explicit", }, - [1258] = { + { ["id"] = "explicit.stat_2954116742|17854", ["text"] = "Allocates Escape Velocity", ["type"] = "explicit", }, - [1259] = { + { ["id"] = "explicit.stat_2954116742|42077", ["text"] = "Allocates Essence Infusion", ["type"] = "explicit", }, - [1260] = { + { ["id"] = "explicit.stat_2954116742|16256", ["text"] = "Allocates Ether Flow", ["type"] = "explicit", }, - [1261] = { + { ["id"] = "explicit.stat_2954116742|52191", ["text"] = "Allocates Event Horizon", ["type"] = "explicit", }, - [1262] = { + { ["id"] = "explicit.stat_2954116742|13524", ["text"] = "Allocates Everlasting Glory", ["type"] = "explicit", }, - [1263] = { + { ["id"] = "explicit.stat_2954116742|24087", ["text"] = "Allocates Everlasting Infusions", ["type"] = "explicit", }, - [1264] = { + { ["id"] = "explicit.stat_2954116742|41753", ["text"] = "Allocates Evocational Practitioner", ["type"] = "explicit", }, - [1265] = { + { ["id"] = "explicit.stat_2954116742|47420", ["text"] = "Allocates Expendable Army", ["type"] = "explicit", }, - [1266] = { + { ["id"] = "explicit.stat_2954116742|39050", ["text"] = "Allocates Exploit", ["type"] = "explicit", }, - [1267] = { + { ["id"] = "explicit.stat_2954116742|48581", ["text"] = "Allocates Exploit the Elements", ["type"] = "explicit", }, - [1268] = { + { ["id"] = "explicit.stat_2954116742|36333", ["text"] = "Allocates Explosive Empowerment", ["type"] = "explicit", }, - [1269] = { + { ["id"] = "explicit.stat_2954116742|21206", ["text"] = "Allocates Explosive Impact", ["type"] = "explicit", }, - [1270] = { + { ["id"] = "explicit.stat_2954116742|55835", ["text"] = "Allocates Exposed to the Cosmos", ["type"] = "explicit", }, - [1271] = { + { ["id"] = "explicit.stat_2954116742|10423", ["text"] = "Allocates Exposed to the Inferno", ["type"] = "explicit", }, - [1272] = { + { ["id"] = "explicit.stat_2954116742|40990", ["text"] = "Allocates Exposed to the Storm", ["type"] = "explicit", }, - [1273] = { + { ["id"] = "explicit.stat_2954116742|56112", ["text"] = "Allocates Extinguishing Exhalation", ["type"] = "explicit", }, - [1274] = { + { ["id"] = "explicit.stat_2954116742|60034", ["text"] = "Allocates Falcon Dive", ["type"] = "explicit", }, - [1275] = { + { ["id"] = "explicit.stat_2954116742|31172", ["text"] = "Allocates Falcon Technique", ["type"] = "explicit", }, - [1276] = { + { ["id"] = "explicit.stat_2954116742|60464", ["text"] = "Allocates Fan the Flames", ["type"] = "explicit", }, - [1277] = { + { ["id"] = "explicit.stat_2954116742|35477", ["text"] = "Allocates Far Sighted", ["type"] = "explicit", }, - [1278] = { + { ["id"] = "explicit.stat_2954116742|55", ["text"] = "Allocates Fast Acting Toxins", ["type"] = "explicit", }, - [1279] = { + { ["id"] = "explicit.stat_2954116742|8827", ["text"] = "Allocates Fast Metabolism", ["type"] = "explicit", }, - [1280] = { + { ["id"] = "explicit.stat_2954116742|3921", ["text"] = "Allocates Fate Finding", ["type"] = "explicit", }, - [1281] = { + { ["id"] = "explicit.stat_2954116742|59214", ["text"] = "Allocates Fated End", ["type"] = "explicit", }, - [1282] = { + { ["id"] = "explicit.stat_2954116742|19546", ["text"] = "Allocates Favourable Odds", ["type"] = "explicit", }, - [1283] = { + { ["id"] = "explicit.stat_2954116742|22532", ["text"] = "Allocates Fearful Paralysis", ["type"] = "explicit", }, - [1284] = { + { ["id"] = "explicit.stat_2954116742|60764", ["text"] = "Allocates Feathered Fletching", ["type"] = "explicit", }, - [1285] = { + { ["id"] = "explicit.stat_2954116742|9968", ["text"] = "Allocates Feel the Earth", ["type"] = "explicit", }, - [1286] = { + { ["id"] = "explicit.stat_2954116742|21537", ["text"] = "Allocates Fervour", ["type"] = "explicit", }, - [1287] = { + { ["id"] = "explicit.stat_2954116742|2999", ["text"] = "Allocates Final Barrage", ["type"] = "explicit", }, - [1288] = { + { ["id"] = "explicit.stat_2954116742|51867", ["text"] = "Allocates Finality", ["type"] = "explicit", }, - [1289] = { + { ["id"] = "explicit.stat_2954116742|38969", ["text"] = "Allocates Finesse", ["type"] = "explicit", }, - [1290] = { + { ["id"] = "explicit.stat_2954116742|29899", ["text"] = "Allocates Finish Them", ["type"] = "explicit", }, - [1291] = { + { ["id"] = "explicit.stat_2954116742|45013", ["text"] = "Allocates Finishing Blows", ["type"] = "explicit", }, - [1292] = { + { ["id"] = "explicit.stat_2954116742|54911", ["text"] = "Allocates Firestarter", ["type"] = "explicit", }, - [1293] = { + { ["id"] = "explicit.stat_2954116742|29527", ["text"] = "Allocates First Approach", ["type"] = "explicit", }, - [1294] = { + { ["id"] = "explicit.stat_2954116742|49356", ["text"] = "Allocates First Principle of the Hollow", ["type"] = "explicit", }, - [1295] = { + { ["id"] = "explicit.stat_2954116742|59657", ["text"] = "Allocates First Teachings of the Keeper", ["type"] = "explicit", }, - [1296] = { + { ["id"] = "explicit.stat_2954116742|62963", ["text"] = "Allocates Flamewalker", ["type"] = "explicit", }, - [1297] = { + { ["id"] = "explicit.stat_2954116742|43584", ["text"] = "Allocates Flare", ["type"] = "explicit", }, - [1298] = { + { ["id"] = "explicit.stat_2954116742|12337", ["text"] = "Allocates Flash Storm", ["type"] = "explicit", }, - [1299] = { + { ["id"] = "explicit.stat_2954116742|64851", ["text"] = "Allocates Flashy Parrying", ["type"] = "explicit", }, - [1300] = { + { ["id"] = "explicit.stat_2954116742|21164", ["text"] = "Allocates Fleshcrafting", ["type"] = "explicit", }, - [1301] = { + { ["id"] = "explicit.stat_2954116742|4985", ["text"] = "Allocates Flip the Script", ["type"] = "explicit", }, - [1302] = { + { ["id"] = "explicit.stat_2954116742|59438", ["text"] = "Allocates Flow of Life", ["type"] = "explicit", }, - [1303] = { + { ["id"] = "explicit.stat_2954116742|32128", ["text"] = "Allocates Flow of Time", ["type"] = "explicit", }, - [1304] = { + { ["id"] = "explicit.stat_2954116742|33852", ["text"] = "Allocates Flurry", ["type"] = "explicit", }, - [1305] = { + { ["id"] = "explicit.stat_2954116742|33730", ["text"] = "Allocates Focused Channel", ["type"] = "explicit", }, - [1306] = { + { ["id"] = "explicit.stat_2954116742|9227", ["text"] = "Allocates Focused Thrust", ["type"] = "explicit", }, - [1307] = { + { ["id"] = "explicit.stat_2954116742|20677", ["text"] = "Allocates For the Jugular", ["type"] = "explicit", }, - [1308] = { + { ["id"] = "explicit.stat_2954116742|3985", ["text"] = "Allocates Forces of Nature", ["type"] = "explicit", }, - [1309] = { + { ["id"] = "explicit.stat_2954116742|48103", ["text"] = "Allocates Forcewave", ["type"] = "explicit", }, - [1310] = { + { ["id"] = "explicit.stat_2954116742|55568", ["text"] = "Allocates Forthcoming", ["type"] = "explicit", }, - [1311] = { + { ["id"] = "explicit.stat_2954116742|23940", ["text"] = "Allocates Fortified Aegis", ["type"] = "explicit", }, - [1312] = { + { ["id"] = "explicit.stat_2954116742|53607", ["text"] = "Allocates Fortified Location", ["type"] = "explicit", }, - [1313] = { + { ["id"] = "explicit.stat_2954116742|35855", ["text"] = "Allocates Fortifying Blood", ["type"] = "explicit", }, - [1314] = { + { ["id"] = "explicit.stat_2954116742|59208", ["text"] = "Allocates Frantic Fighter", ["type"] = "explicit", }, - [1315] = { + { + ["id"] = "explicit.stat_2954116742|39911", + ["text"] = "Allocates Frantic Reach", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_2954116742|28441", ["text"] = "Allocates Frantic Swings", ["type"] = "explicit", }, - [1316] = { + { ["id"] = "explicit.stat_2954116742|32301", ["text"] = "Allocates Frazzled", ["type"] = "explicit", }, - [1317] = { + { ["id"] = "explicit.stat_2954116742|51606", ["text"] = "Allocates Freedom of Movement", ["type"] = "explicit", }, - [1318] = { + { ["id"] = "explicit.stat_2954116742|40270", ["text"] = "Allocates Frenetic", ["type"] = "explicit", }, - [1319] = { + { ["id"] = "explicit.stat_2954116742|45751", ["text"] = "Allocates Frightening Shield", ["type"] = "explicit", }, - [1320] = { + { ["id"] = "explicit.stat_2954116742|48699", ["text"] = "Allocates Frostwalker", ["type"] = "explicit", }, - [1321] = { + { ["id"] = "explicit.stat_2954116742|20289", ["text"] = "Allocates Frozen Claw", ["type"] = "explicit", }, - [1322] = { + { ["id"] = "explicit.stat_2954116742|50715", ["text"] = "Allocates Frozen Limit", ["type"] = "explicit", }, - [1323] = { + { ["id"] = "explicit.stat_2954116742|37543", ["text"] = "Allocates Full Recovery", ["type"] = "explicit", }, - [1324] = { + { ["id"] = "explicit.stat_2954116742|33887", ["text"] = "Allocates Full Salvo", ["type"] = "explicit", }, - [1325] = { + { ["id"] = "explicit.stat_2954116742|24630", ["text"] = "Allocates Fulmination", ["type"] = "explicit", }, - [1326] = { + { ["id"] = "explicit.stat_2954116742|32976", ["text"] = "Allocates Gem Enthusiast", ["type"] = "explicit", }, - [1327] = { + { ["id"] = "explicit.stat_2954116742|27875", ["text"] = "Allocates General Electric", ["type"] = "explicit", }, - [1328] = { + { ["id"] = "explicit.stat_2954116742|17150", ["text"] = "Allocates General's Bindings", ["type"] = "explicit", }, - [1329] = { + { ["id"] = "explicit.stat_2954116742|9020", ["text"] = "Allocates Giantslayer", ["type"] = "explicit", }, - [1330] = { + { ["id"] = "explicit.stat_2954116742|46365", ["text"] = "Allocates Gigantic Following", ["type"] = "explicit", }, - [1331] = { + { ["id"] = "explicit.stat_2954116742|41972", ["text"] = "Allocates Glaciation", ["type"] = "explicit", }, - [1332] = { + { ["id"] = "explicit.stat_2954116742|56488", ["text"] = "Allocates Glancing Deflection", ["type"] = "explicit", }, - [1333] = { + { ["id"] = "explicit.stat_2954116742|23939", ["text"] = "Allocates Glazed Flesh", ["type"] = "explicit", }, - [1334] = { + { ["id"] = "explicit.stat_2954116742|63031", ["text"] = "Allocates Glorious Anticipation", ["type"] = "explicit", }, - [1335] = { + { ["id"] = "explicit.stat_2954116742|47316", ["text"] = "Allocates Goring", ["type"] = "explicit", }, - [1336] = { + { ["id"] = "explicit.stat_2954116742|27704", ["text"] = "Allocates Grace of the Ancestors", ["type"] = "explicit", }, - [1337] = { + { ["id"] = "explicit.stat_2954116742|41905", ["text"] = "Allocates Gravedigger", ["type"] = "explicit", }, - [1338] = { + { ["id"] = "explicit.stat_2954116742|27687", ["text"] = "Allocates Greatest Defence", ["type"] = "explicit", }, - [1339] = { + { ["id"] = "explicit.stat_2954116742|58714", ["text"] = "Allocates Grenadier", ["type"] = "explicit", }, - [1340] = { + { ["id"] = "explicit.stat_2954116742|31175", ["text"] = "Allocates Grip of Evil", ["type"] = "explicit", }, - [1341] = { + { ["id"] = "explicit.stat_2954116742|20416", ["text"] = "Allocates Grit", ["type"] = "explicit", }, - [1342] = { + { ["id"] = "explicit.stat_2954116742|13844", ["text"] = "Allocates Growing Peril", ["type"] = "explicit", }, - [1343] = { + { ["id"] = "explicit.stat_2954116742|14945", ["text"] = "Allocates Growing Swarm", ["type"] = "explicit", }, - [1344] = { + { ["id"] = "explicit.stat_2954116742|4331", ["text"] = "Allocates Guided Hand", ["type"] = "explicit", }, - [1345] = { + { ["id"] = "explicit.stat_2954116742|46499", ["text"] = "Allocates Guts", ["type"] = "explicit", }, - [1346] = { + { ["id"] = "explicit.stat_2954116742|29762", ["text"] = "Allocates Guttural Roar", ["type"] = "explicit", }, - [1347] = { + { ["id"] = "explicit.stat_2954116742|33229", ["text"] = "Allocates Haemorrhaging Cuts", ["type"] = "explicit", }, - [1348] = { + { ["id"] = "explicit.stat_2954116742|44974", ["text"] = "Allocates Hail", ["type"] = "explicit", }, - [1349] = { + { ["id"] = "explicit.stat_2954116742|15374", ["text"] = "Allocates Hale Heart", ["type"] = "explicit", }, - [1350] = { + { ["id"] = "explicit.stat_2954116742|52803", ["text"] = "Allocates Hale Traveller", ["type"] = "explicit", }, - [1351] = { + { ["id"] = "explicit.stat_2954116742|34531", ["text"] = "Allocates Hallowed", ["type"] = "explicit", }, - [1352] = { + { ["id"] = "explicit.stat_2954116742|24438", ["text"] = "Allocates Hardened Wood", ["type"] = "explicit", }, - [1353] = { + { ["id"] = "explicit.stat_2954116742|40480", ["text"] = "Allocates Harmonic Generator", ["type"] = "explicit", }, - [1354] = { + { ["id"] = "explicit.stat_2954116742|12611", ["text"] = "Allocates Harness the Elements", ["type"] = "explicit", }, - [1355] = { + { ["id"] = "explicit.stat_2954116742|26331", ["text"] = "Allocates Harsh Winter", ["type"] = "explicit", }, - [1356] = { + { ["id"] = "explicit.stat_2954116742|44293", ["text"] = "Allocates Hastening Barrier", ["type"] = "explicit", }, - [1357] = { + { ["id"] = "explicit.stat_2954116742|48215", ["text"] = "Allocates Headshot", ["type"] = "explicit", }, - [1358] = { + { ["id"] = "explicit.stat_2954116742|35966", ["text"] = "Allocates Heart Tissue", ["type"] = "explicit", }, - [1359] = { + { ["id"] = "explicit.stat_2954116742|13407", ["text"] = "Allocates Heartbreaking", ["type"] = "explicit", }, - [1360] = { + { ["id"] = "explicit.stat_2954116742|38537", ["text"] = "Allocates Heartstopping", ["type"] = "explicit", }, - [1361] = { + { ["id"] = "explicit.stat_2954116742|9896", ["text"] = "Allocates Heartstopping Presence", ["type"] = "explicit", }, - [1362] = { + { ["id"] = "explicit.stat_2954116742|372", ["text"] = "Allocates Heatproof", ["type"] = "explicit", }, - [1363] = { + { ["id"] = "explicit.stat_2954116742|11826", ["text"] = "Allocates Heavy Ammunition", ["type"] = "explicit", }, - [1364] = { + { ["id"] = "explicit.stat_2954116742|59589", ["text"] = "Allocates Heavy Armour", ["type"] = "explicit", }, - [1365] = { + { ["id"] = "explicit.stat_2954116742|27491", ["text"] = "Allocates Heavy Buffer", ["type"] = "explicit", }, - [1366] = { + { ["id"] = "explicit.stat_2954116742|56997", ["text"] = "Allocates Heavy Contact", ["type"] = "explicit", }, - [1367] = { + { ["id"] = "explicit.stat_2954116742|15617", ["text"] = "Allocates Heavy Drinker", ["type"] = "explicit", }, - [1368] = { + { ["id"] = "explicit.stat_2954116742|4959", ["text"] = "Allocates Heavy Frost", ["type"] = "explicit", }, - [1369] = { + { ["id"] = "explicit.stat_2954116742|41512", ["text"] = "Allocates Heavy Weaponry", ["type"] = "explicit", }, - [1370] = { + { ["id"] = "explicit.stat_2954116742|48418", ["text"] = "Allocates Hefty Unit", ["type"] = "explicit", }, - [1371] = { + { ["id"] = "explicit.stat_2954116742|45777", ["text"] = "Allocates Hidden Barb", ["type"] = "explicit", }, - [1372] = { + { ["id"] = "explicit.stat_2954116742|41935", ["text"] = "Allocates Hide of the Bear", ["type"] = "explicit", }, - [1373] = { + { ["id"] = "explicit.stat_2954116742|30456", ["text"] = "Allocates High Alert", ["type"] = "explicit", }, - [1374] = { + { ["id"] = "explicit.stat_2954116742|54805", ["text"] = "Allocates Hindered Capabilities", ["type"] = "explicit", }, - [1375] = { + { ["id"] = "explicit.stat_2954116742|60273", ["text"] = "Allocates Hindering Obstacles", ["type"] = "explicit", }, - [1376] = { + { ["id"] = "explicit.stat_2954116742|23078", ["text"] = "Allocates Holy Protector", ["type"] = "explicit", }, - [1377] = { + { ["id"] = "explicit.stat_2954116742|48014", ["text"] = "Allocates Honourless", ["type"] = "explicit", }, - [1378] = { + { ["id"] = "explicit.stat_2954116742|30395", ["text"] = "Allocates Howling Beast", ["type"] = "explicit", }, - [1379] = { + { ["id"] = "explicit.stat_2954116742|4673", ["text"] = "Allocates Hulking Smash", ["type"] = "explicit", }, - [1380] = { + { ["id"] = "explicit.stat_2954116742|57471", ["text"] = "Allocates Hunker Down", ["type"] = "explicit", }, - [1381] = { + { ["id"] = "explicit.stat_2954116742|48617", ["text"] = "Allocates Hunter", ["type"] = "explicit", }, - [1382] = { + { ["id"] = "explicit.stat_2954116742|33099", ["text"] = "Allocates Hunter's Talisman", ["type"] = "explicit", }, - [1383] = { + { ["id"] = "explicit.stat_2954116742|32655", ["text"] = "Allocates Hunting Companion", ["type"] = "explicit", }, - [1384] = { + { ["id"] = "explicit.stat_2954116742|55847", ["text"] = "Allocates Ice Walls", ["type"] = "explicit", }, - [1385] = { + { ["id"] = "explicit.stat_2954116742|4031", ["text"] = "Allocates Icebreaker", ["type"] = "explicit", }, - [1386] = { + { ["id"] = "explicit.stat_2954116742|32932", ["text"] = "Allocates Ichlotl's Inferno", ["type"] = "explicit", }, - [1387] = { + { ["id"] = "explicit.stat_2954116742|7341", ["text"] = "Allocates Ignore Pain", ["type"] = "explicit", }, - [1388] = { + { ["id"] = "explicit.stat_2954116742|1823", ["text"] = "Allocates Illuminated Crown", ["type"] = "explicit", }, - [1389] = { + { ["id"] = "explicit.stat_2954116742|50912", ["text"] = "Allocates Imbibed Power", ["type"] = "explicit", }, - [1390] = { + { ["id"] = "explicit.stat_2954116742|19156", ["text"] = "Allocates Immaterial", ["type"] = "explicit", }, - [1391] = { + { ["id"] = "explicit.stat_2954116742|53030", ["text"] = "Allocates Immolation", ["type"] = "explicit", }, - [1392] = { + { ["id"] = "explicit.stat_2954116742|24062", ["text"] = "Allocates Immortal Infamy", ["type"] = "explicit", }, - [1393] = { + { ["id"] = "explicit.stat_2954116742|51871", ["text"] = "Allocates Immortal Thirst", ["type"] = "explicit", }, - [1394] = { + { ["id"] = "explicit.stat_2954116742|16626", ["text"] = "Allocates Impact Area", ["type"] = "explicit", }, - [1395] = { + { ["id"] = "explicit.stat_2954116742|64443", ["text"] = "Allocates Impact Force", ["type"] = "explicit", }, - [1396] = { + { ["id"] = "explicit.stat_2954116742|46696", ["text"] = "Allocates Impair", ["type"] = "explicit", }, - [1397] = { + { ["id"] = "explicit.stat_2954116742|21748", ["text"] = "Allocates Impending Doom", ["type"] = "explicit", }, - [1398] = { + { ["id"] = "explicit.stat_2954116742|65023", ["text"] = "Allocates Impenetrable Shell", ["type"] = "explicit", }, - [1399] = { + { ["id"] = "explicit.stat_2954116742|57379", ["text"] = "Allocates In Your Face", ["type"] = "explicit", }, - [1400] = { + { ["id"] = "explicit.stat_2954116742|35028", ["text"] = "Allocates In the Thick of It", ["type"] = "explicit", }, - [1401] = { + { ["id"] = "explicit.stat_2954116742|62310", ["text"] = "Allocates Incendiary", ["type"] = "explicit", }, - [1402] = { + { ["id"] = "explicit.stat_2954116742|36630", ["text"] = "Allocates Incision", ["type"] = "explicit", }, - [1403] = { + { ["id"] = "explicit.stat_2954116742|47270", ["text"] = "Allocates Inescapable Cold", ["type"] = "explicit", }, - [1404] = { + { ["id"] = "explicit.stat_2954116742|22817", ["text"] = "Allocates Inevitable Rupture", ["type"] = "explicit", }, - [1405] = { + { ["id"] = "explicit.stat_2954116742|61354", ["text"] = "Allocates Infernal Limit", ["type"] = "explicit", }, - [1406] = { + { ["id"] = "explicit.stat_2954116742|57110", ["text"] = "Allocates Infused Flesh", ["type"] = "explicit", }, - [1407] = { + { ["id"] = "explicit.stat_2954116742|38965", ["text"] = "Allocates Infused Limits", ["type"] = "explicit", }, - [1408] = { + { ["id"] = "explicit.stat_2954116742|24764", ["text"] = "Allocates Infusing Power", ["type"] = "explicit", }, - [1409] = { + { ["id"] = "explicit.stat_2954116742|59387", ["text"] = "Allocates Infusion of Power", ["type"] = "explicit", }, - [1410] = { + { ["id"] = "explicit.stat_2954116742|39567", ["text"] = "Allocates Ingenuity", ["type"] = "explicit", }, - [1411] = { + { ["id"] = "explicit.stat_2954116742|46683", ["text"] = "Allocates Inherited Strength ", ["type"] = "explicit", }, - [1412] = { + { ["id"] = "explicit.stat_2954116742|23227", ["text"] = "Allocates Initiative", ["type"] = "explicit", }, - [1413] = { + { ["id"] = "explicit.stat_2954116742|30562", ["text"] = "Allocates Inner Faith", ["type"] = "explicit", }, - [1414] = { + { ["id"] = "explicit.stat_2954116742|116", ["text"] = "Allocates Insightfulness", ["type"] = "explicit", }, - [1415] = { + { ["id"] = "explicit.stat_2954116742|16150", ["text"] = "Allocates Inspiring Ally", ["type"] = "explicit", }, - [1416] = { + { ["id"] = "explicit.stat_2954116742|4661", ["text"] = "Allocates Inspiring Leader", ["type"] = "explicit", }, - [1417] = { + { ["id"] = "explicit.stat_2954116742|43944", ["text"] = "Allocates Instability", ["type"] = "explicit", }, - [1418] = { + { ["id"] = "explicit.stat_2954116742|9736", ["text"] = "Allocates Insulated Treads", ["type"] = "explicit", }, - [1419] = { + { ["id"] = "explicit.stat_2954116742|48649", ["text"] = "Allocates Insulating Hide", ["type"] = "explicit", }, - [1420] = { + { ["id"] = "explicit.stat_2954116742|46182", ["text"] = "Allocates Intense Dose", ["type"] = "explicit", }, - [1421] = { + { ["id"] = "explicit.stat_2954116742|65016", ["text"] = "Allocates Intense Flames", ["type"] = "explicit", }, - [1422] = { + { ["id"] = "explicit.stat_2954116742|7668", ["text"] = "Allocates Internal Bleeding", ["type"] = "explicit", }, - [1423] = { + { ["id"] = "explicit.stat_2954116742|35369", ["text"] = "Allocates Investing Energies", ["type"] = "explicit", }, - [1424] = { + { ["id"] = "explicit.stat_2954116742|41394", ["text"] = "Allocates Invigorating Archon", ["type"] = "explicit", }, - [1425] = { + { ["id"] = "explicit.stat_2954116742|50023", ["text"] = "Allocates Invigorating Grandeur", ["type"] = "explicit", }, - [1426] = { + { ["id"] = "explicit.stat_2954116742|28408", ["text"] = "Allocates Invigorating Hate", ["type"] = "explicit", }, - [1427] = { + { ["id"] = "explicit.stat_2954116742|24491", ["text"] = "Allocates Invocated Echoes", ["type"] = "explicit", }, - [1428] = { + { ["id"] = "explicit.stat_2954116742|51934", ["text"] = "Allocates Invocated Efficiency", ["type"] = "explicit", }, - [1429] = { + { ["id"] = "explicit.stat_2954116742|338", ["text"] = "Allocates Invocated Limit", ["type"] = "explicit", }, - [1430] = { + { ["id"] = "explicit.stat_2954116742|31724", ["text"] = "Allocates Iron Slippers", ["type"] = "explicit", }, - [1431] = { + { ["id"] = "explicit.stat_2954116742|22626", ["text"] = "Allocates Irreparable", ["type"] = "explicit", }, - [1432] = { + { ["id"] = "explicit.stat_2954116742|16618", ["text"] = "Allocates Jack of all Trades", ["type"] = "explicit", }, - [1433] = { + { ["id"] = "explicit.stat_2954116742|10265", ["text"] = "Allocates Javelin", ["type"] = "explicit", }, - [1434] = { + { ["id"] = "explicit.stat_2954116742|3663", ["text"] = "Allocates Kaom's Blessing", ["type"] = "explicit", }, - [1435] = { + { ["id"] = "explicit.stat_2954116742|37302", ["text"] = "Allocates Kept at Bay", ["type"] = "explicit", }, - [1436] = { + { ["id"] = "explicit.stat_2954116742|56453", ["text"] = "Allocates Killer Instinct", ["type"] = "explicit", }, - [1437] = { + { ["id"] = "explicit.stat_2954116742|26107", ["text"] = "Allocates Kite Runner", ["type"] = "explicit", }, - [1438] = { + { ["id"] = "explicit.stat_2954116742|24736", ["text"] = "Allocates Knight of Chitus", ["type"] = "explicit", }, - [1439] = { + { + ["id"] = "explicit.stat_2954116742|9863", + ["text"] = "Allocates Knight of Izaro", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_2954116742|2397", ["text"] = "Allocates Last Stand", ["type"] = "explicit", }, - [1440] = { + { ["id"] = "explicit.stat_2954116742|64659", ["text"] = "Allocates Lasting Boons", ["type"] = "explicit", }, - [1441] = { + { ["id"] = "explicit.stat_2954116742|58096", ["text"] = "Allocates Lasting Incantations", ["type"] = "explicit", }, - [1442] = { + { ["id"] = "explicit.stat_2954116742|61741", ["text"] = "Allocates Lasting Toxins", ["type"] = "explicit", }, - [1443] = { + { ["id"] = "explicit.stat_2954116742|18496", ["text"] = "Allocates Lasting Trauma", ["type"] = "explicit", }, - [1444] = { + { ["id"] = "explicit.stat_2954116742|8607", ["text"] = "Allocates Lavianga's Brew", ["type"] = "explicit", }, - [1445] = { + { ["id"] = "explicit.stat_2954116742|45599", ["text"] = "Allocates Lay Siege", ["type"] = "explicit", }, - [1446] = { + { ["id"] = "explicit.stat_2954116742|40687", ["text"] = "Allocates Lead by Example", ["type"] = "explicit", }, - [1447] = { + { ["id"] = "explicit.stat_2954116742|8531", ["text"] = "Allocates Leaping Ambush", ["type"] = "explicit", }, - [1448] = { + { ["id"] = "explicit.stat_2954116742|51446", ["text"] = "Allocates Leather Bound Gauntlets", ["type"] = "explicit", }, - [1449] = { + { ["id"] = "explicit.stat_2954116742|63431", ["text"] = "Allocates Leeching Toxins", ["type"] = "explicit", }, - [1450] = { + { ["id"] = "explicit.stat_2954116742|19644", ["text"] = "Allocates Left Hand of Darkness", ["type"] = "explicit", }, - [1451] = { + { + ["id"] = "explicit.stat_2954116742|4091", + ["text"] = "Allocates Left Ventricle", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_2954116742|55375", ["text"] = "Allocates Licking Wounds", ["type"] = "explicit", }, - [1452] = { + { ["id"] = "explicit.stat_2954116742|31129", ["text"] = "Allocates Lifelong Friend", ["type"] = "explicit", }, - [1453] = { + { ["id"] = "explicit.stat_2954116742|55131", ["text"] = "Allocates Light on your Feet", ["type"] = "explicit", }, - [1454] = { + { ["id"] = "explicit.stat_2954116742|13738", ["text"] = "Allocates Lightning Quick", ["type"] = "explicit", }, - [1455] = { + { ["id"] = "explicit.stat_2954116742|44566", ["text"] = "Allocates Lightning Rod", ["type"] = "explicit", }, - [1456] = { + { ["id"] = "explicit.stat_2954116742|56063", ["text"] = "Allocates Lingering Horror", ["type"] = "explicit", }, - [1457] = { + { ["id"] = "explicit.stat_2954116742|16499", ["text"] = "Allocates Lingering Whispers", ["type"] = "explicit", }, - [1458] = { + { ["id"] = "explicit.stat_2954116742|62887", ["text"] = "Allocates Living Death", ["type"] = "explicit", }, - [1459] = { + { ["id"] = "explicit.stat_2954116742|31745", ["text"] = "Allocates Lockdown", ["type"] = "explicit", }, - [1460] = { + { ["id"] = "explicit.stat_2954116742|56999", ["text"] = "Allocates Locked On", ["type"] = "explicit", }, - [1461] = { + { ["id"] = "explicit.stat_2954116742|12964", ["text"] = "Allocates Lone Warrior", ["type"] = "explicit", }, - [1462] = { + { ["id"] = "explicit.stat_2954116742|31826", ["text"] = "Allocates Long Distance Relationship", ["type"] = "explicit", }, - [1463] = { + { ["id"] = "explicit.stat_2954116742|13542", ["text"] = "Allocates Loose Flesh", ["type"] = "explicit", }, - [1464] = { + { ["id"] = "explicit.stat_2954116742|33240", ["text"] = "Allocates Lord of Horrors", ["type"] = "explicit", }, - [1465] = { + { + ["id"] = "explicit.stat_2954116742|27779", + ["text"] = "Allocates Lord of the Squall", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_2954116742|42959", ["text"] = "Allocates Low Tolerance", ["type"] = "explicit", }, - [1466] = { + { ["id"] = "explicit.stat_2954116742|51891", ["text"] = "Allocates Lucidity", ["type"] = "explicit", }, - [1467] = { + { ["id"] = "explicit.stat_2954116742|59303", ["text"] = "Allocates Lucky Rabbit Foot", ["type"] = "explicit", }, - [1468] = { + { ["id"] = "explicit.stat_2954116742|1104", ["text"] = "Allocates Lust for Power", ["type"] = "explicit", }, - [1469] = { + { ["id"] = "explicit.stat_2954116742|27009", ["text"] = "Allocates Lust for Sacrifice", ["type"] = "explicit", }, - [1470] = { + { ["id"] = "explicit.stat_2954116742|44952", ["text"] = "Allocates Made to Last", ["type"] = "explicit", }, - [1471] = { + { ["id"] = "explicit.stat_2954116742|23738", ["text"] = "Allocates Madness in the Bones", ["type"] = "explicit", }, - [1472] = { + { ["id"] = "explicit.stat_2954116742|39568", ["text"] = "Allocates Magnum Opus", ["type"] = "explicit", }, - [1473] = { + { ["id"] = "explicit.stat_2954116742|41580", ["text"] = "Allocates Maiming Strike", ["type"] = "explicit", }, - [1474] = { + { ["id"] = "explicit.stat_2954116742|37742", ["text"] = "Allocates Manifold Method", ["type"] = "explicit", }, - [1475] = { + { ["id"] = "explicit.stat_2954116742|64050", ["text"] = "Allocates Marathon Runner", ["type"] = "explicit", }, - [1476] = { + { ["id"] = "explicit.stat_2954116742|44756", ["text"] = "Allocates Marked Agility", ["type"] = "explicit", }, - [1477] = { + { ["id"] = "explicit.stat_2954116742|36976", ["text"] = "Allocates Marked for Death", ["type"] = "explicit", }, - [1478] = { + { ["id"] = "explicit.stat_2954116742|63830", ["text"] = "Allocates Marked for Sickness", ["type"] = "explicit", }, - [1479] = { + { ["id"] = "explicit.stat_2954116742|2113", ["text"] = "Allocates Martial Artistry", ["type"] = "explicit", }, - [1480] = { + { ["id"] = "explicit.stat_2954116742|27108", ["text"] = "Allocates Mass Hysteria", ["type"] = "explicit", }, - [1481] = { + { ["id"] = "explicit.stat_2954116742|34340", ["text"] = "Allocates Mass Rejuvenation", ["type"] = "explicit", }, - [1482] = { + { ["id"] = "explicit.stat_2954116742|30341", ["text"] = "Allocates Master Fletching", ["type"] = "explicit", }, - [1483] = { + { ["id"] = "explicit.stat_2954116742|40345", ["text"] = "Allocates Master of Hexes", ["type"] = "explicit", }, - [1484] = { + { ["id"] = "explicit.stat_2954116742|27513", ["text"] = "Allocates Material Solidification", ["type"] = "explicit", }, - [1485] = { + { ["id"] = "explicit.stat_2954116742|11886", ["text"] = "Allocates Mauling Stuns", ["type"] = "explicit", }, - [1486] = { + { ["id"] = "explicit.stat_2954116742|25620", ["text"] = "Allocates Meat Recycling", ["type"] = "explicit", }, - [1487] = { + { ["id"] = "explicit.stat_2954116742|3215", ["text"] = "Allocates Melding", ["type"] = "explicit", }, - [1488] = { + { ["id"] = "explicit.stat_2954116742|43939", ["text"] = "Allocates Melting Flames", ["type"] = "explicit", }, - [1489] = { + { ["id"] = "explicit.stat_2954116742|9652", ["text"] = "Allocates Mending Deflection", ["type"] = "explicit", }, - [1490] = { + { ["id"] = "explicit.stat_2954116742|16466", ["text"] = "Allocates Mental Alacrity", ["type"] = "explicit", }, - [1491] = { + { ["id"] = "explicit.stat_2954116742|9226", ["text"] = "Allocates Mental Perseverance", ["type"] = "explicit", }, - [1492] = { + { ["id"] = "explicit.stat_2954116742|24120", ["text"] = "Allocates Mental Toughness", ["type"] = "explicit", }, - [1493] = { + { ["id"] = "explicit.stat_2954116742|45632", ["text"] = "Allocates Mind Eraser", ["type"] = "explicit", }, - [1494] = { + { ["id"] = "explicit.stat_2954116742|11392", ["text"] = "Allocates Molten Being", ["type"] = "explicit", }, - [1495] = { + { ["id"] = "explicit.stat_2954116742|51868", ["text"] = "Allocates Molten Carapace", ["type"] = "explicit", }, - [1496] = { + { ["id"] = "explicit.stat_2954116742|36100", ["text"] = "Allocates Molten Claw", ["type"] = "explicit", }, - [1497] = { + { ["id"] = "explicit.stat_2954116742|17548", ["text"] = "Allocates Moment of Truth", ["type"] = "explicit", }, - [1498] = { + { ["id"] = "explicit.stat_2954116742|63579", ["text"] = "Allocates Momentum", ["type"] = "explicit", }, - [1499] = { + { ["id"] = "explicit.stat_2954116742|64770", ["text"] = "Allocates Morgana, the Storm Seer", ["type"] = "explicit", }, - [1500] = { + { ["id"] = "explicit.stat_2954116742|47560", ["text"] = "Allocates Multi Shot", ["type"] = "explicit", }, - [1501] = { + { ["id"] = "explicit.stat_2954116742|8810", ["text"] = "Allocates Multitasking", ["type"] = "explicit", }, - [1502] = { + { ["id"] = "explicit.stat_2954116742|35046", ["text"] = "Allocates Mystic Avalanche", ["type"] = "explicit", }, - [1503] = { + { ["id"] = "explicit.stat_2954116742|52764", ["text"] = "Allocates Mystical Rage", ["type"] = "explicit", }, - [1504] = { + { ["id"] = "explicit.stat_2954116742|934", ["text"] = "Allocates Natural Immunity", ["type"] = "explicit", }, - [1505] = { + { ["id"] = "explicit.stat_2954116742|53265", ["text"] = "Allocates Nature's Bite", ["type"] = "explicit", }, - [1506] = { + { ["id"] = "explicit.stat_2954116742|4709", ["text"] = "Allocates Near Sighted", ["type"] = "explicit", }, - [1507] = { + { ["id"] = "explicit.stat_2954116742|35581", ["text"] = "Allocates Near at Hand", ["type"] = "explicit", }, - [1508] = { + { ["id"] = "explicit.stat_2954116742|10499", ["text"] = "Allocates Necromantic Ward", ["type"] = "explicit", }, - [1509] = { + { ["id"] = "explicit.stat_2954116742|11376", ["text"] = "Allocates Necrotic Touch", ["type"] = "explicit", }, - [1510] = { + { ["id"] = "explicit.stat_2954116742|59541", ["text"] = "Allocates Necrotised Flesh", ["type"] = "explicit", }, - [1511] = { + { ["id"] = "explicit.stat_2954116742|40292", ["text"] = "Allocates Nimble Strength", ["type"] = "explicit", }, - [1512] = { + { ["id"] = "explicit.stat_2954116742|37266", ["text"] = "Allocates Nourishing Ally", ["type"] = "explicit", }, - [1513] = { + { ["id"] = "explicit.stat_2954116742|60992", ["text"] = "Allocates Nurturing Guardian", ["type"] = "explicit", }, - [1514] = { + { ["id"] = "explicit.stat_2954116742|42036", ["text"] = "Allocates Off-Balancing Retort", ["type"] = "explicit", }, - [1515] = { + { ["id"] = "explicit.stat_2954116742|35918", ["text"] = "Allocates One For All", ["type"] = "explicit", }, - [1516] = { + { ["id"] = "explicit.stat_2954116742|44753", ["text"] = "Allocates One With Flame", ["type"] = "explicit", }, - [1517] = { + { ["id"] = "explicit.stat_2954116742|34316", ["text"] = "Allocates One with the River", ["type"] = "explicit", }, - [1518] = { + { ["id"] = "explicit.stat_2954116742|9444", ["text"] = "Allocates One with the Storm", ["type"] = "explicit", }, - [1519] = { + { ["id"] = "explicit.stat_2954116742|52199", ["text"] = "Allocates Overexposure", ["type"] = "explicit", }, - [1520] = { + { ["id"] = "explicit.stat_2954116742|65204", ["text"] = "Allocates Overflowing Power", ["type"] = "explicit", }, - [1521] = { + { ["id"] = "explicit.stat_2954116742|42390", ["text"] = "Allocates Overheating Blow", ["type"] = "explicit", }, - [1522] = { + { ["id"] = "explicit.stat_2954116742|47635", ["text"] = "Allocates Overload", ["type"] = "explicit", }, - [1523] = { + { ["id"] = "explicit.stat_2954116742|25513", ["text"] = "Allocates Overwhelm", ["type"] = "explicit", }, - [1524] = { + { ["id"] = "explicit.stat_2954116742|57388", ["text"] = "Allocates Overwhelming Strike", ["type"] = "explicit", }, - [1525] = { + { ["id"] = "explicit.stat_2954116742|10295", ["text"] = "Allocates Overzealous", ["type"] = "explicit", }, - [1526] = { + { ["id"] = "explicit.stat_2954116742|21784", ["text"] = "Allocates Pack Encouragement", ["type"] = "explicit", }, - [1527] = { + { ["id"] = "explicit.stat_2954116742|20686", ["text"] = "Allocates Paragon", ["type"] = "explicit", }, - [1528] = { + { ["id"] = "explicit.stat_2954116742|24766", ["text"] = "Allocates Paranoia", ["type"] = "explicit", }, - [1529] = { + { ["id"] = "explicit.stat_2954116742|56016", ["text"] = "Allocates Passthrough Rounds", ["type"] = "explicit", }, - [1530] = { + { ["id"] = "explicit.stat_2954116742|62230", ["text"] = "Allocates Patient Barrier", ["type"] = "explicit", }, - [1531] = { + { ["id"] = "explicit.stat_2954116742|60404", ["text"] = "Allocates Perfect Opportunity", ["type"] = "explicit", }, - [1532] = { + { ["id"] = "explicit.stat_2954116742|49661", ["text"] = "Allocates Perfectly Placed Knife", ["type"] = "explicit", }, - [1533] = { + { ["id"] = "explicit.stat_2954116742|17330", ["text"] = "Allocates Perforation", ["type"] = "explicit", }, - [1534] = { + { ["id"] = "explicit.stat_2954116742|2863", ["text"] = "Allocates Perpetual Freeze", ["type"] = "explicit", }, - [1535] = { + { ["id"] = "explicit.stat_2954116742|34308", ["text"] = "Allocates Personal Touch", ["type"] = "explicit", }, - [1536] = { + { ["id"] = "explicit.stat_2954116742|7651", ["text"] = "Allocates Pierce the Heart", ["type"] = "explicit", }, - [1537] = { + { ["id"] = "explicit.stat_2954116742|17260", ["text"] = "Allocates Piercing Claw", ["type"] = "explicit", }, - [1538] = { + { ["id"] = "explicit.stat_2954116742|4534", ["text"] = "Allocates Piercing Shot", ["type"] = "explicit", }, - [1539] = { + { ["id"] = "explicit.stat_2954116742|51129", ["text"] = "Allocates Pile On", ["type"] = "explicit", }, - [1540] = { + { ["id"] = "explicit.stat_2954116742|60083", ["text"] = "Allocates Pin and Run", ["type"] = "explicit", }, - [1541] = { + { ["id"] = "explicit.stat_2954116742|4447", ["text"] = "Allocates Pin their Motivation", ["type"] = "explicit", }, - [1542] = { + { ["id"] = "explicit.stat_2954116742|16816", ["text"] = "Allocates Pinpoint Shot", ["type"] = "explicit", }, - [1543] = { + { ["id"] = "explicit.stat_2954116742|38111", ["text"] = "Allocates Pliable Flesh", ["type"] = "explicit", }, - [1544] = { + { ["id"] = "explicit.stat_2954116742|58426", ["text"] = "Allocates Pocket Sand", ["type"] = "explicit", }, - [1545] = { + { ["id"] = "explicit.stat_2954116742|27950", ["text"] = "Allocates Polished Iron", ["type"] = "explicit", }, - [1546] = { + { ["id"] = "explicit.stat_2954116742|57047", ["text"] = "Allocates Polymathy", ["type"] = "explicit", }, - [1547] = { + { ["id"] = "explicit.stat_2954116742|19125", ["text"] = "Allocates Potent Incantation", ["type"] = "explicit", }, - [1548] = { + { ["id"] = "explicit.stat_2954116742|15083", ["text"] = "Allocates Power Conduction", ["type"] = "explicit", }, - [1549] = { + { ["id"] = "explicit.stat_2954116742|6178", ["text"] = "Allocates Power Shots", ["type"] = "explicit", }, - [1550] = { + { ["id"] = "explicit.stat_2954116742|49150", ["text"] = "Allocates Precise Invocations", ["type"] = "explicit", }, - [1551] = { + { ["id"] = "explicit.stat_2954116742|13895", ["text"] = "Allocates Precise Point", ["type"] = "explicit", }, - [1552] = { + { ["id"] = "explicit.stat_2954116742|34425", ["text"] = "Allocates Precise Volatility", ["type"] = "explicit", }, - [1553] = { + { ["id"] = "explicit.stat_2954116742|19337", ["text"] = "Allocates Precision Salvo", ["type"] = "explicit", }, - [1554] = { + { ["id"] = "explicit.stat_2954116742|21380", ["text"] = "Allocates Preemptive Strike", ["type"] = "explicit", }, - [1555] = { + { ["id"] = "explicit.stat_2954116742|37872", ["text"] = "Allocates Presence Present", ["type"] = "explicit", }, - [1556] = { + { ["id"] = "explicit.stat_2954116742|32951", ["text"] = "Allocates Preservation", ["type"] = "explicit", }, - [1557] = { + { ["id"] = "explicit.stat_2954116742|28329", ["text"] = "Allocates Pressure Points", ["type"] = "explicit", }, - [1558] = { + { ["id"] = "explicit.stat_2954116742|9908", ["text"] = "Allocates Price of Freedom", ["type"] = "explicit", }, - [1559] = { + { ["id"] = "explicit.stat_2954116742|32071", ["text"] = "Allocates Primal Growth", ["type"] = "explicit", }, - [1560] = { + { ["id"] = "explicit.stat_2954116742|31364", ["text"] = "Allocates Primal Protection", ["type"] = "explicit", }, - [1561] = { + { ["id"] = "explicit.stat_2954116742|28892", ["text"] = "Allocates Primal Rage", ["type"] = "explicit", }, - [1562] = { + { ["id"] = "explicit.stat_2954116742|50884", ["text"] = "Allocates Primal Sundering", ["type"] = "explicit", }, - [1563] = { + { ["id"] = "explicit.stat_2954116742|26356", ["text"] = "Allocates Primed to Explode", ["type"] = "explicit", }, - [1564] = { + { ["id"] = "explicit.stat_2954116742|62034", ["text"] = "Allocates Prism Guard", ["type"] = "explicit", }, - [1565] = { + { ["id"] = "explicit.stat_2954116742|54814", ["text"] = "Allocates Profane Commander", ["type"] = "explicit", }, - [1566] = { + { ["id"] = "explicit.stat_2954116742|58397", ["text"] = "Allocates Proficiency", ["type"] = "explicit", }, - [1567] = { + { ["id"] = "explicit.stat_2954116742|19236", ["text"] = "Allocates Projectile Bulwark", ["type"] = "explicit", }, - [1568] = { + { ["id"] = "explicit.stat_2954116742|45874", ["text"] = "Allocates Proliferating Weeds", ["type"] = "explicit", }, - [1569] = { + { ["id"] = "explicit.stat_2954116742|19442", ["text"] = "Allocates Prolonged Assault", ["type"] = "explicit", }, - [1570] = { + { ["id"] = "explicit.stat_2954116742|49550", ["text"] = "Allocates Prolonged Fury", ["type"] = "explicit", }, - [1571] = { + { ["id"] = "explicit.stat_2954116742|54998", ["text"] = "Allocates Protraction", ["type"] = "explicit", }, - [1572] = { + { ["id"] = "explicit.stat_2954116742|38614", ["text"] = "Allocates Psychic Fragmentation", ["type"] = "explicit", }, - [1573] = { + { ["id"] = "explicit.stat_2954116742|13482", ["text"] = "Allocates Punctured Lung", ["type"] = "explicit", }, - [1574] = { + { ["id"] = "explicit.stat_2954116742|62210", ["text"] = "Allocates Puppet Master chance", ["type"] = "explicit", }, - [1575] = { + { + ["id"] = "explicit.stat_2954116742|14258", + ["text"] = "Allocates Puppet Master chance", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_2954116742|55149", ["text"] = "Allocates Pure Chaos", ["type"] = "explicit", }, - [1576] = { + { ["id"] = "explicit.stat_2954116742|28975", ["text"] = "Allocates Pure Power", ["type"] = "explicit", }, - [1577] = { + { ["id"] = "explicit.stat_2954116742|6229", ["text"] = "Allocates Push the Advantage", ["type"] = "explicit", }, - [1578] = { + { ["id"] = "explicit.stat_2954116742|33542", ["text"] = "Allocates Quick Fingers", ["type"] = "explicit", }, - [1579] = { + { ["id"] = "explicit.stat_2954116742|48240", ["text"] = "Allocates Quick Recovery", ["type"] = "explicit", }, - [1580] = { + { ["id"] = "explicit.stat_2954116742|55450", ["text"] = "Allocates Rallying Form", ["type"] = "explicit", }, - [1581] = { + { ["id"] = "explicit.stat_2954116742|43791", ["text"] = "Allocates Rallying Icon", ["type"] = "explicit", }, - [1582] = { + { ["id"] = "explicit.stat_2954116742|64119", ["text"] = "Allocates Rapid Reload", ["type"] = "explicit", }, - [1583] = { + { ["id"] = "explicit.stat_2954116742|7604", ["text"] = "Allocates Rapid Strike", ["type"] = "explicit", }, - [1584] = { + { ["id"] = "explicit.stat_2954116742|62185", ["text"] = "Allocates Rattled", ["type"] = "explicit", }, - [1585] = { + { ["id"] = "explicit.stat_2954116742|3567", ["text"] = "Allocates Raw Mana", ["type"] = "explicit", }, - [1586] = { + { ["id"] = "explicit.stat_2954116742|17372", ["text"] = "Allocates Reaching Strike", ["type"] = "explicit", }, - [1587] = { + { ["id"] = "explicit.stat_2954116742|10602", ["text"] = "Allocates Reaving", ["type"] = "explicit", }, - [1588] = { + { ["id"] = "explicit.stat_2954116742|61309", ["text"] = "Allocates Redblade Discipline", ["type"] = "explicit", }, - [1589] = { + { ["id"] = "explicit.stat_2954116742|45244", ["text"] = "Allocates Refills", ["type"] = "explicit", }, - [1590] = { + { ["id"] = "explicit.stat_2954116742|26447", ["text"] = "Allocates Refocus", ["type"] = "explicit", }, - [1591] = { + { ["id"] = "explicit.stat_2954116742|20388", ["text"] = "Allocates Regenerative Flesh", ["type"] = "explicit", }, - [1592] = { + { ["id"] = "explicit.stat_2954116742|56388", ["text"] = "Allocates Reinforced Rallying", ["type"] = "explicit", }, - [1593] = { + { ["id"] = "explicit.stat_2954116742|35809", ["text"] = "Allocates Reinvigoration", ["type"] = "explicit", }, - [1594] = { + { ["id"] = "explicit.stat_2954116742|55180", ["text"] = "Allocates Relentless Fallen", ["type"] = "explicit", }, - [1595] = { + { ["id"] = "explicit.stat_2954116742|1506", ["text"] = "Allocates Remnant Attraction", ["type"] = "explicit", }, - [1596] = { + { ["id"] = "explicit.stat_2954116742|65468", ["text"] = "Allocates Repeating Explosives", ["type"] = "explicit", }, - [1597] = { + { ["id"] = "explicit.stat_2954116742|20414", ["text"] = "Allocates Reprisal", ["type"] = "explicit", }, - [1598] = { + { ["id"] = "explicit.stat_2954116742|10029", ["text"] = "Allocates Repulsion", ["type"] = "explicit", }, - [1599] = { + { ["id"] = "explicit.stat_2954116742|25361", ["text"] = "Allocates Resolute Reach", ["type"] = "explicit", }, - [1600] = { + { ["id"] = "explicit.stat_2954116742|56860", ["text"] = "Allocates Resolute Reprisal", ["type"] = "explicit", }, - [1601] = { + { ["id"] = "explicit.stat_2954116742|40325", ["text"] = "Allocates Resolution", ["type"] = "explicit", }, - [1602] = { + { ["id"] = "explicit.stat_2954116742|38972", ["text"] = "Allocates Restless Dead", ["type"] = "explicit", }, - [1603] = { + { ["id"] = "explicit.stat_2954116742|31773", ["text"] = "Allocates Resurging Archon", ["type"] = "explicit", }, - [1604] = { + { ["id"] = "explicit.stat_2954116742|7395", ["text"] = "Allocates Retaliation", ["type"] = "explicit", }, - [1605] = { + { ["id"] = "explicit.stat_2954116742|9009", ["text"] = "Allocates Return to Nature", ["type"] = "explicit", }, - [1606] = { + { ["id"] = "explicit.stat_2954116742|7062", ["text"] = "Allocates Reusable Ammunition", ["type"] = "explicit", }, - [1607] = { + { ["id"] = "explicit.stat_2954116742|3188", ["text"] = "Allocates Revenge", ["type"] = "explicit", }, - [1608] = { + { ["id"] = "explicit.stat_2954116742|8660", ["text"] = "Allocates Reverberation", ["type"] = "explicit", }, - [1609] = { + { + ["id"] = "explicit.stat_2954116742|37619", + ["text"] = "Allocates Rhythm of Fire", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_2954116742|13693", ["text"] = "Allocates Rhythm of Ice", ["type"] = "explicit", }, - [1610] = { + { ["id"] = "explicit.stat_2954116742|8957", ["text"] = "Allocates Right Hand of Darkness", ["type"] = "explicit", }, - [1611] = { + { ["id"] = "explicit.stat_2954116742|28613", ["text"] = "Allocates Roaring Cries", ["type"] = "explicit", }, - [1612] = { + { ["id"] = "explicit.stat_2954116742|60269", ["text"] = "Allocates Roil", ["type"] = "explicit", }, - [1613] = { + { ["id"] = "explicit.stat_2954116742|61112", ["text"] = "Allocates Roll and Strike", ["type"] = "explicit", }, - [1614] = { + { ["id"] = "explicit.stat_2954116742|8483", ["text"] = "Allocates Ruin", ["type"] = "explicit", }, - [1615] = { + { ["id"] = "explicit.stat_2954116742|18959", ["text"] = "Allocates Ruinic Helm", ["type"] = "explicit", }, - [1616] = { + { ["id"] = "explicit.stat_2954116742|53566", ["text"] = "Allocates Run and Gun", ["type"] = "explicit", }, - [1617] = { + { ["id"] = "explicit.stat_2954116742|7782", ["text"] = "Allocates Rupturing Pins", ["type"] = "explicit", }, - [1618] = { + { ["id"] = "explicit.stat_2954116742|9290", ["text"] = "Allocates Rusted Pins", ["type"] = "explicit", }, - [1619] = { + { ["id"] = "explicit.stat_2954116742|14294", ["text"] = "Allocates Sacrificial Blood", ["type"] = "explicit", }, - [1620] = { + { ["id"] = "explicit.stat_2954116742|25619", ["text"] = "Allocates Sand in the Eyes", ["type"] = "explicit", }, - [1621] = { + { ["id"] = "explicit.stat_2954116742|58215", ["text"] = "Allocates Sanguimantic Rituals", ["type"] = "explicit", }, - [1622] = { + { ["id"] = "explicit.stat_2954116742|4810", ["text"] = "Allocates Sanguine Tolerance", ["type"] = "explicit", }, - [1623] = { + { ["id"] = "explicit.stat_2954116742|42070", ["text"] = "Allocates Saqawal's Guidance", ["type"] = "explicit", }, - [1624] = { + { ["id"] = "explicit.stat_2954116742|62237", ["text"] = "Allocates Saqawal's Talon", ["type"] = "explicit", }, - [1625] = { + { ["id"] = "explicit.stat_2954116742|63255", ["text"] = "Allocates Savagery", ["type"] = "explicit", }, - [1626] = { + { ["id"] = "explicit.stat_2954116742|18397", ["text"] = "Allocates Savoured Blood", ["type"] = "explicit", }, - [1627] = { + { ["id"] = "explicit.stat_2954116742|45713", ["text"] = "Allocates Savouring", ["type"] = "explicit", }, - [1628] = { + { ["id"] = "explicit.stat_2954116742|60619", ["text"] = "Allocates Scales of the Wyvern", ["type"] = "explicit", }, - [1629] = { + { ["id"] = "explicit.stat_2954116742|39884", ["text"] = "Allocates Searing Heat", ["type"] = "explicit", }, - [1630] = { + { ["id"] = "explicit.stat_2954116742|52229", ["text"] = "Allocates Secrets of the Orb", ["type"] = "explicit", }, - [1631] = { + { ["id"] = "explicit.stat_2954116742|5009", ["text"] = "Allocates Seeing Stars", ["type"] = "explicit", }, - [1632] = { + { ["id"] = "explicit.stat_2954116742|23630", ["text"] = "Allocates Self Immolation", ["type"] = "explicit", }, - [1633] = { + { ["id"] = "explicit.stat_2954116742|44917", ["text"] = "Allocates Self Mortification", ["type"] = "explicit", }, - [1634] = { + { ["id"] = "explicit.stat_2954116742|36085", ["text"] = "Allocates Serrated Edges", ["type"] = "explicit", }, - [1635] = { + { ["id"] = "explicit.stat_2954116742|13457", ["text"] = "Allocates Shadow Dancing", ["type"] = "explicit", }, - [1636] = { + { ["id"] = "explicit.stat_2954116742|53150", ["text"] = "Allocates Sharp Sight", ["type"] = "explicit", }, - [1637] = { + { ["id"] = "explicit.stat_2954116742|61703", ["text"] = "Allocates Sharpened Claw", ["type"] = "explicit", }, - [1638] = { + { ["id"] = "explicit.stat_2954116742|41811", ["text"] = "Allocates Shatter Palm", ["type"] = "explicit", }, - [1639] = { + { ["id"] = "explicit.stat_2954116742|49740", ["text"] = "Allocates Shattered Crystal", ["type"] = "explicit", }, - [1640] = { + { ["id"] = "explicit.stat_2954116742|48658", ["text"] = "Allocates Shattering", ["type"] = "explicit", }, - [1641] = { + { ["id"] = "explicit.stat_2954116742|53527", ["text"] = "Allocates Shattering Blow", ["type"] = "explicit", }, - [1642] = { + { ["id"] = "explicit.stat_2954116742|64415", ["text"] = "Allocates Shattering Daze", ["type"] = "explicit", }, - [1643] = { + { ["id"] = "explicit.stat_2954116742|15644", ["text"] = "Allocates Shedding Skin", ["type"] = "explicit", }, - [1644] = { + { ["id"] = "explicit.stat_2954116742|37244", ["text"] = "Allocates Shield Expertise", ["type"] = "explicit", }, - [1645] = { + { ["id"] = "explicit.stat_2954116742|57617", ["text"] = "Allocates Shifted Strikes", ["type"] = "explicit", }, - [1646] = { + { ["id"] = "explicit.stat_2954116742|53941", ["text"] = "Allocates Shimmering", ["type"] = "explicit", }, - [1647] = { + { ["id"] = "explicit.stat_2954116742|5335", ["text"] = "Allocates Shimmering Mirage", ["type"] = "explicit", }, - [1648] = { + { ["id"] = "explicit.stat_2954116742|29800", ["text"] = "Allocates Shocking Limit", ["type"] = "explicit", }, - [1649] = { + { ["id"] = "explicit.stat_2954116742|32448", ["text"] = "Allocates Shockproof", ["type"] = "explicit", }, - [1650] = { + { ["id"] = "explicit.stat_2954116742|1087", ["text"] = "Allocates Shockwaves", ["type"] = "explicit", }, - [1651] = { + { ["id"] = "explicit.stat_2954116742|46296", ["text"] = "Allocates Short Shot", ["type"] = "explicit", }, - [1652] = { + { ["id"] = "explicit.stat_2954116742|55060", ["text"] = "Allocates Shrapnel", ["type"] = "explicit", }, - [1653] = { + { ["id"] = "explicit.stat_2954116742|14211", ["text"] = "Allocates Shredding Contraptions", ["type"] = "explicit", }, - [1654] = { + { ["id"] = "explicit.stat_2954116742|5284", ["text"] = "Allocates Shredding Force", ["type"] = "explicit", }, - [1655] = { + { ["id"] = "explicit.stat_2954116742|47088", ["text"] = "Allocates Sic 'Em", ["type"] = "explicit", }, - [1656] = { + { ["id"] = "explicit.stat_2954116742|63037", ["text"] = "Allocates Sigil of Fire", ["type"] = "explicit", }, - [1657] = { + { ["id"] = "explicit.stat_2954116742|40803", ["text"] = "Allocates Sigil of Ice", ["type"] = "explicit", }, - [1658] = { + { ["id"] = "explicit.stat_2954116742|46024", ["text"] = "Allocates Sigil of Lightning", ["type"] = "explicit", }, - [1659] = { + { ["id"] = "explicit.stat_2954116742|17229", ["text"] = "Allocates Silent Guardian", ["type"] = "explicit", }, - [1660] = { + { ["id"] = "explicit.stat_2954116742|52392", ["text"] = "Allocates Singular Purpose", ["type"] = "explicit", }, - [1661] = { + { ["id"] = "explicit.stat_2954116742|15829", ["text"] = "Allocates Siphon", ["type"] = "explicit", }, - [1662] = { + { ["id"] = "explicit.stat_2954116742|12906", ["text"] = "Allocates Sitting Duck", ["type"] = "explicit", }, - [1663] = { + { ["id"] = "explicit.stat_2954116742|2645", ["text"] = "Allocates Skullcrusher", ["type"] = "explicit", }, - [1664] = { + { ["id"] = "explicit.stat_2954116742|55308", ["text"] = "Allocates Sling Shots", ["type"] = "explicit", }, - [1665] = { + { ["id"] = "explicit.stat_2954116742|23362", ["text"] = "Allocates Slippery Ice", ["type"] = "explicit", }, - [1666] = { + { ["id"] = "explicit.stat_2954116742|31326", ["text"] = "Allocates Slow Burn", ["type"] = "explicit", }, - [1667] = { + { ["id"] = "explicit.stat_2954116742|54148", ["text"] = "Allocates Smoke Inhalation", ["type"] = "explicit", }, - [1668] = { + { ["id"] = "explicit.stat_2954116742|11526", ["text"] = "Allocates Sniper", ["type"] = "explicit", }, - [1669] = { + { ["id"] = "explicit.stat_2954116742|9421", ["text"] = "Allocates Snowpiercer", ["type"] = "explicit", }, - [1670] = { + { ["id"] = "explicit.stat_2954116742|51169", ["text"] = "Allocates Soul Bloom", ["type"] = "explicit", }, - [1671] = { + { ["id"] = "explicit.stat_2954116742|34473", ["text"] = "Allocates Spaghettification", ["type"] = "explicit", }, - [1672] = { + { ["id"] = "explicit.stat_2954116742|14602", ["text"] = "Allocates Specialised Shots", ["type"] = "explicit", }, - [1673] = { + { ["id"] = "explicit.stat_2954116742|34324", ["text"] = "Allocates Spectral Ward", ["type"] = "explicit", }, - [1674] = { + { ["id"] = "explicit.stat_2954116742|17254", ["text"] = "Allocates Spell Haste", ["type"] = "explicit", }, - [1675] = { + { ["id"] = "explicit.stat_2954116742|49984", ["text"] = "Allocates Spellblade", ["type"] = "explicit", }, - [1676] = { + { ["id"] = "explicit.stat_2954116742|3698", ["text"] = "Allocates Spike Pit", ["type"] = "explicit", }, - [1677] = { + { ["id"] = "explicit.stat_2954116742|40117", ["text"] = "Allocates Spiked Armour", ["type"] = "explicit", }, - [1678] = { + { ["id"] = "explicit.stat_2954116742|36808", ["text"] = "Allocates Spiked Shield", ["type"] = "explicit", }, - [1679] = { + { ["id"] = "explicit.stat_2954116742|1546", ["text"] = "Allocates Spiral into Depression", ["type"] = "explicit", }, - [1680] = { + { ["id"] = "explicit.stat_2954116742|2138", ["text"] = "Allocates Spiral into Insanity", ["type"] = "explicit", }, - [1681] = { + { ["id"] = "explicit.stat_2954116742|14934", ["text"] = "Allocates Spiral into Mania", ["type"] = "explicit", }, - [1682] = { + { ["id"] = "explicit.stat_2954116742|51105", ["text"] = "Allocates Spirit Bond", ["type"] = "explicit", }, - [1683] = { + { ["id"] = "explicit.stat_2954116742|9328", ["text"] = "Allocates Spirit of the Bear", ["type"] = "explicit", }, - [1684] = { + { ["id"] = "explicit.stat_2954116742|3348", ["text"] = "Allocates Spirit of the Wolf", ["type"] = "explicit", }, - [1685] = { + { ["id"] = "explicit.stat_2954116742|26104", ["text"] = "Allocates Spirit of the Wyvern", ["type"] = "explicit", }, - [1686] = { + { ["id"] = "explicit.stat_2954116742|49088", ["text"] = "Allocates Splintering Force", ["type"] = "explicit", }, - [1687] = { + { ["id"] = "explicit.stat_2954116742|7449", ["text"] = "Allocates Splinters", ["type"] = "explicit", }, - [1688] = { + { ["id"] = "explicit.stat_2954116742|42302", ["text"] = "Allocates Split Shot", ["type"] = "explicit", }, - [1689] = { + { ["id"] = "explicit.stat_2954116742|13980", ["text"] = "Allocates Split the Earth", ["type"] = "explicit", }, - [1690] = { + { ["id"] = "explicit.stat_2954116742|20251", ["text"] = "Allocates Splitting Ground", ["type"] = "explicit", }, - [1691] = { + { ["id"] = "explicit.stat_2954116742|23736", ["text"] = "Allocates Spray and Pray", ["type"] = "explicit", }, - [1692] = { + { ["id"] = "explicit.stat_2954116742|11578", ["text"] = "Allocates Spreading Shocks", ["type"] = "explicit", }, - [1693] = { + { ["id"] = "explicit.stat_2954116742|63759", ["text"] = "Allocates Stacking Toxins", ["type"] = "explicit", }, - [1694] = { + { ["id"] = "explicit.stat_2954116742|39881", ["text"] = "Allocates Staggering Palm", ["type"] = "explicit", }, - [1695] = { + { ["id"] = "explicit.stat_2954116742|61104", ["text"] = "Allocates Staggering Wounds", ["type"] = "explicit", }, - [1696] = { + { ["id"] = "explicit.stat_2954116742|6304", ["text"] = "Allocates Stand Ground", ["type"] = "explicit", }, - [1697] = { + { ["id"] = "explicit.stat_2954116742|5802", ["text"] = "Allocates Stand and Deliver", ["type"] = "explicit", }, - [1698] = { + { ["id"] = "explicit.stat_2954116742|2486", ["text"] = "Allocates Stars Aligned", ["type"] = "explicit", }, - [1699] = { + { ["id"] = "explicit.stat_2954116742|34908", ["text"] = "Allocates Staunch Deflection", ["type"] = "explicit", }, - [1700] = { + { ["id"] = "explicit.stat_2954116742|37408", ["text"] = "Allocates Staunching", ["type"] = "explicit", }, - [1701] = { + { ["id"] = "explicit.stat_2954116742|26479", ["text"] = "Allocates Steadfast Resolve", ["type"] = "explicit", }, - [1702] = { + { ["id"] = "explicit.stat_2954116742|47782", ["text"] = "Allocates Steady Footing", ["type"] = "explicit", }, - [1703] = { + { ["id"] = "explicit.stat_2954116742|47441", ["text"] = "Allocates Stigmata", ["type"] = "explicit", }, - [1704] = { + { ["id"] = "explicit.stat_2954116742|7163", ["text"] = "Allocates Stimulants", ["type"] = "explicit", }, - [1705] = { + { ["id"] = "explicit.stat_2954116742|1603", ["text"] = "Allocates Storm Driven", ["type"] = "explicit", }, - [1706] = { + { ["id"] = "explicit.stat_2954116742|61921", ["text"] = "Allocates Storm Surge", ["type"] = "explicit", }, - [1707] = { + { ["id"] = "explicit.stat_2954116742|336", ["text"] = "Allocates Storm Swell", ["type"] = "explicit", }, - [1708] = { + { ["id"] = "explicit.stat_2954116742|22726", ["text"] = "Allocates Storm's Rebuke", ["type"] = "explicit", }, - [1709] = { + { ["id"] = "explicit.stat_2954116742|43139", ["text"] = "Allocates Stormbreaker", ["type"] = "explicit", }, - [1710] = { + { ["id"] = "explicit.stat_2954116742|38535", ["text"] = "Allocates Stormcharged", ["type"] = "explicit", }, - [1711] = { + { + ["id"] = "explicit.stat_2954116742|47387", + ["text"] = "Allocates Stormkeeper", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_2954116742|13515", ["text"] = "Allocates Stormwalker", ["type"] = "explicit", }, - [1712] = { + { ["id"] = "explicit.stat_2954116742|45177", ["text"] = "Allocates Strike True", ["type"] = "explicit", }, - [1713] = { + { ["id"] = "explicit.stat_2954116742|33922", ["text"] = "Allocates Stripped Defences", ["type"] = "explicit", }, - [1714] = { + { ["id"] = "explicit.stat_2954116742|10998", ["text"] = "Allocates Strong Chin", ["type"] = "explicit", }, - [1715] = { + { ["id"] = "explicit.stat_2954116742|39369", ["text"] = "Allocates Struck Through", ["type"] = "explicit", }, - [1716] = { + { ["id"] = "explicit.stat_2954116742|38342", ["text"] = "Allocates Stupefy", ["type"] = "explicit", }, - [1717] = { + { ["id"] = "explicit.stat_2954116742|8791", ["text"] = "Allocates Sturdy Ally", ["type"] = "explicit", }, - [1718] = { + { ["id"] = "explicit.stat_2954116742|60138", ["text"] = "Allocates Stylebender", ["type"] = "explicit", }, - [1719] = { + { ["id"] = "explicit.stat_2954116742|55193", ["text"] = "Allocates Subterfuge Mask", ["type"] = "explicit", }, - [1720] = { + { ["id"] = "explicit.stat_2954116742|30392", ["text"] = "Allocates Succour", ["type"] = "explicit", }, - [1721] = { + { ["id"] = "explicit.stat_2954116742|10398", ["text"] = "Allocates Sudden Escalation", ["type"] = "explicit", }, - [1722] = { + { ["id"] = "explicit.stat_2954116742|29372", ["text"] = "Allocates Sudden Infuriation", ["type"] = "explicit", }, - [1723] = { + { ["id"] = "explicit.stat_2954116742|14383", ["text"] = "Allocates Suffusion", ["type"] = "explicit", }, - [1724] = { + { ["id"] = "explicit.stat_2954116742|2511", ["text"] = "Allocates Sundering", ["type"] = "explicit", }, - [1725] = { + { ["id"] = "explicit.stat_2954116742|19249", ["text"] = "Allocates Supportive Ancestors", ["type"] = "explicit", }, - [1726] = { + { ["id"] = "explicit.stat_2954116742|29881", ["text"] = "Allocates Surging Beast", ["type"] = "explicit", }, - [1727] = { + { ["id"] = "explicit.stat_2954116742|42065", ["text"] = "Allocates Surging Currents", ["type"] = "explicit", }, - [1728] = { + { ["id"] = "explicit.stat_2954116742|56806", ["text"] = "Allocates Swift Blocking", ["type"] = "explicit", }, - [1729] = { + { ["id"] = "explicit.stat_2954116742|32353", ["text"] = "Allocates Swift Claw", ["type"] = "explicit", }, - [1730] = { + { ["id"] = "explicit.stat_2954116742|56714", ["text"] = "Allocates Swift Flight", ["type"] = "explicit", }, - [1731] = { + { ["id"] = "explicit.stat_2954116742|65265", ["text"] = "Allocates Swift Interruption", ["type"] = "explicit", }, - [1732] = { + { ["id"] = "explicit.stat_2954116742|53367", ["text"] = "Allocates Symbol of Defiance", ["type"] = "explicit", }, - [1733] = { + { ["id"] = "explicit.stat_2954116742|17825", ["text"] = "Allocates Tactical Retreat", ["type"] = "explicit", }, - [1734] = { + { ["id"] = "explicit.stat_2954116742|22864", ["text"] = "Allocates Tainted Strike", ["type"] = "explicit", }, - [1735] = { + { ["id"] = "explicit.stat_2954116742|40213", ["text"] = "Allocates Taste for Blood", ["type"] = "explicit", }, - [1736] = { + { ["id"] = "explicit.stat_2954116742|48774", ["text"] = "Allocates Taut Flesh", ["type"] = "explicit", }, - [1737] = { + { ["id"] = "explicit.stat_2954116742|18157", ["text"] = "Allocates Tempered Defences", ["type"] = "explicit", }, - [1738] = { + { ["id"] = "explicit.stat_2954116742|8831", ["text"] = "Allocates Tempered Mind", ["type"] = "explicit", }, - [1739] = { + { ["id"] = "explicit.stat_2954116742|12412", ["text"] = "Allocates Temporal Mastery", ["type"] = "explicit", }, - [1740] = { + { ["id"] = "explicit.stat_2954116742|25971", ["text"] = "Allocates Tenfold Attacks", ["type"] = "explicit", }, - [1741] = { + { ["id"] = "explicit.stat_2954116742|56666", ["text"] = "Allocates Thaumaturgic Generator", ["type"] = "explicit", }, - [1742] = { + { ["id"] = "explicit.stat_2954116742|4544", ["text"] = "Allocates The Ancient Serpent", ["type"] = "explicit", }, - [1743] = { + { ["id"] = "explicit.stat_2954116742|7847", ["text"] = "Allocates The Fabled Stag", ["type"] = "explicit", }, - [1744] = { + { ["id"] = "explicit.stat_2954116742|34543", ["text"] = "Allocates The Frenzied Bear", ["type"] = "explicit", }, - [1745] = { + { ["id"] = "explicit.stat_2954116742|54031", ["text"] = "Allocates The Great Boar", ["type"] = "explicit", }, - [1746] = { + { ["id"] = "explicit.stat_2954116742|48734", ["text"] = "Allocates The Howling Primate", ["type"] = "explicit", }, - [1747] = { + { ["id"] = "explicit.stat_2954116742|28542", ["text"] = "Allocates The Molten One's Gift", ["type"] = "explicit", }, - [1748] = { + { ["id"] = "explicit.stat_2954116742|2745", ["text"] = "Allocates The Noble Wolf", ["type"] = "explicit", }, - [1749] = { + { ["id"] = "explicit.stat_2954116742|27176", ["text"] = "Allocates The Power Within", ["type"] = "explicit", }, - [1750] = { + { ["id"] = "explicit.stat_2954116742|21349", ["text"] = "Allocates The Quick Fox", ["type"] = "explicit", }, - [1751] = { + { ["id"] = "explicit.stat_2954116742|45370", ["text"] = "Allocates The Raging Ox", ["type"] = "explicit", }, - [1752] = { + { ["id"] = "explicit.stat_2954116742|52971", ["text"] = "Allocates The Soul Meridian", ["type"] = "explicit", }, - [1753] = { + { ["id"] = "explicit.stat_2954116742|11774", ["text"] = "Allocates The Spring Hare", ["type"] = "explicit", }, - [1754] = { + { ["id"] = "explicit.stat_2954116742|22811", ["text"] = "Allocates The Wild Cat", ["type"] = "explicit", }, - [1755] = { + { ["id"] = "explicit.stat_2954116742|53185", ["text"] = "Allocates The Winter Owl", ["type"] = "explicit", }, - [1756] = { + { ["id"] = "explicit.stat_2954116742|35849", ["text"] = "Allocates Thickened Arteries", ["type"] = "explicit", }, - [1757] = { + { ["id"] = "explicit.stat_2954116742|56893", ["text"] = "Allocates Thicket Warding", ["type"] = "explicit", }, - [1758] = { + { ["id"] = "explicit.stat_2954116742|19722", ["text"] = "Allocates Thin Ice", ["type"] = "explicit", }, - [1759] = { + { ["id"] = "explicit.stat_2954116742|59433", ["text"] = "Allocates Thirst for Endurance", ["type"] = "explicit", }, - [1760] = { + { ["id"] = "explicit.stat_2954116742|38532", ["text"] = "Allocates Thirst for Power", ["type"] = "explicit", }, - [1761] = { + { ["id"] = "explicit.stat_2954116742|17600", ["text"] = "Allocates Thirsting Ally", ["type"] = "explicit", }, - [1762] = { + { ["id"] = "explicit.stat_2954116742|43711", ["text"] = "Allocates Thornhide", ["type"] = "explicit", }, - [1763] = { + { ["id"] = "explicit.stat_2954116742|42714", ["text"] = "Allocates Thousand Cuts", ["type"] = "explicit", }, - [1764] = { + { ["id"] = "explicit.stat_2954116742|25711", ["text"] = "Allocates Thrill of Battle", ["type"] = "explicit", }, - [1765] = { + { ["id"] = "explicit.stat_2954116742|15606", ["text"] = "Allocates Thrill of the Fight", ["type"] = "explicit", }, - [1766] = { + { ["id"] = "explicit.stat_2954116742|56265", ["text"] = "Allocates Throatseeker", ["type"] = "explicit", }, - [1767] = { + { ["id"] = "explicit.stat_2954116742|63585", ["text"] = "Allocates Thunderstruck", ["type"] = "explicit", }, - [1768] = { + { ["id"] = "explicit.stat_2954116742|42813", ["text"] = "Allocates Tides of Change", ["type"] = "explicit", }, - [1769] = { + { ["id"] = "explicit.stat_2954116742|24240", ["text"] = "Allocates Time Manipulation", ["type"] = "explicit", }, - [1770] = { + { ["id"] = "explicit.stat_2954116742|65160", ["text"] = "Allocates Titanic", ["type"] = "explicit", }, - [1771] = { + { ["id"] = "explicit.stat_2954116742|2843", ["text"] = "Allocates Tolerant Equipment", ["type"] = "explicit", }, - [1772] = { + { ["id"] = "explicit.stat_2954116742|28482", ["text"] = "Allocates Total Incineration", ["type"] = "explicit", }, - [1773] = { + { ["id"] = "explicit.stat_2954116742|27626", ["text"] = "Allocates Touch the Arcane", ["type"] = "explicit", }, - [1774] = { + { ["id"] = "explicit.stat_2954116742|53823", ["text"] = "Allocates Towering Shield", ["type"] = "explicit", }, - [1775] = { + { ["id"] = "explicit.stat_2954116742|261", ["text"] = "Allocates Toxic Sludge", ["type"] = "explicit", }, - [1776] = { + { ["id"] = "explicit.stat_2954116742|2134", ["text"] = "Allocates Toxic Tolerance", ["type"] = "explicit", }, - [1777] = { + { ["id"] = "explicit.stat_2954116742|52180", ["text"] = "Allocates Trained Deflection", ["type"] = "explicit", }, - [1778] = { + { ["id"] = "explicit.stat_2954116742|57785", ["text"] = "Allocates Trained Turrets", ["type"] = "explicit", }, - [1779] = { + { ["id"] = "explicit.stat_2954116742|750", ["text"] = "Allocates Tribal Fury", ["type"] = "explicit", }, - [1780] = { + { ["id"] = "explicit.stat_2954116742|23221", ["text"] = "Allocates Trick Shot", ["type"] = "explicit", }, - [1781] = { + { ["id"] = "explicit.stat_2954116742|61601", ["text"] = "Allocates True Strike", ["type"] = "explicit", }, - [1782] = { + { ["id"] = "explicit.stat_2954116742|53131", ["text"] = "Allocates Tukohama's Brew", ["type"] = "explicit", }, - [1783] = { + { ["id"] = "explicit.stat_2954116742|35564", ["text"] = "Allocates Turn the Clock Back", ["type"] = "explicit", }, - [1784] = { + { ["id"] = "explicit.stat_2954116742|2335", ["text"] = "Allocates Turn the Clock Forward", ["type"] = "explicit", }, - [1785] = { + { ["id"] = "explicit.stat_2954116742|1352", ["text"] = "Allocates Unbending", ["type"] = "explicit", }, - [1786] = { + { ["id"] = "explicit.stat_2954116742|4579", ["text"] = "Allocates Unbothering Cold", ["type"] = "explicit", }, - [1787] = { + { ["id"] = "explicit.stat_2954116742|64543", ["text"] = "Allocates Unbound Forces", ["type"] = "explicit", }, - [1788] = { + { + ["id"] = "explicit.stat_2954116742|13489", + ["text"] = "Allocates Unbreakable", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_2954116742|53921", ["text"] = "Allocates Unbreaking", ["type"] = "explicit", }, - [1789] = { + { ["id"] = "explicit.stat_2954116742|38888", ["text"] = "Allocates Unerring Impact", ["type"] = "explicit", }, - [1790] = { + { ["id"] = "explicit.stat_2954116742|31189", ["text"] = "Allocates Unexpected Finesse", ["type"] = "explicit", }, - [1791] = { + { ["id"] = "explicit.stat_2954116742|8881", ["text"] = "Allocates Unforgiving", ["type"] = "explicit", }, - [1792] = { + { ["id"] = "explicit.stat_2954116742|32543", ["text"] = "Allocates Unhindered", ["type"] = "explicit", }, - [1793] = { + { ["id"] = "explicit.stat_2954116742|51394", ["text"] = "Allocates Unimpeded", ["type"] = "explicit", }, - [1794] = { + { ["id"] = "explicit.stat_2954116742|20008", ["text"] = "Allocates Unleash Fire", ["type"] = "explicit", }, - [1795] = { + { ["id"] = "explicit.stat_2954116742|4547", ["text"] = "Allocates Unnatural Resilience", ["type"] = "explicit", }, - [1796] = { + { ["id"] = "explicit.stat_2954116742|51602", ["text"] = "Allocates Unsight", ["type"] = "explicit", }, - [1797] = { + { ["id"] = "explicit.stat_2954116742|33585", ["text"] = "Allocates Unspoken Bond", ["type"] = "explicit", }, - [1798] = { + { ["id"] = "explicit.stat_2954116742|18485", ["text"] = "Allocates Unstable Bond", ["type"] = "explicit", }, - [1799] = { + { ["id"] = "explicit.stat_2954116742|33978", ["text"] = "Allocates Unstoppable Barrier", ["type"] = "explicit", }, - [1800] = { + { ["id"] = "explicit.stat_2954116742|10774", ["text"] = "Allocates Unyielding", ["type"] = "explicit", }, - [1801] = { + { ["id"] = "explicit.stat_2954116742|1169", ["text"] = "Allocates Urgent Call", ["type"] = "explicit", }, - [1802] = { + { ["id"] = "explicit.stat_2954116742|17303", ["text"] = "Allocates Utility Ordnance", ["type"] = "explicit", }, - [1803] = { + { ["id"] = "explicit.stat_2954116742|41033", ["text"] = "Allocates Utmost Offering", ["type"] = "explicit", }, - [1804] = { + { ["id"] = "explicit.stat_2954116742|12750", ["text"] = "Allocates Vale Shelter", ["type"] = "explicit", }, - [1805] = { + { ["id"] = "explicit.stat_2954116742|17762", ["text"] = "Allocates Vengeance", ["type"] = "explicit", }, - [1806] = { + { ["id"] = "explicit.stat_2954116742|54937", ["text"] = "Allocates Vengeful Fury", ["type"] = "explicit", }, - [1807] = { + { ["id"] = "explicit.stat_2954116742|4238", ["text"] = "Allocates Versatile Arms", ["type"] = "explicit", }, - [1808] = { + { ["id"] = "explicit.stat_2954116742|65193", ["text"] = "Allocates Viciousness", ["type"] = "explicit", }, - [1809] = { + { ["id"] = "explicit.stat_2954116742|22967", ["text"] = "Allocates Vigilance", ["type"] = "explicit", }, - [1810] = { + { ["id"] = "explicit.stat_2954116742|63739", ["text"] = "Allocates Vigorous Remnants", ["type"] = "explicit", }, - [1811] = { + { ["id"] = "explicit.stat_2954116742|36507", ["text"] = "Allocates Vile Mending", ["type"] = "explicit", }, - [1812] = { + { ["id"] = "explicit.stat_2954116742|31373", ["text"] = "Allocates Vocal Empowerment", ["type"] = "explicit", }, - [1813] = { + { ["id"] = "explicit.stat_2954116742|3492", ["text"] = "Allocates Void", ["type"] = "explicit", }, - [1814] = { + { ["id"] = "explicit.stat_2954116742|17882", ["text"] = "Allocates Volatile Grenades", ["type"] = "explicit", }, - [1815] = { + { ["id"] = "explicit.stat_2954116742|11366", ["text"] = "Allocates Volcanic Skin", ["type"] = "explicit", }, - [1816] = { + { ["id"] = "explicit.stat_2954116742|31955", ["text"] = "Allocates Voll's Protection", ["type"] = "explicit", }, - [1817] = { + { ["id"] = "explicit.stat_2954116742|46060", ["text"] = "Allocates Voracious", ["type"] = "explicit", }, - [1818] = { + { ["id"] = "explicit.stat_2954116742|27303", ["text"] = "Allocates Vulgar Methods", ["type"] = "explicit", }, - [1819] = { + { ["id"] = "explicit.stat_2954116742|25211", ["text"] = "Allocates Waning Hindrances", ["type"] = "explicit", }, - [1820] = { + { ["id"] = "explicit.stat_2954116742|31925", ["text"] = "Allocates Warding Fetish", ["type"] = "explicit", }, - [1821] = { + { ["id"] = "explicit.stat_2954116742|47418", ["text"] = "Allocates Warding Potions", ["type"] = "explicit", }, - [1822] = { + { ["id"] = "explicit.stat_2954116742|53187", ["text"] = "Allocates Warlord Berserker", ["type"] = "explicit", }, - [1823] = { + { ["id"] = "explicit.stat_2954116742|14761", ["text"] = "Allocates Warlord Leader", ["type"] = "explicit", }, - [1824] = { + { ["id"] = "explicit.stat_2954116742|12998", ["text"] = "Allocates Warm the Heart", ["type"] = "explicit", }, - [1825] = { + { ["id"] = "explicit.stat_2954116742|64650", ["text"] = "Allocates Wary Dodging", ["type"] = "explicit", }, - [1826] = { + { ["id"] = "explicit.stat_2954116742|51213", ["text"] = "Allocates Wasting", ["type"] = "explicit", }, - [1827] = { + { ["id"] = "explicit.stat_2954116742|61444", ["text"] = "Allocates Wasting Casts", ["type"] = "explicit", }, - [1828] = { + { ["id"] = "explicit.stat_2954116742|5580", ["text"] = "Allocates Watchtowers", ["type"] = "explicit", }, - [1829] = { + { ["id"] = "explicit.stat_2954116742|51509", ["text"] = "Allocates Waters of Life", ["type"] = "explicit", }, - [1830] = { + { ["id"] = "explicit.stat_2954116742|58198", ["text"] = "Allocates Well of Power", ["type"] = "explicit", }, - [1831] = { + { ["id"] = "explicit.stat_2954116742|2021", ["text"] = "Allocates Wellspring", ["type"] = "explicit", }, - [1832] = { + { ["id"] = "explicit.stat_2954116742|37514", ["text"] = "Allocates Whirling Assault", ["type"] = "explicit", }, - [1833] = { + { ["id"] = "explicit.stat_2954116742|46384", ["text"] = "Allocates Wide Barrier", ["type"] = "explicit", }, - [1834] = { + { ["id"] = "explicit.stat_2954116742|65256", ["text"] = "Allocates Widespread Coverage", ["type"] = "explicit", }, - [1835] = { + { ["id"] = "explicit.stat_2954116742|7809", ["text"] = "Allocates Wild Storm", ["type"] = "explicit", }, - [1836] = { + { ["id"] = "explicit.stat_2954116742|44373", ["text"] = "Allocates Wither Away", ["type"] = "explicit", }, - [1837] = { + { ["id"] = "explicit.stat_2954116742|57921", ["text"] = "Allocates Wolf's Howl", ["type"] = "explicit", }, - [1838] = { + { ["id"] = "explicit.stat_2954116742|62803", ["text"] = "Allocates Woodland Aspect", ["type"] = "explicit", }, - [1839] = { + { ["id"] = "explicit.stat_2954116742|30132", ["text"] = "Allocates Wrapped Quiver", ["type"] = "explicit", }, - [1840] = { + { ["id"] = "explicit.stat_2954116742|35417", ["text"] = "Allocates Wyvern's Breath", ["type"] = "explicit", }, - [1841] = { + { ["id"] = "explicit.stat_2954116742|11184", ["text"] = "Allocates Zarokh's Gift", ["type"] = "explicit", }, - [1842] = { + { ["id"] = "explicit.stat_2954116742|50485", ["text"] = "Allocates Zone of Control", ["type"] = "explicit", }, - [1843] = { + { ["id"] = "explicit.stat_2676834156", ["text"] = "Also grants # Guard", ["type"] = "explicit", }, - [1844] = { + { ["id"] = "explicit.stat_258955603", ["text"] = "Alternating every 5 seconds:Take #% more Damage from HitsTake #% more Damage over time", ["type"] = "explicit", }, - [1845] = { + { ["id"] = "explicit.stat_4126210832", ["text"] = "Always Hits", ["type"] = "explicit", }, - [1846] = { + { ["id"] = "explicit.stat_2214130968", ["text"] = "Always deals Critical Hits against Heavy Stunned Enemies", ["type"] = "explicit", }, - [1847] = { + { ["id"] = "explicit.stat_3831171903|1", ["text"] = "Ancestral Bond", ["type"] = "explicit", }, - [1848] = { + { ["id"] = "explicit.stat_4021234281", ["text"] = "Any number of Poisons from this Weapon can affect a target at the same time", ["type"] = "explicit", }, - [1849] = { + { ["id"] = "explicit.stat_2586152168", ["text"] = "Archon recovery period expires #% faster", ["type"] = "explicit", }, - [1850] = { + { ["id"] = "explicit.stat_3490187949", ["text"] = "Area contains # additional Abysses", ["type"] = "explicit", }, - [1851] = { + { ["id"] = "explicit.stat_358129101", ["text"] = "Area contains # additional Azmeri Spirit", ["type"] = "explicit", }, - [1852] = { + { ["id"] = "explicit.stat_3757259819", ["text"] = "Area contains # additional packs of Beasts", ["type"] = "explicit", }, - [1853] = { + { ["id"] = "explicit.stat_3309089125", ["text"] = "Area contains # additional packs of Bramble Monsters", ["type"] = "explicit", }, - [1854] = { + { ["id"] = "explicit.stat_1436812886", ["text"] = "Area contains # additional packs of Ezomyte Monsters", ["type"] = "explicit", }, - [1855] = { + { ["id"] = "explicit.stat_4130878258", ["text"] = "Area contains # additional packs of Faridun Monsters", ["type"] = "explicit", }, - [1856] = { + { ["id"] = "explicit.stat_2949706590", ["text"] = "Area contains # additional packs of Iron Guards", ["type"] = "explicit", }, - [1857] = { + { ["id"] = "explicit.stat_3592067990", ["text"] = "Area contains # additional packs of Plagued Monsters", ["type"] = "explicit", }, - [1858] = { + { ["id"] = "explicit.stat_1689473577", ["text"] = "Area contains # additional packs of Transcended Monsters", ["type"] = "explicit", }, - [1859] = { + { ["id"] = "explicit.stat_240445958", ["text"] = "Area contains # additional packs of Undead", ["type"] = "explicit", }, - [1860] = { + { ["id"] = "explicit.stat_4181857719", ["text"] = "Area contains # additional packs of Vaal Monsters", ["type"] = "explicit", }, - [1861] = { + { ["id"] = "explicit.stat_1640965354", ["text"] = "Area contains #% increased number of Runic Monster Markers", ["type"] = "explicit", }, - [1862] = { + { ["id"] = "explicit.stat_2839545956", ["text"] = "Area contains a Summoning Circle", ["type"] = "explicit", }, - [1863] = { + { ["id"] = "explicit.stat_1070816711", ["text"] = "Area contains an additional Abyss", ["type"] = "explicit", }, - [1864] = { + { ["id"] = "explicit.stat_395808938", ["text"] = "Area contains an additional Essence", ["type"] = "explicit", }, - [1865] = { + { ["id"] = "explicit.stat_1827854662", ["text"] = "Area contains an additional Incubator Queen", ["type"] = "explicit", }, - [1866] = { + { ["id"] = "explicit.stat_2396719220", ["text"] = "Area contains an additional Magic Chest", ["type"] = "explicit", }, - [1867] = { + { ["id"] = "explicit.stat_231864447", ["text"] = "Area contains an additional Rare Chest", ["type"] = "explicit", }, - [1868] = { + { ["id"] = "explicit.stat_1468737867", ["text"] = "Area contains an additional Shrine", ["type"] = "explicit", }, - [1869] = { + { ["id"] = "explicit.stat_3240183538", ["text"] = "Area contains an additional Strongbox", ["type"] = "explicit", }, - [1870] = { + { ["id"] = "explicit.stat_2571125745", ["text"] = "Area has #% chance to contain a Shrine", ["type"] = "explicit", }, - [1871] = { + { ["id"] = "explicit.stat_2388936716", ["text"] = "Area has #% chance to contain a Strongbox", ["type"] = "explicit", }, - [1872] = { + { ["id"] = "explicit.stat_4098286334", ["text"] = "Area has #% chance to contain an Essence", ["type"] = "explicit", }, - [1873] = { + { ["id"] = "explicit.stat_2890355696", ["text"] = "Area has #% chance to contain four additional Abysses", ["type"] = "explicit", }, - [1874] = { + { ["id"] = "explicit.stat_3815617979", ["text"] = "Area has #% increased chance to contain Azmeri Spirits", ["type"] = "explicit", }, - [1875] = { + { ["id"] = "explicit.stat_1825943485", ["text"] = "Area has #% increased chance to contain Essences", ["type"] = "explicit", }, - [1876] = { + { ["id"] = "explicit.stat_1352729973", ["text"] = "Area has #% increased chance to contain Rogue Exiles", ["type"] = "explicit", }, - [1877] = { + { ["id"] = "explicit.stat_689816330", ["text"] = "Area has #% increased chance to contain Shrines", ["type"] = "explicit", }, - [1878] = { + { ["id"] = "explicit.stat_4279535856", ["text"] = "Area has #% increased chance to contain Strongboxes", ["type"] = "explicit", }, - [1879] = { + { ["id"] = "explicit.stat_267210597", ["text"] = "Area has #% increased chance to contain a Summoning Circle", ["type"] = "explicit", }, - [1880] = { + { ["id"] = "explicit.stat_349586058", ["text"] = "Area has patches of Chilled Ground", ["type"] = "explicit", }, - [1881] = { + { ["id"] = "explicit.stat_133340941", ["text"] = "Area has patches of Ignited Ground", ["type"] = "explicit", }, - [1882] = { + { ["id"] = "explicit.stat_3190283174", ["text"] = "Area has patches of Mana Siphoning Ground", ["type"] = "explicit", }, - [1883] = { + { ["id"] = "explicit.stat_3477720557", ["text"] = "Area has patches of Shocked Ground", ["type"] = "explicit", }, - [1884] = { + { ["id"] = "explicit.stat_3550168289", ["text"] = "Area is inhabited by # additional Rogue Exile", ["type"] = "explicit", }, - [1885] = { + { ["id"] = "explicit.stat_2741291867", ["text"] = "Area is overrun by the Abyssal", ["type"] = "explicit", }, - [1886] = { + { ["id"] = "explicit.stat_3049505189", ["text"] = "Areas which contain Breaches have #% chance to contain an additional Breach", ["type"] = "explicit", }, - [1887] = { + { ["id"] = "explicit.stat_2440265466", ["text"] = "Areas which contain Breaches have #% chance to contain three additional Breaches", ["type"] = "explicit", }, - [1888] = { + { ["id"] = "explicit.stat_3042527515", ["text"] = "Areas with Map Powerful Map Bosses contain an additional Shrine", ["type"] = "explicit", }, - [1889] = { + { ["id"] = "explicit.stat_775597083", ["text"] = "Areas with Powerful Map Bosses contain an additional Azmeri Spirit", ["type"] = "explicit", }, - [1890] = { + { ["id"] = "explicit.stat_2162684861", ["text"] = "Areas with Powerful Map Bosses contain an additional Essence", ["type"] = "explicit", }, - [1891] = { + { ["id"] = "explicit.stat_3040603554", ["text"] = "Areas with Powerful Map Bosses contain an additional Strongbox", ["type"] = "explicit", }, - [1892] = { + { ["id"] = "explicit.stat_713266390", ["text"] = "Armour is increased by Uncapped Fire Resistance", ["type"] = "explicit", }, - [1893] = { + { ["id"] = "explicit.stat_2421436896", ["text"] = "Arrows Fork", ["type"] = "explicit", }, - [1894] = { + { ["id"] = "explicit.stat_2138799639", ["text"] = "Arrows Pierce all targets after Forking", ["type"] = "explicit", }, - [1895] = { + { ["id"] = "explicit.stat_3423006863", ["text"] = "Arrows Pierce an additional Target", ["type"] = "explicit", }, - [1896] = { + { ["id"] = "explicit.stat_1243721142", ["text"] = "Arrows Return if they have Pierced a target which had Fully Broken Armour", ["type"] = "explicit", }, - [1897] = { + { ["id"] = "explicit.stat_300723956", ["text"] = "Attack Hits apply Incision", ["type"] = "explicit", }, - [1898] = { + { ["id"] = "explicit.stat_33298888", ["text"] = "Attack Hits inflict Spectral Fire for # seconds", ["type"] = "explicit", }, - [1899] = { + { ["id"] = "explicit.stat_2720781168", ["text"] = "Attack Projectiles Return if they Pierced at least # times", ["type"] = "explicit", }, - [1900] = { + { ["id"] = "explicit.stat_3868118796", ["text"] = "Attacks Chain an additional time", ["type"] = "explicit", }, - [1901] = { + { ["id"] = "explicit.stat_1484500028", ["text"] = "Attacks Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, - [1902] = { + { ["id"] = "explicit.stat_1049080093", ["text"] = "Attacks Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, - [1903] = { + { ["id"] = "explicit.stat_261503687", ["text"] = "Attacks Gain #% of Physical Damage as extra Chaos Damage", ["type"] = "explicit", }, - [1904] = { + { ["id"] = "explicit.stat_3550545679", ["text"] = "Attacks consume an Endurance Charge to Critically Hit", ["type"] = "explicit", }, - [1905] = { + { ["id"] = "explicit.stat_2157692677", ["text"] = "Attacks cost an additional #% of your maximum Mana", ["type"] = "explicit", }, - [1906] = { + { ["id"] = "explicit.stat_3258071686", ["text"] = "Attacks have Added maximum Lightning Damage equal to #% of maximum Mana", ["type"] = "explicit", }, - [1907] = { + { ["id"] = "explicit.stat_2723294374", ["text"] = "Attacks have added Physical damage equal to #% of maximum Life", ["type"] = "explicit", }, - [1908] = { + { ["id"] = "explicit.stat_3762412853", ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", ["type"] = "explicit", }, - [1909] = { + { ["id"] = "explicit.stat_1740229525", ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", ["type"] = "explicit", }, - [1910] = { + { ["id"] = "explicit.stat_3398283493", ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", ["type"] = "explicit", }, - [1911] = { + { ["id"] = "explicit.stat_2387539034", ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", ["type"] = "explicit", }, - [1912] = { + { ["id"] = "explicit.stat_3620731914", ["text"] = "Attacks with this Weapon gain #% of Physical damage as Extra damage of each Element", ["type"] = "explicit", }, - [1913] = { + { ["id"] = "explicit.stat_566086661", ["text"] = "Attacks with this Weapon have Added Cold Damage equal to #% to #% of maximum Mana", ["type"] = "explicit", }, - [1914] = { + { ["id"] = "explicit.stat_315791320", ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "explicit", }, - [1915] = { + { ["id"] = "explicit.stat_3831171903|4", ["text"] = "Avatar of Fire", ["type"] = "explicit", }, - [1916] = { + { ["id"] = "explicit.stat_429143663", ["text"] = "Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, - [1917] = { + { ["id"] = "explicit.stat_2720982137", ["text"] = "Banner Skills have #% increased Duration", ["type"] = "explicit", }, - [1918] = { + { ["id"] = "explicit.stat_1761741119", ["text"] = "Banners always have maximum Valour", ["type"] = "explicit", }, - [1919] = { + { ["id"] = "explicit.stat_2635559734", ["text"] = "Base Critical Hit Chance for Attacks with Weapons is #%", ["type"] = "explicit", }, - [1920] = { + { ["id"] = "explicit.stat_4287372938", ["text"] = "Bear Skills Convert #% of Physical Damage to Fire Damage", ["type"] = "explicit", }, - [1921] = { + { ["id"] = "explicit.stat_335885735", ["text"] = "Bears the Mark of the Abyssal Lord", ["type"] = "explicit", }, - [1922] = { + { ["id"] = "explicit.stat_1451444093", ["text"] = "Bifurcates Critical Hits", ["type"] = "explicit", }, - [1923] = { + { ["id"] = "explicit.stat_3831171903|28", ["text"] = "Blackflame Covenant", ["type"] = "explicit", }, - [1924] = { + { ["id"] = "explicit.stat_1016759424", ["text"] = "Bleeding you inflict deals Fire Damage instead of Physical Damage", ["type"] = "explicit", }, - [1925] = { + { ["id"] = "explicit.stat_841429130", ["text"] = "Bleeding you inflict is Aggravated", ["type"] = "explicit", }, - [1926] = { + { ["id"] = "explicit.stat_3450276548", ["text"] = "Blind Chilled enemies on Hit", ["type"] = "explicit", }, - [1927] = { + { ["id"] = "explicit.stat_3587953142", ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", ["type"] = "explicit", }, - [1928] = { + { ["id"] = "explicit.stat_60826109", ["text"] = "Blind Targets when you Poison them", ["type"] = "explicit", }, - [1929] = { + { ["id"] = "explicit.stat_4195198267", ["text"] = "Blocking Damage Poisons the Enemy as though dealing # Base Chaos Damage", ["type"] = "explicit", }, - [1930] = { - ["id"] = "explicit.stat_2801937280", + { + ["id"] = "explicit.stat_3831171903|5", ["text"] = "Blood Magic", ["type"] = "explicit", }, - [1931] = { - ["id"] = "explicit.stat_3831171903|5", + { + ["id"] = "explicit.stat_2801937280", ["text"] = "Blood Magic", ["type"] = "explicit", }, - [1932] = { + { ["id"] = "explicit.stat_842299438", ["text"] = "Bolts fired by Crossbow Attacks have #% chance to notexpend Ammunition if you've Reloaded Recently", ["type"] = "explicit", }, - [1933] = { + { ["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", }, - [1934] = { + { ["id"] = "explicit.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "explicit", }, - [1935] = { + { ["id"] = "explicit.stat_2734787892", ["text"] = "Breach Hives in Map have an additional wave of Hiveborn Monsters", ["type"] = "explicit", }, - [1936] = { + { ["id"] = "explicit.stat_1217651243", ["text"] = "Breaches expand to at least # metre in radiusBreaches remain open while there are alive Breach Monsters", ["type"] = "explicit", }, - [1937] = { + { ["id"] = "explicit.stat_1210760818", ["text"] = "Breaches have #% increased Monster density", ["type"] = "explicit", }, - [1938] = { + { ["id"] = "explicit.stat_2224050171", ["text"] = "Breaches in Area contain # additional Clasped Hand", ["type"] = "explicit", }, - [1939] = { + { ["id"] = "explicit.stat_1090596078", ["text"] = "Breaches in Area spawn #% increased Magic Monsters", ["type"] = "explicit", }, - [1940] = { + { ["id"] = "explicit.stat_1653625239", ["text"] = "Breaches in Area spawn an additional Rare Monster", ["type"] = "explicit", }, - [1941] = { + { ["id"] = "explicit.stat_2224050171", ["text"] = "Breaches in Map contain # additional Clasped Hand", ["type"] = "explicit", }, - [1942] = { + { ["id"] = "explicit.stat_1210760818", ["text"] = "Breaches in Map have #% increased Pack Size", ["type"] = "explicit", }, - [1943] = { + { ["id"] = "explicit.stat_2504358770", ["text"] = "Breaches in Map open and close #% faster", ["type"] = "explicit", }, - [1944] = { + { ["id"] = "explicit.stat_1090596078", ["text"] = "Breaches in Map spawn #% increased Magic Monsters", ["type"] = "explicit", }, - [1945] = { + { ["id"] = "explicit.stat_1653625239", ["text"] = "Breaches in Map spawn an additional Rare Monster", ["type"] = "explicit", }, - [1946] = { + { ["id"] = "explicit.stat_2504358770", ["text"] = "Breaches open and close #% faster", ["type"] = "explicit", }, - [1947] = { + { ["id"] = "explicit.stat_1776411443", ["text"] = "Break #% increased Armour", ["type"] = "explicit", }, - [1948] = { + { ["id"] = "explicit.stat_1103616075", ["text"] = "Break Armour equal to #% of Physical Damage dealt", ["type"] = "explicit", }, - [1949] = { + { ["id"] = "explicit.stat_1286199571", ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", ["type"] = "explicit", }, - [1950] = { + { ["id"] = "explicit.stat_949573361", ["text"] = "Breaks Armour equal to #% of damage from Hits with this weapon", ["type"] = "explicit", }, - [1951] = { + { ["id"] = "explicit.stat_3831171903|24", ["text"] = "Bulwark", ["type"] = "explicit", }, - [1952] = { + { ["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", }, - [1953] = { + { ["id"] = "explicit.stat_738592688", ["text"] = "Can Allocate Passive Skills from the Mercenary's starting point", ["type"] = "explicit", }, - [1954] = { + { ["id"] = "explicit.stat_3116298775", ["text"] = "Can Allocate Passive Skills from the Ranger's starting point", ["type"] = "explicit", }, - [1955] = { + { ["id"] = "explicit.stat_2218479786", ["text"] = "Can Allocate Passive Skills from the Shadow's starting point", ["type"] = "explicit", }, - [1956] = { + { ["id"] = "explicit.stat_3359496001", ["text"] = "Can Allocate Passive Skills from the Sorceress's starting point", ["type"] = "explicit", }, - [1957] = { + { ["id"] = "explicit.stat_1688294122", ["text"] = "Can Allocate Passive Skills from the Templar's starting point", ["type"] = "explicit", }, - [1958] = { + { ["id"] = "explicit.stat_1359862146", ["text"] = "Can Allocate Passive Skills from the Warrior's starting point", ["type"] = "explicit", }, - [1959] = { + { ["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", }, - [1960] = { + { ["id"] = "explicit.stat_2500154144", ["text"] = "Can Reroll Favours at Ritual Altars in your Maps twice as many times", ["type"] = "explicit", }, - [1961] = { + { ["id"] = "explicit.stat_1161337167", ["text"] = "Can be modified while Corrupted", ["type"] = "explicit", }, - [1962] = { + { ["id"] = "explicit.stat_1135194732", ["text"] = "Can have # additional Instilled Modifiers", ["type"] = "explicit", }, - [1963] = { + { ["id"] = "explicit.stat_3418590244", ["text"] = "Can only be applied to Precursor Tower MapsCompleting the Tower makes all nearby Maps accessible", ["type"] = "explicit", }, - [1964] = { + { ["id"] = "explicit.stat_4007482102", ["text"] = "Can't use Body Armour", ["type"] = "explicit", }, - [1965] = { + { ["id"] = "explicit.stat_64726306", ["text"] = "Can't use other Rings", ["type"] = "explicit", }, - [1966] = { + { ["id"] = "explicit.stat_1465760952", ["text"] = "Cannot Block", ["type"] = "explicit", }, - [1967] = { + { ["id"] = "explicit.stat_474452755", ["text"] = "Cannot Evade Enemy Attacks", ["type"] = "explicit", }, - [1968] = { + { ["id"] = "explicit.stat_4062529591", ["text"] = "Cannot Immobilise enemies", ["type"] = "explicit", }, - [1969] = { + { ["id"] = "explicit.stat_1458880585", ["text"] = "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", ["type"] = "explicit", }, - [1970] = { + { ["id"] = "explicit.stat_1436284579", ["text"] = "Cannot be Blinded", ["type"] = "explicit", }, - [1971] = { + { ["id"] = "explicit.stat_331731406", ["text"] = "Cannot be Ignited", ["type"] = "explicit", }, - [1972] = { + { ["id"] = "explicit.stat_1000739259", ["text"] = "Cannot be Light Stunned", ["type"] = "explicit", }, - [1973] = { + { ["id"] = "explicit.stat_2252419505", ["text"] = "Cannot be Light Stunned by Deflected Hits", ["type"] = "explicit", }, - [1974] = { + { ["id"] = "explicit.stat_3835551335", ["text"] = "Cannot be Poisoned", ["type"] = "explicit", }, - [1975] = { + { ["id"] = "explicit.stat_491899612", ["text"] = "Cannot be Shocked", ["type"] = "explicit", }, - [1976] = { + { ["id"] = "explicit.stat_1237409891", ["text"] = "Cannot be Used manually", ["type"] = "explicit", }, - [1977] = { + { ["id"] = "explicit.stat_398335579", ["text"] = "Cannot be used while Manifested", ["type"] = "explicit", }, - [1978] = { + { ["id"] = "explicit.stat_410952253", ["text"] = "Cannot have Energy Shield", ["type"] = "explicit", }, - [1979] = { + { ["id"] = "explicit.stat_4056809290", ["text"] = "Cannot inflict Elemental Ailments", ["type"] = "explicit", }, - [1980] = { + { ["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", }, - [1981] = { + { ["id"] = "explicit.stat_1961849903", ["text"] = "Cannot use Projectile Attacks", ["type"] = "explicit", }, - [1982] = { + { ["id"] = "explicit.stat_65135897", ["text"] = "Cannot use Shield Skills", ["type"] = "explicit", }, - [1983] = { + { ["id"] = "explicit.stat_2598171606", ["text"] = "Cannot use Warcries", ["type"] = "explicit", }, - [1984] = { + { ["id"] = "explicit.stat_791928121", ["text"] = "Causes #% increased Stun Buildup", ["type"] = "explicit", }, - [1985] = { + { ["id"] = "explicit.stat_2091621414", ["text"] = "Causes Bleeding on Hit", ["type"] = "explicit", }, - [1986] = { + { ["id"] = "explicit.stat_1559935218", ["text"] = "Causes Daze buildup equal to #% of Damage dealt", ["type"] = "explicit", }, - [1987] = { + { ["id"] = "explicit.stat_769129523", ["text"] = "Causes Double Stun Buildup", ["type"] = "explicit", }, - [1988] = { + { ["id"] = "explicit.stat_2957287092", ["text"] = "Chance to Block Damage is Lucky", ["type"] = "explicit", }, - [1989] = { + { ["id"] = "explicit.stat_1675120891", ["text"] = "Chance to Deflect is Lucky while on Low Life", ["type"] = "explicit", }, - [1990] = { + { ["id"] = "explicit.stat_2315177528", ["text"] = "Chaos Damage from Hits also Contributes to Electrocute Buildup", ["type"] = "explicit", }, - [1991] = { + { ["id"] = "explicit.stat_2973498992", ["text"] = "Chaos Damage from Hits also Contributes to Freeze Buildup", ["type"] = "explicit", }, - [1992] = { + { ["id"] = "explicit.stat_2418601510", ["text"] = "Chaos Damage from Hits also Contributes to Shock Chance", ["type"] = "explicit", }, - [1993] = { + { ["id"] = "explicit.stat_3831171903|8", ["text"] = "Chaos Inoculation", ["type"] = "explicit", }, - [1994] = { + { ["id"] = "explicit.stat_2439129490", ["text"] = "Chaos Resistance is zero", ["type"] = "explicit", }, - [1995] = { + { ["id"] = "explicit.stat_3480095574", ["text"] = "Charms applied to you have #% increased Effect", ["type"] = "explicit", }, - [1996] = { + { ["id"] = "explicit.stat_185580205", ["text"] = "Charms gain # charge per Second", ["type"] = "explicit", }, - [1997] = { + { ["id"] = "explicit.stat_2620375641", ["text"] = "Charms use no Charges", ["type"] = "explicit", }, - [1998] = { + { ["id"] = "explicit.stat_1261612903", ["text"] = "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", ["type"] = "explicit", }, - [1999] = { + { ["id"] = "explicit.stat_4207433208", ["text"] = "Cold Resistance is unaffected by Area Penalties", ["type"] = "explicit", }, - [2000] = { + { ["id"] = "explicit.stat_234296660", ["text"] = "Companions deal #% increased Damage", ["type"] = "explicit", }, - [2001] = { + { ["id"] = "explicit.stat_1067622524", ["text"] = "Companions deal #% increased damage to your Marked targets", ["type"] = "explicit", }, - [2002] = { + { ["id"] = "explicit.stat_666077204", ["text"] = "Companions have #% increased Attack Speed", ["type"] = "explicit", }, - [2003] = { + { ["id"] = "explicit.stat_1805182458", ["text"] = "Companions have #% increased maximum Life", ["type"] = "explicit", }, - [2004] = { + { ["id"] = "explicit.stat_3831171903|13", ["text"] = "Conduit", ["type"] = "explicit", }, - [2005] = { + { ["id"] = "explicit.stat_1938221597", ["text"] = "Conquered Attribute Passive Skills also grant # to Dexterity", ["type"] = "explicit", }, - [2006] = { + { ["id"] = "explicit.stat_3116427713", ["text"] = "Conquered Attribute Passive Skills also grant # to Intelligence", ["type"] = "explicit", }, - [2007] = { + { ["id"] = "explicit.stat_3871530702", ["text"] = "Conquered Attribute Passive Skills also grant # to Strength", ["type"] = "explicit", }, - [2008] = { + { ["id"] = "explicit.stat_1119086588", ["text"] = "Conquered Attribute Passive Skills also grant # to Tribute", ["type"] = "explicit", }, - [2009] = { + { ["id"] = "explicit.stat_2552484522", ["text"] = "Conquered Attribute Passive Skills also grant # to all Attributes", ["type"] = "explicit", }, - [2010] = { + { ["id"] = "explicit.stat_970480050", ["text"] = "Conquered Small Passive Skills also grant #% increased Armour", ["type"] = "explicit", }, - [2011] = { + { ["id"] = "explicit.stat_8816597", ["text"] = "Conquered Small Passive Skills also grant #% increased Attack damage", ["type"] = "explicit", }, - [2012] = { + { ["id"] = "explicit.stat_2601021356", ["text"] = "Conquered Small Passive Skills also grant #% increased Chaos damage", ["type"] = "explicit", }, - [2013] = { + { ["id"] = "explicit.stat_1283490138", ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", ["type"] = "explicit", }, - [2014] = { + { ["id"] = "explicit.stat_4240116297", ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Damage", ["type"] = "explicit", }, - [2015] = { + { ["id"] = "explicit.stat_2780670304", ["text"] = "Conquered Small Passive Skills also grant #% increased Energy Shield", ["type"] = "explicit", }, - [2016] = { + { ["id"] = "explicit.stat_468694293", ["text"] = "Conquered Small Passive Skills also grant #% increased Evasion Rating", ["type"] = "explicit", }, - [2017] = { + { ["id"] = "explicit.stat_4264952559", ["text"] = "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", ["type"] = "explicit", }, - [2018] = { + { ["id"] = "explicit.stat_1818915622", ["text"] = "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", ["type"] = "explicit", }, - [2019] = { + { ["id"] = "explicit.stat_1829333149", ["text"] = "Conquered Small Passive Skills also grant #% increased Physical damage", ["type"] = "explicit", }, - [2020] = { + { ["id"] = "explicit.stat_3038857426", ["text"] = "Conquered Small Passive Skills also grant #% increased Spell damage", ["type"] = "explicit", }, - [2021] = { + { ["id"] = "explicit.stat_2475870935", ["text"] = "Conquered Small Passive Skills also grant #% increased Stun Threshold", ["type"] = "explicit", }, - [2022] = { + { ["id"] = "explicit.stat_3343033032", ["text"] = "Conquered Small Passive Skills also grant Minions deal #% increased damage", ["type"] = "explicit", }, - [2023] = { + { ["id"] = "explicit.stat_1683568809", ["text"] = "Convert #% of Fire Damage with Mace Skills to Cold Damage", ["type"] = "explicit", }, - [2024] = { + { ["id"] = "explicit.stat_4274637468", ["text"] = "Convert #% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", ["type"] = "explicit", }, - [2025] = { + { ["id"] = "explicit.stat_2896801635", ["text"] = "Convert 100% of maximum Energy Shield to maximum Divinity", ["type"] = "explicit", }, - [2026] = { + { ["id"] = "explicit.stat_3351912431", ["text"] = "Convert All Armour to Evasion Rating", ["type"] = "explicit", }, - [2027] = { + { ["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", }, - [2028] = { + { ["id"] = "explicit.stat_1658498488", ["text"] = "Corrupted Blood cannot be inflicted on you", ["type"] = "explicit", }, - [2029] = { + { ["id"] = "explicit.stat_891466814", ["text"] = "Create a Fragment of Divinity in your Presence every 4 seconds", ["type"] = "explicit", }, - [2030] = { + { ["id"] = "explicit.stat_3849649145", ["text"] = "Creates Consecrated Ground on use", ["type"] = "explicit", }, - [2031] = { + { ["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", }, - [2032] = { + { ["id"] = "explicit.stat_3831171903|26", ["text"] = "Crimson Assault", ["type"] = "explicit", }, - [2033] = { + { ["id"] = "explicit.stat_1289045485", ["text"] = "Critical Hits Ignore Enemy Monster Lightning Resistance", ["type"] = "explicit", }, - [2034] = { + { ["id"] = "explicit.stat_62849030", ["text"] = "Critical Hits Poison the enemy", ["type"] = "explicit", }, - [2035] = { + { ["id"] = "explicit.stat_3414998042", ["text"] = "Critical Hits cannot Extract Impale", ["type"] = "explicit", }, - [2036] = { + { ["id"] = "explicit.stat_1094937621", ["text"] = "Critical Hits ignore Enemy Monster Elemental Resistances", ["type"] = "explicit", }, - [2037] = { + { ["id"] = "explicit.stat_3058238353", ["text"] = "Critical Hits inflict Impale", ["type"] = "explicit", }, - [2038] = { + { ["id"] = "explicit.stat_1550131834", ["text"] = "Critical Hits with Spells apply # Stack of Critical Weakness", ["type"] = "explicit", }, - [2039] = { + { ["id"] = "explicit.stat_2524254339", ["text"] = "Culling Strike", ["type"] = "explicit", }, - [2040] = { + { ["id"] = "explicit.stat_1158324489", ["text"] = "Culling Strike against Frozen Enemies", ["type"] = "explicit", }, - [2041] = { + { ["id"] = "explicit.stat_2378065031", ["text"] = "Curse Skills have #% increased Cast Speed", ["type"] = "explicit", }, - [2042] = { + { ["id"] = "explicit.stat_3751072557", ["text"] = "Curses have no Activation Delay", ["type"] = "explicit", }, - [2043] = { + { ["id"] = "explicit.stat_4275855121", ["text"] = "Curses you inflict are reflected back to you", ["type"] = "explicit", }, - [2044] = { + { ["id"] = "explicit.stat_1367119630", ["text"] = "Curses you inflict can affect Hexproof Enemies", ["type"] = "explicit", }, - [2045] = { + { ["id"] = "explicit.stat_2609822974", ["text"] = "Curses you inflict have infinite Duration", ["type"] = "explicit", }, - [2046] = { + { ["id"] = "explicit.stat_1793470535", ["text"] = "Curses you inflict ignore Curse limit", ["type"] = "explicit", }, - [2047] = { + { ["id"] = "explicit.stat_986616727", ["text"] = "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", ["type"] = "explicit", }, - [2048] = { + { ["id"] = "explicit.stat_2875218423", ["text"] = "Damage Blocked is Recouped as Mana", ["type"] = "explicit", }, - [2049] = { + { ["id"] = "explicit.stat_3417711605", ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "explicit", }, - [2050] = { + { ["id"] = "explicit.stat_2101383955", ["text"] = "Damage Penetrates #% Elemental Resistances", ["type"] = "explicit", }, - [2051] = { + { ["id"] = "explicit.stat_2653955271", ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, - [2052] = { + { ["id"] = "explicit.stat_818778753", ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "explicit", }, - [2053] = { + { ["id"] = "explicit.stat_3753748365", ["text"] = "Damage of Enemies Hitting you is Unlucky while you are on Low Life", ["type"] = "explicit", }, - [2054] = { + { ["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", }, - [2055] = { + { ["id"] = "explicit.stat_2886108529", ["text"] = "Damage over Time cannot bypass your Energy Shield", ["type"] = "explicit", }, - [2056] = { + { ["id"] = "explicit.stat_2432200638", ["text"] = "Damage taken Recouped as Life is also Recouped as Energy Shield", ["type"] = "explicit", }, - [2057] = { + { ["id"] = "explicit.stat_538241406", ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, - [2058] = { + { ["id"] = "explicit.stat_3831171903|17", ["text"] = "Dance With Death", ["type"] = "explicit", }, - [2059] = { + { ["id"] = "explicit.stat_3146310524", ["text"] = "Dazes on Hit", ["type"] = "explicit", }, - [2060] = { + { ["id"] = "explicit.stat_2933846633", ["text"] = "Dazes on Hit", ["type"] = "explicit", }, - [2061] = { + { ["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", }, - [2062] = { + { ["id"] = "explicit.stat_2301852600", ["text"] = "Deal #% of Overkill damage to enemies within 2 metres of the enemy killed", ["type"] = "explicit", }, - [2063] = { + { ["id"] = "explicit.stat_2998305364", ["text"] = "Deal no Elemental Damage", ["type"] = "explicit", }, - [2064] = { + { ["id"] = "explicit.stat_2107791433", ["text"] = "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", ["type"] = "explicit", }, - [2065] = { + { ["id"] = "explicit.stat_3311259821", ["text"] = "Deals #% of current Mana as Chaos Damage to you when Effect ends", ["type"] = "explicit", }, - [2066] = { + { ["id"] = "explicit.stat_541021467", ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", ["type"] = "explicit", }, - [2067] = { + { ["id"] = "explicit.stat_1238227257", ["text"] = "Debuffs on you expire #% faster", ["type"] = "explicit", }, - [2068] = { + { ["id"] = "explicit.stat_3650992555", ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", ["type"] = "explicit", }, - [2069] = { + { ["id"] = "explicit.stat_3872034802", ["text"] = "Decimating Strike", ["type"] = "explicit", }, - [2070] = { + { ["id"] = "explicit.stat_679087890", ["text"] = "Defend against Hits as though you had #% more Armour per 1% current Energy Shield", ["type"] = "explicit", }, - [2071] = { + { ["id"] = "explicit.stat_1539671749", ["text"] = "Defend with #% of Armour while you have Energy Shield", ["type"] = "explicit", }, - [2072] = { + { ["id"] = "explicit.stat_3387008487", ["text"] = "Defend with 200% of Armour", ["type"] = "explicit", }, - [2073] = { + { ["id"] = "explicit.stat_3138344128", ["text"] = "Defend with 200% of Armour during effect", ["type"] = "explicit", }, - [2074] = { + { ["id"] = "explicit.stat_1345835998", ["text"] = "Deferring Favours at Ritual Altars in Area costs #% increased Tribute", ["type"] = "explicit", }, - [2075] = { + { ["id"] = "explicit.stat_1345835998", ["text"] = "Deferring Favours at Ritual Altars in Map costs #% increased Tribute", ["type"] = "explicit", }, - [2076] = { + { ["id"] = "explicit.stat_3428124128", ["text"] = "Delirious Monsters Killed in Area provide #% increased Reward Progress", ["type"] = "explicit", }, - [2077] = { + { ["id"] = "explicit.stat_3428124128", ["text"] = "Delirious Monsters Killed in Map provide #% increased Reward Progress", ["type"] = "explicit", }, - [2078] = { + { ["id"] = "explicit.stat_3962960008", ["text"] = "Delirium Encounters in Area are #% more likely to spawn Unique Bosses", ["type"] = "explicit", }, - [2079] = { + { ["id"] = "explicit.stat_1770833858", ["text"] = "Delirium Encounters in Area have #% chance to generate an additional Reward", ["type"] = "explicit", }, - [2080] = { + { ["id"] = "explicit.stat_3962960008", ["text"] = "Delirium Encounters in Map are #% more likely to spawn Unique Bosses", ["type"] = "explicit", }, - [2081] = { + { ["id"] = "explicit.stat_1770833858", ["text"] = "Delirium Encounters in affected Map have #% chance to generate an additional Reward", ["type"] = "explicit", }, - [2082] = { + { ["id"] = "explicit.stat_3350944114", ["text"] = "Delirium Fog in Area dissipates #% faster", ["type"] = "explicit", }, - [2083] = { - ["id"] = "explicit.stat_1174954559", + { + ["id"] = "explicit.stat_3226351972", ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", ["type"] = "explicit", }, - [2084] = { - ["id"] = "explicit.stat_3226351972", + { + ["id"] = "explicit.stat_1174954559", ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", ["type"] = "explicit", }, - [2085] = { + { ["id"] = "explicit.stat_551040294", ["text"] = "Delirium Fog in Area spawns #% increased Fracturing Mirrors", ["type"] = "explicit", }, - [2086] = { + { ["id"] = "explicit.stat_3350944114", ["text"] = "Delirium Fog in Map dissipates #% faster", ["type"] = "explicit", }, - [2087] = { + { ["id"] = "explicit.stat_3226351972", ["text"] = "Delirium Fog in Map lasts # additional seconds before dissipating", ["type"] = "explicit", }, - [2088] = { + { ["id"] = "explicit.stat_1174954559", ["text"] = "Delirium Fog in Map lasts # additional seconds before dissipating", ["type"] = "explicit", }, - [2089] = { + { ["id"] = "explicit.stat_551040294", ["text"] = "Delirium Fog in Map spawns #% increased Fracturing Mirrors", ["type"] = "explicit", }, - [2090] = { + { ["id"] = "explicit.stat_900933517", ["text"] = "Delirium Fog in Map spawns #% increased MirrorShards", ["type"] = "explicit", }, - [2091] = { + { ["id"] = "explicit.stat_1084853859", ["text"] = "Delirium Fog in your Maps never dissipates", ["type"] = "explicit", }, - [2092] = { + { ["id"] = "explicit.stat_3465791711", ["text"] = "Delirium Monsters in Area have #% increased Pack Size", ["type"] = "explicit", }, - [2093] = { + { ["id"] = "explicit.stat_3465791711", ["text"] = "Delirium Monsters in Map have #% increased Pack Size", ["type"] = "explicit", }, - [2094] = { + { ["id"] = "explicit.stat_1769611692", ["text"] = "Delirium in Area increases #% faster with distance from the mirror", ["type"] = "explicit", }, - [2095] = { + { ["id"] = "explicit.stat_1769611692", ["text"] = "Delirium in Map increases #% faster with distance from the mirror", ["type"] = "explicit", }, - [2096] = { + { ["id"] = "explicit.stat_2971398565", ["text"] = "Divine Flight", ["type"] = "explicit", }, - [2097] = { + { ["id"] = "explicit.stat_3518087336", ["text"] = "Dodge Roll avoids all Hits", ["type"] = "explicit", }, - [2098] = { + { ["id"] = "explicit.stat_1298316550", ["text"] = "Dodge Roll passes through Enemies", ["type"] = "explicit", }, - [2099] = { + { ["id"] = "explicit.stat_3686997387", ["text"] = "Double Stun Threshold while Shield is Raised", ["type"] = "explicit", }, - [2100] = { + { ["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", }, - [2101] = { + { ["id"] = "explicit.stat_65133983", ["text"] = "Drop Shocked Ground while moving, lasting 8 seconds", ["type"] = "explicit", }, - [2102] = { + { ["id"] = "explicit.stat_3891922348", ["text"] = "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", ["type"] = "explicit", }, - [2103] = { + { ["id"] = "explicit.stat_2103621252", ["text"] = "Eat a Soul when you Hit a Unique Enemy, no more than once every second", ["type"] = "explicit", }, - [2104] = { + { ["id"] = "explicit.stat_2932359713", ["text"] = "Effect is not removed when Unreserved Life is Filled", ["type"] = "explicit", }, - [2105] = { + { ["id"] = "explicit.stat_3969608626", ["text"] = "Effect is not removed when Unreserved Mana is Filled", ["type"] = "explicit", }, - [2106] = { - ["id"] = "explicit.stat_3831171903|9", + { + ["id"] = "explicit.stat_2262736444", ["text"] = "Eldritch Battery", ["type"] = "explicit", }, - [2107] = { - ["id"] = "explicit.stat_2262736444", + { + ["id"] = "explicit.stat_3831171903|9", ["text"] = "Eldritch Battery", ["type"] = "explicit", }, - [2108] = { + { ["id"] = "explicit.stat_1000566389", ["text"] = "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", ["type"] = "explicit", }, - [2109] = { + { ["id"] = "explicit.stat_1370804479", ["text"] = "Elemental Ailments other than Freeze you inflict are Reflected to you", ["type"] = "explicit", }, - [2110] = { + { ["id"] = "explicit.stat_2678924815", ["text"] = "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance", ["type"] = "explicit", }, - [2111] = { + { ["id"] = "explicit.stat_3831171903|23", ["text"] = "Elemental Equilibrium", ["type"] = "explicit", }, - [2112] = { + { ["id"] = "explicit.stat_1569101201", ["text"] = "Empowered Attacks deal #% increased Damage", ["type"] = "explicit", }, - [2113] = { + { ["id"] = "explicit.stat_3119292058", ["text"] = "Enemies Chilled by your Hits can be Shattered as though Frozen", ["type"] = "explicit", }, - [2114] = { + { ["id"] = "explicit.stat_1816894864", ["text"] = "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", ["type"] = "explicit", }, - [2115] = { + { ["id"] = "explicit.stat_849085925", ["text"] = "Enemies Frozen by you take #% increased Damage", ["type"] = "explicit", }, - [2116] = { + { ["id"] = "explicit.stat_1746561819", ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", ["type"] = "explicit", }, - [2117] = { + { ["id"] = "explicit.stat_212649958", ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", ["type"] = "explicit", }, - [2118] = { + { ["id"] = "explicit.stat_359357545", ["text"] = "Enemies Hindered by you take #% increased Physical Damage", ["type"] = "explicit", }, - [2119] = { + { ["id"] = "explicit.stat_1613322341", ["text"] = "Enemies Immobilised by you take #% less Damage", ["type"] = "explicit", }, - [2120] = { + { ["id"] = "explicit.stat_381470861", ["text"] = "Enemies are Culled on Block", ["type"] = "explicit", }, - [2121] = { + { ["id"] = "explicit.stat_3868746097", ["text"] = "Enemies have an Accuracy Penalty against you based on Distance", ["type"] = "explicit", }, - [2122] = { + { ["id"] = "explicit.stat_1224838456", ["text"] = "Enemies in your Presence Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, - [2123] = { + { ["id"] = "explicit.stat_2786852525", ["text"] = "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", ["type"] = "explicit", }, - [2124] = { - ["id"] = "explicit.stat_1464727508", + { + ["id"] = "explicit.stat_2080373320", ["text"] = "Enemies in your Presence are Blinded", ["type"] = "explicit", }, - [2125] = { - ["id"] = "explicit.stat_2080373320", + { + ["id"] = "explicit.stat_1464727508", ["text"] = "Enemies in your Presence are Blinded", ["type"] = "explicit", }, - [2126] = { + { ["id"] = "explicit.stat_2890401248", ["text"] = "Enemies in your Presence are Hindered", ["type"] = "explicit", }, - [2127] = { + { ["id"] = "explicit.stat_1433051415", ["text"] = "Enemies in your Presence are Ignited as though dealt # Base Fire Damage", ["type"] = "explicit", }, - [2128] = { + { ["id"] = "explicit.stat_3491722585", ["text"] = "Enemies in your Presence are Intimidated", ["type"] = "explicit", }, - [2129] = { + { ["id"] = "explicit.stat_1285684287", ["text"] = "Enemies in your Presence count as being on Low Life", ["type"] = "explicit", }, - [2130] = { + { ["id"] = "explicit.stat_2836928993", ["text"] = "Enemies in your Presence count as having double Power", ["type"] = "explicit", }, - [2131] = { + { ["id"] = "explicit.stat_3628041050", ["text"] = "Enemies in your Presence gain 1 Gruelling Madness each second", ["type"] = "explicit", }, - [2132] = { + { ["id"] = "explicit.stat_990363519", ["text"] = "Enemies in your Presence have #% to Fire Resistance", ["type"] = "explicit", }, - [2133] = { + { ["id"] = "explicit.stat_724806967", ["text"] = "Enemies in your Presence have Exposure", ["type"] = "explicit", }, - [2134] = { + { ["id"] = "explicit.stat_1546580830", ["text"] = "Enemies in your Presence have Lightning Resistance equal to yours", ["type"] = "explicit", }, - [2135] = { + { ["id"] = "explicit.stat_1827379101", ["text"] = "Enemies in your Presence have additional Power equal to their Gruelling Madness", ["type"] = "explicit", }, - [2136] = { + { ["id"] = "explicit.stat_1953536251", ["text"] = "Enemies in your Presence have at least #% of Life Reserved", ["type"] = "explicit", }, - [2137] = { + { ["id"] = "explicit.stat_83011992", ["text"] = "Enemies in your Presence have no Elemental Resistances", ["type"] = "explicit", }, - [2138] = { + { ["id"] = "explicit.stat_1576794517", ["text"] = "Enemies in your Presence killed by anyone count as being killed by you instead", ["type"] = "explicit", }, - [2139] = { + { ["id"] = "explicit.stat_1509533589", ["text"] = "Enemies take #% increased Damage for each Elemental Ailment type amongyour Ailments on them", ["type"] = "explicit", }, - [2140] = { + { ["id"] = "explicit.stat_1772929282", ["text"] = "Enemies you Curse have #% to Chaos Resistance", ["type"] = "explicit", }, - [2141] = { + { ["id"] = "explicit.stat_2083058281", ["text"] = "Enemies you Mark take #% increased Damage", ["type"] = "explicit", }, - [2142] = { + { ["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", }, - [2143] = { + { ["id"] = "explicit.stat_793801176", ["text"] = "Energy Generation is doubled", ["type"] = "explicit", }, - [2144] = { + { ["id"] = "explicit.stat_1419390131", ["text"] = "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", ["type"] = "explicit", }, - [2145] = { + { ["id"] = "explicit.stat_1056492907", ["text"] = "Energy Shield Recharge starts on use", ["type"] = "explicit", }, - [2146] = { + { ["id"] = "explicit.stat_2402413437", ["text"] = "Energy Shield Recharge starts when you use a Mana Flask", ["type"] = "explicit", }, - [2147] = { + { ["id"] = "explicit.stat_2147773348", ["text"] = "Energy Shield is increased by Uncapped Cold Resistance", ["type"] = "explicit", }, - [2148] = { + { ["id"] = "explicit.stat_752930724", ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", ["type"] = "explicit", }, - [2149] = { + { ["id"] = "explicit.stat_2480151124", ["text"] = "Equipment has no Attribute Requirements", ["type"] = "explicit", }, - [2150] = { + { ["id"] = "explicit.stat_3831171903|15", ["text"] = "Eternal Youth", ["type"] = "explicit", }, - [2151] = { + { ["id"] = "explicit.stat_1272938854", ["text"] = "Evasion Rating is doubled if you have not been Hit Recently", ["type"] = "explicit", }, - [2152] = { + { ["id"] = "explicit.stat_419098854", ["text"] = "Evasion Rating is increased by Uncapped Lightning Resistance", ["type"] = "explicit", }, - [2153] = { + { ["id"] = "explicit.stat_145598447", ["text"] = "Everlasting Sacrifice", ["type"] = "explicit", }, - [2154] = { - ["id"] = "explicit.stat_2625554454", + { + ["id"] = "explicit.stat_2879778895", ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", ["type"] = "explicit", }, - [2155] = { - ["id"] = "explicit.stat_2879778895", + { + ["id"] = "explicit.stat_2625554454", ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", ["type"] = "explicit", }, - [2156] = { + { ["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", }, - [2157] = { + { ["id"] = "explicit.stat_3764198549", ["text"] = "Every 3 seconds, Consume a nearby Corpse to Recover #% of maximum Life", ["type"] = "explicit", }, - [2158] = { + { ["id"] = "explicit.stat_1457411584", ["text"] = "Every 4 seconds, Recover 1 Life for every # Life Recovery per second from Regeneration", ["type"] = "explicit", }, - [2159] = { + { ["id"] = "explicit.stat_1895552497", ["text"] = "Every 5 Rage also grants #% of Damage taken Recouped as Life", ["type"] = "explicit", }, - [2160] = { + { ["id"] = "explicit.stat_2995914769", ["text"] = "Every Rage also grants #% increased Armour", ["type"] = "explicit", }, - [2161] = { + { ["id"] = "explicit.stat_352044736", ["text"] = "Every Rage also grants #% increased Stun Threshold", ["type"] = "explicit", }, - [2162] = { + { ["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", }, - [2163] = { + { ["id"] = "explicit.stat_1052498387", ["text"] = "Every second, inflicts Critical Weakness on enemies in your Presence for # second", ["type"] = "explicit", }, - [2164] = { + { ["id"] = "explicit.stat_636464211", ["text"] = "Excess Life Recovery added as Guard for # seconds", ["type"] = "explicit", }, - [2165] = { + { ["id"] = "explicit.stat_999436592", ["text"] = "Excess Life Recovery from Leech is applied to Energy Shield", ["type"] = "explicit", }, - [2166] = { + { ["id"] = "explicit.stat_144770454", ["text"] = "Expedition Monsters in your Maps spawn with half of their Life missing", ["type"] = "explicit", }, - [2167] = { + { ["id"] = "explicit.stat_3753446846", ["text"] = "Expeditions in Area have # Remnants", ["type"] = "explicit", }, - [2168] = { + { ["id"] = "explicit.stat_3753446846", ["text"] = "Expeditions in Map have # Remnant", ["type"] = "explicit", }, - [2169] = { + { ["id"] = "explicit.stat_28208665", ["text"] = "Favours Deferred at Ritual Altars in Area reappear #% sooner", ["type"] = "explicit", }, - [2170] = { + { ["id"] = "explicit.stat_28208665", ["text"] = "Favours Deferred at Ritual Altars in Map reappear #% sooner", ["type"] = "explicit", }, - [2171] = { + { ["id"] = "explicit.stat_937291386", ["text"] = "Favours Rerolled at Ritual Altars in Area have #% chance to cost no Tribute", ["type"] = "explicit", }, - [2172] = { + { ["id"] = "explicit.stat_937291386", ["text"] = "Favours Rerolled at Ritual Altars in Map have #% chance to cost no Tribute", ["type"] = "explicit", }, - [2173] = { + { ["id"] = "explicit.stat_1228222525", ["text"] = "Favours at Ritual Altars in Area costs #% increased Tribute", ["type"] = "explicit", }, - [2174] = { + { ["id"] = "explicit.stat_1221641885", ["text"] = "Fire Damage also Contributes to Bleeding Magnitude", ["type"] = "explicit", }, - [2175] = { + { ["id"] = "explicit.stat_2949096603", ["text"] = "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", ["type"] = "explicit", }, - [2176] = { + { ["id"] = "explicit.stat_3247805335", ["text"] = "Fire Resistance is unaffected by Area Penalties", ["type"] = "explicit", }, - [2177] = { + { ["id"] = "explicit.stat_1540254896", ["text"] = "Flammability Magnitude is doubled", ["type"] = "explicit", }, - [2178] = { + { ["id"] = "explicit.stat_265717301", ["text"] = "Flasks do not recover Life", ["type"] = "explicit", }, - [2179] = { + { ["id"] = "explicit.stat_2260055669", ["text"] = "Freezes Enemies that are on Full Life", ["type"] = "explicit", }, - [2180] = { + { ["id"] = "explicit.stat_3278008231", ["text"] = "Fully Armour Broken enemies you kill with Hits Shatter", ["type"] = "explicit", }, - [2181] = { + { ["id"] = "explicit.stat_3841984913", ["text"] = "Gain # Fragile Regrowth each second", ["type"] = "explicit", }, - [2182] = { + { ["id"] = "explicit.stat_2443032293", ["text"] = "Gain # Guard for 0.5 seconds per Combo expended when using Skills", ["type"] = "explicit", }, - [2183] = { + { ["id"] = "explicit.stat_2797971005", ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "explicit", }, - [2184] = { + { ["id"] = "explicit.stat_3695891184", ["text"] = "Gain # Life per enemy killed", ["type"] = "explicit", }, - [2185] = { + { ["id"] = "explicit.stat_820939409", ["text"] = "Gain # Mana per Enemy Hit with Attacks", ["type"] = "explicit", }, - [2186] = { + { ["id"] = "explicit.stat_1368271171", ["text"] = "Gain # Mana per enemy killed", ["type"] = "explicit", }, - [2187] = { + { ["id"] = "explicit.stat_2258007247", ["text"] = "Gain # Rage on Hit", ["type"] = "explicit", }, - [2188] = { + { ["id"] = "explicit.stat_2709367754", ["text"] = "Gain # Rage on Melee Hit", ["type"] = "explicit", }, - [2189] = { + { ["id"] = "explicit.stat_1466716929", ["text"] = "Gain # Rage when Critically Hit by an Enemy", ["type"] = "explicit", }, - [2190] = { + { ["id"] = "explicit.stat_3292710273", ["text"] = "Gain # Rage when Hit by an Enemy", ["type"] = "explicit", }, - [2191] = { + { ["id"] = "explicit.stat_555311715", ["text"] = "Gain # Rage when Hit by an Enemy during effect", ["type"] = "explicit", }, - [2192] = { + { ["id"] = "explicit.stat_2469544361", ["text"] = "Gain #% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", ["type"] = "explicit", }, - [2193] = { + { ["id"] = "explicit.stat_997343726", ["text"] = "Gain #% of Damage as Chaos Damage per Undead Minion", ["type"] = "explicit", }, - [2194] = { + { ["id"] = "explicit.stat_3398787959", ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, - [2195] = { + { ["id"] = "explicit.stat_2505884597", ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, - [2196] = { + { ["id"] = "explicit.stat_2888350852", ["text"] = "Gain #% of Damage as Extra Cold Damage while you are missing Runic Ward", ["type"] = "explicit", }, - [2197] = { + { ["id"] = "explicit.stat_825116955", ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", ["type"] = "explicit", }, - [2198] = { + { ["id"] = "explicit.stat_3015669065", ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, - [2199] = { + { ["id"] = "explicit.stat_589361270", ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", ["type"] = "explicit", }, - [2200] = { + { ["id"] = "explicit.stat_1321054058", ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", ["type"] = "explicit", }, - [2201] = { + { ["id"] = "explicit.stat_3278136794", ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "explicit", }, - [2202] = { + { ["id"] = "explicit.stat_323800555", ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", ["type"] = "explicit", }, - [2203] = { + { ["id"] = "explicit.stat_4019237939", ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "explicit", }, - [2204] = { + { ["id"] = "explicit.stat_1158842087", ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", ["type"] = "explicit", }, - [2205] = { + { ["id"] = "explicit.stat_701564564", ["text"] = "Gain #% of Elemental Damage as Extra Fire Damage", ["type"] = "explicit", }, - [2206] = { + { ["id"] = "explicit.stat_3550887155", ["text"] = "Gain #% of Elemental Damage as Extra Lightning Damage", ["type"] = "explicit", }, - [2207] = { + { ["id"] = "explicit.stat_1546604934", ["text"] = "Gain #% of Evasion Rating as extra Armour", ["type"] = "explicit", }, - [2208] = { + { ["id"] = "explicit.stat_514290151", ["text"] = "Gain #% of Maximum Mana as Armour", ["type"] = "explicit", }, - [2209] = { + { ["id"] = "explicit.stat_758893621", ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "explicit", }, - [2210] = { + { ["id"] = "explicit.stat_915546383", ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", ["type"] = "explicit", }, - [2211] = { + { ["id"] = "explicit.stat_1228337241", ["text"] = "Gain #% of maximum Life as Extra maximum Energy Shield", ["type"] = "explicit", }, - [2212] = { + { ["id"] = "explicit.stat_3027830452", ["text"] = "Gain #% of maximum Mana as Extra maximum Energy Shield", ["type"] = "explicit", }, - [2213] = { + { ["id"] = "explicit.stat_796381300", ["text"] = "Gain 0% to #% increased Movement Speed at random when Hit, until Hit again", ["type"] = "explicit", }, - [2214] = { + { ["id"] = "explicit.stat_2482970488", ["text"] = "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", ["type"] = "explicit", }, - [2215] = { + { ["id"] = "explicit.stat_1273508088", ["text"] = "Gain 1 Druidic Prowess for every 20 total Rage spent", ["type"] = "explicit", }, - [2216] = { + { ["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", }, - [2217] = { + { ["id"] = "explicit.stat_3775736880", ["text"] = "Gain 1 Fear Incarnate when you Cull a target", ["type"] = "explicit", }, - [2218] = { + { ["id"] = "explicit.stat_343703314", ["text"] = "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", ["type"] = "explicit", }, - [2219] = { + { ["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", }, - [2220] = { + { ["id"] = "explicit.stat_3170380905", ["text"] = "Gain 1% of damage as Fire damage per #% Chance to Block", ["type"] = "explicit", }, - [2221] = { + { ["id"] = "explicit.stat_3625518318", ["text"] = "Gain Arcane Surge when a Minion Dies", ["type"] = "explicit", }, - [2222] = { + { ["id"] = "explicit.stat_1435496528", ["text"] = "Gain Cold Thorns Damage equal to #% of your maximum Mana", ["type"] = "explicit", }, - [2223] = { + { ["id"] = "explicit.stat_1752419596", ["text"] = "Gain Deflection Rating equal to #% of Armour", ["type"] = "explicit", }, - [2224] = { + { ["id"] = "explicit.stat_3033371881", ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "explicit", }, - [2225] = { + { ["id"] = "explicit.stat_4010198893", ["text"] = "Gain Finality for # seconds per Combo expended when using Skills", ["type"] = "explicit", }, - [2226] = { + { ["id"] = "explicit.stat_469006068", ["text"] = "Gain Guard equal to #% of missing Energy Shield for 4 seconds when you Dodge Roll", ["type"] = "explicit", }, - [2227] = { + { ["id"] = "explicit.stat_3069759106", ["text"] = "Gain Guard equal to Current Runic Ward for # seconds when Effect ends", ["type"] = "explicit", }, - [2228] = { + { ["id"] = "explicit.stat_3605616594", ["text"] = "Gain Onslaught for 4 seconds when a Minion Dies", ["type"] = "explicit", }, - [2229] = { + { ["id"] = "explicit.stat_2148576938", ["text"] = "Gain Overencumbrance for 4 seconds when you Dodge Roll", ["type"] = "explicit", }, - [2230] = { + { ["id"] = "explicit.stat_2163764037", ["text"] = "Gain Physical Thorns damage equal to #% - #% of maximum Life", ["type"] = "explicit", }, - [2231] = { + { ["id"] = "explicit.stat_1793740180", ["text"] = "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", ["type"] = "explicit", }, - [2232] = { + { ["id"] = "explicit.stat_2459662130", ["text"] = "Gain Tailwind on Critical Hit, no more than once per second", ["type"] = "explicit", }, - [2233] = { + { ["id"] = "explicit.stat_2931872063", ["text"] = "Gain Volatility on Critical Hit", ["type"] = "explicit", }, - [2234] = { + { ["id"] = "explicit.stat_1099200124", ["text"] = "Gain a Power Charge every Second if you haven't lost Power Charges Recently", ["type"] = "explicit", }, - [2235] = { + { ["id"] = "explicit.stat_2284588585", ["text"] = "Gain a random Charge on reaching Maximum Rage, no more than once every # seconds", ["type"] = "explicit", }, - [2236] = { + { ["id"] = "explicit.stat_3398301358", ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, - [2237] = { + { ["id"] = "explicit.stat_416040624", ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, - [2238] = { + { ["id"] = "explicit.stat_4187571952", ["text"] = "Gain no inherent bonus from Intelligence", ["type"] = "explicit", }, - [2239] = { + { ["id"] = "explicit.stat_1873752457", ["text"] = "Gains # Charges per Second", ["type"] = "explicit", }, - [2240] = { - ["id"] = "explicit.stat_3831171903|2", + { + ["id"] = "explicit.stat_1875158664", ["text"] = "Giant's Blood", ["type"] = "explicit", }, - [2241] = { - ["id"] = "explicit.stat_1875158664", + { + ["id"] = "explicit.stat_3831171903|2", ["text"] = "Giant's Blood", ["type"] = "explicit", }, - [2242] = { + { ["id"] = "explicit.stat_3831171903|22", ["text"] = "Glancing Blows", ["type"] = "explicit", }, - [2243] = { + { ["id"] = "explicit.stat_4266776872", ["text"] = "Glancing Blows", ["type"] = "explicit", }, - [2244] = { + { ["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", }, - [2245] = { + { ["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", }, - [2246] = { + { ["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", }, - [2247] = { + { ["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", }, - [2248] = { + { ["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", }, - [2249] = { + { ["id"] = "explicit.stat_821021828", ["text"] = "Grants # Life per Enemy Hit", ["type"] = "explicit", }, - [2250] = { + { ["id"] = "explicit.stat_2416869319", ["text"] = "Grants #% of Life Recovery to Minions", ["type"] = "explicit", }, - [2251] = { + { ["id"] = "explicit.stat_618665892", ["text"] = "Grants Onslaught during effect", ["type"] = "explicit", }, - [2252] = { + { ["id"] = "explicit.stat_280890192", ["text"] = "Grants a Frenzy Charge on use", ["type"] = "explicit", }, - [2253] = { + { ["id"] = "explicit.stat_2566921799", ["text"] = "Grants a Power Charge on use", ["type"] = "explicit", }, - [2254] = { + { ["id"] = "explicit.stat_3742268652", ["text"] = "Grants effect of Dreaming Gloom Shrine", ["type"] = "explicit", }, - [2255] = { + { ["id"] = "explicit.stat_234657505", ["text"] = "Grants effect of Guided Freezing Shrine", ["type"] = "explicit", }, - [2256] = { + { ["id"] = "explicit.stat_3917429943", ["text"] = "Grants effect of Guided Meteoric Shrine", ["type"] = "explicit", }, - [2257] = { + { ["id"] = "explicit.stat_2800412928", ["text"] = "Grants effect of Guided Tempest Shrine", ["type"] = "explicit", }, - [2258] = { + { ["id"] = "explicit.stat_1509210032", ["text"] = "Grants up to your maximum Rage on use", ["type"] = "explicit", }, - [2259] = { + { ["id"] = "explicit.stat_1980802737", ["text"] = "Grenade Skills Fire an additional Projectile", ["type"] = "explicit", }, - [2260] = { + { ["id"] = "explicit.stat_2250681686", ["text"] = "Grenade Skills have +# Cooldown Use", ["type"] = "explicit", }, - [2261] = { + { ["id"] = "explicit.stat_538981065", ["text"] = "Grenades have #% chance to activate a second time", ["type"] = "explicit", }, - [2262] = { + { ["id"] = "explicit.stat_1416292992", ["text"] = "Has # Charm Slot", ["type"] = "explicit", }, - [2263] = { + { ["id"] = "explicit.stat_1955786041", ["text"] = "Has # to # Physical damage, # to # per Boss's Face Broken", ["type"] = "explicit", }, - [2264] = { + { ["id"] = "explicit.stat_2739148464", ["text"] = "Has no Attribute Requirements", ["type"] = "explicit", }, - [2265] = { + { ["id"] = "explicit.stat_3831171903|18", ["text"] = "Heartstopper", ["type"] = "explicit", }, - [2266] = { + { ["id"] = "explicit.stat_668076381", ["text"] = "Heavy Stuns Enemies that are on Full Life", ["type"] = "explicit", }, - [2267] = { + { ["id"] = "explicit.stat_21071013", ["text"] = "Herald Skills deal #% increased Damage", ["type"] = "explicit", }, - [2268] = { + { ["id"] = "explicit.stat_3787436548", ["text"] = "Historic", ["type"] = "explicit", }, - [2269] = { + { ["id"] = "explicit.stat_289086688", ["text"] = "Hits Break # Armour", ["type"] = "explicit", }, - [2270] = { + { ["id"] = "explicit.stat_3923947492", ["text"] = "Hits against you have #% increased Critical Hit Chance while you are Chilled", ["type"] = "explicit", }, - [2271] = { + { ["id"] = "explicit.stat_3855016469", ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "explicit", }, - [2272] = { + { ["id"] = "explicit.stat_701923421", ["text"] = "Hits against you have #% reduced Critical Damage Bonus per Socket filled", ["type"] = "explicit", }, - [2273] = { + { ["id"] = "explicit.stat_3593401321", ["text"] = "Hits have #% chance to treat Enemy Monster Elemental Resistance values as inverted", ["type"] = "explicit", }, - [2274] = { + { ["id"] = "explicit.stat_4270096386", ["text"] = "Hits have #% increased Critical Hit Chance against you", ["type"] = "explicit", }, - [2275] = { + { ["id"] = "explicit.stat_1689748350", ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", ["type"] = "explicit", }, - [2276] = { + { ["id"] = "explicit.stat_1867725690", ["text"] = "Hits with this Weapon have #% chance to Trigger Molten Shower per 25 Strength", ["type"] = "explicit", }, - [2277] = { + { ["id"] = "explicit.stat_2558253923", ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", ["type"] = "explicit", }, - [2278] = { + { ["id"] = "explicit.stat_1508661598", ["text"] = "Hits with this Weapon have no Critical Damage Bonus", ["type"] = "explicit", }, - [2279] = { + { ["id"] = "explicit.stat_2526112819", ["text"] = "Hits with this Weapon inflict # Gruelling Madness", ["type"] = "explicit", }, - [2280] = { + { ["id"] = "explicit.stat_2036307261", ["text"] = "Hits with this weapon have # to # Added Physical Damage per 1% Block Chance", ["type"] = "explicit", }, - [2281] = { + { ["id"] = "explicit.stat_3831171903|27", ["text"] = "Hollow Palm Technique", ["type"] = "explicit", }, - [2282] = { + { ["id"] = "explicit.stat_740421489", ["text"] = "Ice Crystals have #% increased maximum Life per 5% Cold Resistance you have", ["type"] = "explicit", }, - [2283] = { + { ["id"] = "explicit.stat_2371108370", ["text"] = "If Map was not previously Irradiated, completing Map adds Irradiation instead", ["type"] = "explicit", }, - [2284] = { + { ["id"] = "explicit.stat_983582600", ["text"] = "Ignite you inflict deals Chaos Damage instead of Fire Damage", ["type"] = "explicit", }, - [2285] = { + { ["id"] = "explicit.stat_3314057862", ["text"] = "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", ["type"] = "explicit", }, - [2286] = { + { ["id"] = "explicit.stat_4238331303", ["text"] = "Immobilise enemies at #% buildup instead of 100%", ["type"] = "explicit", }, - [2287] = { + { ["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", }, - [2288] = { + { ["id"] = "explicit.stat_895564377", ["text"] = "Increases and Reductions to Cold and Fire Damage in Radius are transformed to apply to Lightning Damage", ["type"] = "explicit", }, - [2289] = { + { + ["id"] = "explicit.stat_1400313697", + ["text"] = "Increases and Reductions to Cold and Lightning Damage in Radius are transformed to apply to Fire Damage", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_3368921525", ["text"] = "Increases and Reductions to Fire and Lightning Damage in Radius are transformed to apply to Cold Damage", ["type"] = "explicit", }, - [2290] = { + { ["id"] = "explicit.stat_1138742368", ["text"] = "Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value", ["type"] = "explicit", }, - [2291] = { + { ["id"] = "explicit.stat_3407300125", ["text"] = "Increases and Reductions to Mana Regeneration Rate alsoapply to Energy Shield Recharge Rate", ["type"] = "explicit", }, - [2292] = { + { ["id"] = "explicit.stat_2293111154", ["text"] = "Increases and Reductions to Minion Attack Speed also affect you", ["type"] = "explicit", }, - [2293] = { + { ["id"] = "explicit.stat_1631928082", ["text"] = "Increases and Reductions to Minion Damage also affect you", ["type"] = "explicit", }, - [2294] = { + { ["id"] = "explicit.stat_414821772", ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", ["type"] = "explicit", }, - [2295] = { + { ["id"] = "explicit.stat_3811649872", ["text"] = "Increases and Reductions to Spell damage also apply to Attacks", ["type"] = "explicit", }, - [2296] = { + { ["id"] = "explicit.stat_1076031760", ["text"] = "Infinite Parry Range", ["type"] = "explicit", }, - [2297] = { + { ["id"] = "explicit.stat_2646093132", ["text"] = "Inflict Abyssal Wasting on Hit", ["type"] = "explicit", }, - [2298] = { + { ["id"] = "explicit.stat_971590056", ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", ["type"] = "explicit", }, - [2299] = { + { ["id"] = "explicit.stat_3005701891", ["text"] = "Inflict Cold Exposure on Hit", ["type"] = "explicit", }, - [2300] = { + { ["id"] = "explicit.stat_3314536008", ["text"] = "Inflict Cold Exposure on Igniting an Enemy", ["type"] = "explicit", }, - [2301] = { + { ["id"] = "explicit.stat_1695767482", ["text"] = "Inflict Corrupted Blood for # second on Block, dealing #% ofyour maximum Life as Physical damage per second", ["type"] = "explicit", }, - [2302] = { + { ["id"] = "explicit.stat_533542952", ["text"] = "Inflict Elemental Exposure on Hit", ["type"] = "explicit", }, - [2303] = { + { ["id"] = "explicit.stat_2951965588", ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", ["type"] = "explicit", }, - [2304] = { + { ["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", }, - [2305] = { + { ["id"] = "explicit.stat_1538879632", ["text"] = "Inflict Fire Exposure on Shocking an Enemy", ["type"] = "explicit", }, - [2306] = { + { ["id"] = "explicit.stat_2665488635", ["text"] = "Inflict Lightning Exposure on Critical Hit", ["type"] = "explicit", }, - [2307] = { + { ["id"] = "explicit.stat_359380213", ["text"] = "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", ["type"] = "explicit", }, - [2308] = { + { ["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", }, - [2309] = { + { ["id"] = "explicit.stat_2918129907", ["text"] = "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", ["type"] = "explicit", }, - [2310] = { + { ["id"] = "explicit.stat_3987691524", ["text"] = "Inherent Rage loss starts 1 second later", ["type"] = "explicit", }, - [2311] = { + { ["id"] = "explicit.stat_1526933524", ["text"] = "Instant Recovery", ["type"] = "explicit", }, - [2312] = { + { ["id"] = "explicit.stat_3703496511", ["text"] = "Intimidate Enemies on Block for # second", ["type"] = "explicit", }, - [2313] = { + { ["id"] = "explicit.stat_1078309513", ["text"] = "Invocated Spells deal #% increased Damage", ["type"] = "explicit", }, - [2314] = { + { ["id"] = "explicit.stat_3711973554", ["text"] = "Invocated Spells have #% chance to consume half as much Energy", ["type"] = "explicit", }, - [2315] = { + { ["id"] = "explicit.stat_1615901249", ["text"] = "Invocated skills have #% increased Maximum Energy", ["type"] = "explicit", }, - [2316] = { + { ["id"] = "explicit.stat_3528245713", ["text"] = "Iron Grip", ["type"] = "explicit", }, - [2317] = { + { ["id"] = "explicit.stat_326965591", ["text"] = "Iron Reflexes", ["type"] = "explicit", }, - [2318] = { + { ["id"] = "explicit.stat_3831171903|21", ["text"] = "Iron Reflexes", ["type"] = "explicit", }, - [2319] = { + { ["id"] = "explicit.stat_281311123", ["text"] = "Iron Will", ["type"] = "explicit", }, - [2320] = { + { ["id"] = "explicit.stat_281201999", ["text"] = "Knockback direction is reversed", ["type"] = "explicit", }, - [2321] = { + { ["id"] = "explicit.stat_3739186583", ["text"] = "Knocks Back Enemies on Hit", ["type"] = "explicit", }, - [2322] = { + { ["id"] = "explicit.stat_2557965901", ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "explicit", }, - [2323] = { + { ["id"] = "explicit.stat_707457662", ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "explicit", }, - [2324] = { + { ["id"] = "explicit.stat_1570501432", ["text"] = "Leech Life #% faster", ["type"] = "explicit", }, - [2325] = { + { ["id"] = "explicit.stat_3389184522", ["text"] = "Leech from Critical Hits is instant", ["type"] = "explicit", }, - [2326] = { + { ["id"] = "explicit.stat_55876295", ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "explicit", }, - [2327] = { + { ["id"] = "explicit.stat_669069897", ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "explicit", }, - [2328] = { + { ["id"] = "explicit.stat_335699483", ["text"] = "Leeches #% of maximum Life when you Cast a Spell", ["type"] = "explicit", }, - [2329] = { + { ["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", }, - [2330] = { + { ["id"] = "explicit.stat_2437476305", ["text"] = "Left ring slot: Projectiles from Spells Fork", ["type"] = "explicit", }, - [2331] = { + { ["id"] = "explicit.stat_3647242059", ["text"] = "Left ring slot: Projectiles from Spells cannot Chain", ["type"] = "explicit", }, - [2332] = { + { ["id"] = "explicit.stat_264262054|1", ["text"] = "Legacy of Amethyst", ["type"] = "explicit", }, - [2333] = { + { ["id"] = "explicit.stat_264262054|2", ["text"] = "Legacy of Basalt", ["type"] = "explicit", }, - [2334] = { + { ["id"] = "explicit.stat_264262054|3", ["text"] = "Legacy of Bismuth", ["type"] = "explicit", }, - [2335] = { + { ["id"] = "explicit.stat_264262054|4", ["text"] = "Legacy of Diamond", ["type"] = "explicit", }, - [2336] = { + { ["id"] = "explicit.stat_264262054|5", ["text"] = "Legacy of Gold", ["type"] = "explicit", }, - [2337] = { + { ["id"] = "explicit.stat_264262054|6", ["text"] = "Legacy of Granite", ["type"] = "explicit", }, - [2338] = { + { ["id"] = "explicit.stat_264262054|7", ["text"] = "Legacy of Jade", ["type"] = "explicit", }, - [2339] = { + { ["id"] = "explicit.stat_264262054|8", ["text"] = "Legacy of Quicksilver", ["type"] = "explicit", }, - [2340] = { + { ["id"] = "explicit.stat_264262054|9", ["text"] = "Legacy of Ruby", ["type"] = "explicit", }, - [2341] = { + { ["id"] = "explicit.stat_264262054|10", ["text"] = "Legacy of Sapphire", ["type"] = "explicit", }, - [2342] = { + { ["id"] = "explicit.stat_264262054|11", ["text"] = "Legacy of Silver", ["type"] = "explicit", }, - [2343] = { + { ["id"] = "explicit.stat_264262054|12", ["text"] = "Legacy of Stibnite", ["type"] = "explicit", }, - [2344] = { + { ["id"] = "explicit.stat_264262054|13", ["text"] = "Legacy of Sulphur", ["type"] = "explicit", }, - [2345] = { + { ["id"] = "explicit.stat_264262054|14", ["text"] = "Legacy of Topaz", ["type"] = "explicit", }, - [2346] = { + { ["id"] = "explicit.stat_1102738251", ["text"] = "Life Flasks gain # charges per Second", ["type"] = "explicit", }, - [2347] = { + { ["id"] = "explicit.stat_1200347828", ["text"] = "Life Flasks used while on Low Life apply Recovery Instantly", ["type"] = "explicit", }, - [2348] = { + { ["id"] = "explicit.stat_2714890129", ["text"] = "Life Leech can Overflow Maximum Life", ["type"] = "explicit", }, - [2349] = { + { ["id"] = "explicit.stat_3314050176", ["text"] = "Life Leech is Converted to Energy Shield Leech", ["type"] = "explicit", }, - [2350] = { + { ["id"] = "explicit.stat_825825364", ["text"] = "Life Leech recovers based on your Chaos damage instead of Physical damage", ["type"] = "explicit", }, - [2351] = { + { ["id"] = "explicit.stat_1092555766", ["text"] = "Life Leech recovers based on your Lightning damage as well as Physical damage", ["type"] = "explicit", }, - [2352] = { + { ["id"] = "explicit.stat_3971919056", ["text"] = "Life Recharges", ["type"] = "explicit", }, - [2353] = { + { ["id"] = "explicit.stat_2812872407", ["text"] = "Life Recovery from Flasks also applies to Energy Shield", ["type"] = "explicit", }, - [2354] = { + { ["id"] = "explicit.stat_1245896889", ["text"] = "Life Recovery from Flasks can Overflow Maximum Life", ["type"] = "explicit", }, - [2355] = { + { ["id"] = "explicit.stat_720388959", ["text"] = "Life Recovery from Flasks is instant", ["type"] = "explicit", }, - [2356] = { + { ["id"] = "explicit.stat_3947672598", ["text"] = "Life Recovery from Regeneration is not applied", ["type"] = "explicit", }, - [2357] = { + { ["id"] = "explicit.stat_451403019", ["text"] = "Life Recovery other than Flasks cannot Recover Life to above Low Life", ["type"] = "explicit", }, - [2358] = { + { ["id"] = "explicit.stat_632761194", ["text"] = "Life Regeneration is applied to Energy Shield instead", ["type"] = "explicit", }, - [2359] = { + { ["id"] = "explicit.stat_932866937", ["text"] = "Life and Mana Flasks can be equipped in either slot", ["type"] = "explicit", }, - [2360] = { + { ["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", }, - [2361] = { + { ["id"] = "explicit.stat_1011772129", ["text"] = "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", ["type"] = "explicit", }, - [2362] = { + { ["id"] = "explicit.stat_3121133045", ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", ["type"] = "explicit", }, - [2363] = { + { ["id"] = "explicit.stat_4224965099", ["text"] = "Lightning Damage of Enemies Hitting you is Lucky", ["type"] = "explicit", }, - [2364] = { + { ["id"] = "explicit.stat_3246948616", ["text"] = "Lightning Damage of Enemies Hitting you is Lucky during effect", ["type"] = "explicit", }, - [2365] = { + { ["id"] = "explicit.stat_3999959974", ["text"] = "Lightning Resistance does not affect Lightning damage taken", ["type"] = "explicit", }, - [2366] = { + { ["id"] = "explicit.stat_3631920880", ["text"] = "Lightning Resistance is unaffected by Area Penalties", ["type"] = "explicit", }, - [2367] = { + { ["id"] = "explicit.stat_4123841473", ["text"] = "Lightning Skills Chain # times", ["type"] = "explicit", }, - [2368] = { + { ["id"] = "explicit.stat_1017648537", ["text"] = "Lightning damage from Hits Contributes to Electrocution Buildup", ["type"] = "explicit", }, - [2369] = { + { ["id"] = "explicit.stat_1967051901", ["text"] = "Loads an additional bolt", ["type"] = "explicit", }, - [2370] = { + { ["id"] = "explicit.stat_3831171903|31", ["text"] = "Lord of the Wilds", ["type"] = "explicit", }, - [2371] = { + { ["id"] = "explicit.stat_1902409192", ["text"] = "Lose # Life when you use a Skill", ["type"] = "explicit", }, - [2372] = { + { ["id"] = "explicit.stat_1147913864", ["text"] = "Lose #% Life per second while you have no Runic Ward during Effect", ["type"] = "explicit", }, - [2373] = { + { ["id"] = "explicit.stat_1661347488", ["text"] = "Lose #% of maximum Life per second", ["type"] = "explicit", }, - [2374] = { + { ["id"] = "explicit.stat_1306791873", ["text"] = "Lose all Fragile Regrowth when Hit", ["type"] = "explicit", }, - [2375] = { + { ["id"] = "explicit.stat_2135899247", ["text"] = "Lose all Power Charges on reaching maximum Power Charges", ["type"] = "explicit", }, - [2376] = { + { ["id"] = "explicit.stat_3851480592", ["text"] = "Lose all Rage on reaching Maximum Rage", ["type"] = "explicit", }, - [2377] = { + { ["id"] = "explicit.stat_367897259", ["text"] = "Lose all Tailwind when Hit", ["type"] = "explicit", }, - [2378] = { + { ["id"] = "explicit.stat_2895144208", ["text"] = "Maim on Critical Hit", ["type"] = "explicit", }, - [2379] = { + { ["id"] = "explicit.stat_2200293569", ["text"] = "Mana Flasks gain # charges per Second", ["type"] = "explicit", }, - [2380] = { + { ["id"] = "explicit.stat_1839832419", ["text"] = "Mana Flasks used while on Low Mana apply Recovery Instantly", ["type"] = "explicit", }, - [2381] = { + { ["id"] = "explicit.stat_4100842845", ["text"] = "Mana Recovery from Flasks can Overflow maximum Mana during Effect", ["type"] = "explicit", }, - [2382] = { + { ["id"] = "explicit.stat_3593063598", ["text"] = "Mana Recovery other than Regeneration cannot Recover Mana", ["type"] = "explicit", }, - [2383] = { + { ["id"] = "explicit.stat_1414945937", ["text"] = "Manifested Dancing Dervishes die when Rampage ends", ["type"] = "explicit", }, - [2384] = { + { ["id"] = "explicit.stat_1314787770", ["text"] = "Map Boss has +#% chance to drop a Waystone of the current tier or higher", ["type"] = "explicit", }, - [2385] = { + { ["id"] = "explicit.stat_2588474575", ["text"] = "Map Bosses are Hunted by Azmeri Spirits", ["type"] = "explicit", }, - [2386] = { + { ["id"] = "explicit.stat_3860150265", ["text"] = "Map Bosses grant #% increased Experience", ["type"] = "explicit", }, - [2387] = { + { ["id"] = "explicit.stat_1458461453", ["text"] = "Map Bosses have # additional Modifier", ["type"] = "explicit", }, - [2388] = { + { ["id"] = "explicit.stat_3517228691", ["text"] = "Map also counts as a Desert Map", ["type"] = "explicit", }, - [2389] = { + { ["id"] = "explicit.stat_864099561", ["text"] = "Map also counts as a Forest Map", ["type"] = "explicit", }, - [2390] = { + { ["id"] = "explicit.stat_3160511599", ["text"] = "Map also counts as a Grass Map", ["type"] = "explicit", }, - [2391] = { + { ["id"] = "explicit.stat_1583884108", ["text"] = "Map also counts as a Mountain Map", ["type"] = "explicit", }, - [2392] = { + { ["id"] = "explicit.stat_3755999954", ["text"] = "Map also counts as a Swamp Map", ["type"] = "explicit", }, - [2393] = { + { ["id"] = "explicit.stat_3271982291", ["text"] = "Map also counts as a Water Map", ["type"] = "explicit", }, - [2394] = { + { ["id"] = "explicit.stat_3490187949", ["text"] = "Map contains # additional Abysses", ["type"] = "explicit", }, - [2395] = { + { ["id"] = "explicit.stat_358129101", ["text"] = "Map contains # additional Azmeri Spirit", ["type"] = "explicit", }, - [2396] = { + { ["id"] = "explicit.stat_3240183538", ["text"] = "Map contains # additional Strongboxes", ["type"] = "explicit", }, - [2397] = { + { ["id"] = "explicit.stat_1640965354", ["text"] = "Map contains #% increased number of Runic Monster Markers", ["type"] = "explicit", }, - [2398] = { + { ["id"] = "explicit.stat_1070816711", ["text"] = "Map contains an additional Abyss", ["type"] = "explicit", }, - [2399] = { + { ["id"] = "explicit.stat_775597083", ["text"] = "Map contains an additional Azmeri Spirit", ["type"] = "explicit", }, - [2400] = { - ["id"] = "explicit.stat_2162684861", + { + ["id"] = "explicit.stat_395808938", ["text"] = "Map contains an additional Essence", ["type"] = "explicit", }, - [2401] = { - ["id"] = "explicit.stat_395808938", + { + ["id"] = "explicit.stat_2162684861", ["text"] = "Map contains an additional Essence", ["type"] = "explicit", }, - [2402] = { + { ["id"] = "explicit.stat_231864447", ["text"] = "Map contains an additional Rare Chest", ["type"] = "explicit", }, - [2403] = { - ["id"] = "explicit.stat_3042527515", + { + ["id"] = "explicit.stat_1468737867", ["text"] = "Map contains an additional Shrine", ["type"] = "explicit", }, - [2404] = { - ["id"] = "explicit.stat_1468737867", + { + ["id"] = "explicit.stat_3042527515", ["text"] = "Map contains an additional Shrine", ["type"] = "explicit", }, - [2405] = { + { ["id"] = "explicit.stat_3040603554", ["text"] = "Map contains an additional Strongbox", ["type"] = "explicit", }, - [2406] = { + { ["id"] = "explicit.stat_2839545956", ["text"] = "Map contains an additional Summoning Circle", ["type"] = "explicit", }, - [2407] = { + { ["id"] = "explicit.stat_588512487", ["text"] = "Map has # additional random Modifier", ["type"] = "explicit", }, - [2408] = { + { ["id"] = "explicit.stat_3049505189", ["text"] = "Map has #% chance to contain an additional Breach", ["type"] = "explicit", }, - [2409] = { + { ["id"] = "explicit.stat_2890355696", ["text"] = "Map has #% chance to contain four additional Abysses", ["type"] = "explicit", }, - [2410] = { + { ["id"] = "explicit.stat_2440265466", ["text"] = "Map has #% chance to contain three additional Breaches", ["type"] = "explicit", }, - [2411] = { + { ["id"] = "explicit.stat_3873704640", ["text"] = "Map has #% increased Magic Monsters", ["type"] = "explicit", }, - [2412] = { + { ["id"] = "explicit.stat_4142653832", ["text"] = "Map has #% increased Monster Rarity", ["type"] = "explicit", }, - [2413] = { + { ["id"] = "explicit.stat_3815617979", ["text"] = "Map has #% increased chance to contain Azmeri Spirits", ["type"] = "explicit", }, - [2414] = { + { ["id"] = "explicit.stat_1825943485", ["text"] = "Map has #% increased chance to contain Essences", ["type"] = "explicit", }, - [2415] = { + { ["id"] = "explicit.stat_1352729973", ["text"] = "Map has #% increased chance to contain Rogue Exiles", ["type"] = "explicit", }, - [2416] = { + { ["id"] = "explicit.stat_689816330", ["text"] = "Map has #% increased chance to contain Shrines", ["type"] = "explicit", }, - [2417] = { + { ["id"] = "explicit.stat_4279535856", ["text"] = "Map has #% increased chance to contain Strongboxes", ["type"] = "explicit", }, - [2418] = { + { ["id"] = "explicit.stat_267210597", ["text"] = "Map has #% increased chance to contain a Summoning Circle", ["type"] = "explicit", }, - [2419] = { + { ["id"] = "explicit.stat_3793155082", ["text"] = "Map has #% increased number of Rare Monsters", ["type"] = "explicit", }, - [2420] = { + { ["id"] = "explicit.stat_3550168289", ["text"] = "Map is inhabited by # additional Rogue Exile", ["type"] = "explicit", }, - [2421] = { + { ["id"] = "explicit.stat_2741291867", ["text"] = "Map is overrun by the Abyssal", ["type"] = "explicit", }, - [2422] = { + { ["id"] = "explicit.stat_2594634307", ["text"] = "Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, - [2423] = { + { ["id"] = "explicit.stat_1714971114", ["text"] = "Mark Skills have #% increased Use Speed", ["type"] = "explicit", }, - [2424] = { + { ["id"] = "explicit.stat_1173537953", ["text"] = "Maximum # Fragile Regrowth", ["type"] = "explicit", }, - [2425] = { + { ["id"] = "explicit.stat_1500744699", ["text"] = "Maximum Chance to Evade is 50%", ["type"] = "explicit", }, - [2426] = { + { ["id"] = "explicit.stat_2104359366", ["text"] = "Maximum Energy Shield cannot be Converted", ["type"] = "explicit", }, - [2427] = { + { ["id"] = "explicit.stat_3960211755", ["text"] = "Maximum Physical Damage Reduction is 50%", ["type"] = "explicit", }, - [2428] = { + { ["id"] = "explicit.stat_275498888", ["text"] = "Maximum Quality is #%", ["type"] = "explicit", }, - [2429] = { + { ["id"] = "explicit.stat_1338406168", ["text"] = "Maximum amount of Guard is based on maximum Energy Shield instead", ["type"] = "explicit", }, - [2430] = { + { ["id"] = "explicit.stat_2013356568", ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", ["type"] = "explicit", }, - [2431] = { + { ["id"] = "explicit.stat_2889807051", ["text"] = "Melee Hits count as Rampage KillsRampage", ["type"] = "explicit", }, - [2432] = { + { ["id"] = "explicit.stat_4236566306", ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "explicit", }, - [2433] = { + { ["id"] = "explicit.stat_173471035", ["text"] = "Meta Skills gain #% increased Energy while on Full Mana", ["type"] = "explicit", }, - [2434] = { + { ["id"] = "explicit.stat_3831171903|10", ["text"] = "Mind Over Matter", ["type"] = "explicit", }, - [2435] = { + { ["id"] = "explicit.stat_195270549", ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", ["type"] = "explicit", }, - [2436] = { + { ["id"] = "explicit.stat_2479683456", ["text"] = "Minions Regenerate #% of maximum Life per second", ["type"] = "explicit", }, - [2437] = { + { ["id"] = "explicit.stat_2639966148", ["text"] = "Minions Revive #% faster", ["type"] = "explicit", }, - [2438] = { + { ["id"] = "explicit.stat_4046380260", ["text"] = "Minions cannot Die while affected by a Life Flask", ["type"] = "explicit", }, - [2439] = { + { ["id"] = "explicit.stat_1589917703", ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", }, - [2440] = { + { ["id"] = "explicit.stat_2337295272", ["text"] = "Minions deal #% increased Damage if you've Hit Recently", ["type"] = "explicit", }, - [2441] = { + { ["id"] = "explicit.stat_3742865955", ["text"] = "Minions deal #% increased Damage with Command Skills", ["type"] = "explicit", }, - [2442] = { + { ["id"] = "explicit.stat_943702197", ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", ["type"] = "explicit", }, - [2443] = { + { ["id"] = "explicit.stat_1797815732", ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", ["type"] = "explicit", }, - [2444] = { + { ["id"] = "explicit.stat_3119612865", ["text"] = "Minions have #% additional Physical Damage Reduction", ["type"] = "explicit", }, - [2445] = { + { ["id"] = "explicit.stat_1486714289", ["text"] = "Minions have #% chance to inflict Gruelling Madness on Hit", ["type"] = "explicit", }, - [2446] = { + { ["id"] = "explicit.stat_3811191316", ["text"] = "Minions have #% increased Area of Effect", ["type"] = "explicit", }, - [2447] = { + { ["id"] = "explicit.stat_3091578504", ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "explicit", }, - [2448] = { + { ["id"] = "explicit.stat_1691403182", ["text"] = "Minions have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [2449] = { + { ["id"] = "explicit.stat_1854213750", ["text"] = "Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, - [2450] = { + { ["id"] = "explicit.stat_491450213", ["text"] = "Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, - [2451] = { + { ["id"] = "explicit.stat_1485480327", ["text"] = "Minions have #% increased Immobilisation buildup", ["type"] = "explicit", }, - [2452] = { + { ["id"] = "explicit.stat_953593695", ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", ["type"] = "explicit", }, - [2453] = { + { ["id"] = "explicit.stat_174664100", ["text"] = "Minions have #% increased Movement Speed", ["type"] = "explicit", }, - [2454] = { + { ["id"] = "explicit.stat_73032170", ["text"] = "Minions have #% increased Skill Speed with Command Skills", ["type"] = "explicit", }, - [2455] = { + { ["id"] = "explicit.stat_770672621", ["text"] = "Minions have #% increased maximum Life", ["type"] = "explicit", }, - [2456] = { + { ["id"] = "explicit.stat_3837707023", ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "explicit", }, - [2457] = { + { ["id"] = "explicit.stat_1423639565", ["text"] = "Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, - [2458] = { + { ["id"] = "explicit.stat_3893509584", ["text"] = "Minions have Unholy Might", ["type"] = "explicit", }, - [2459] = { + { ["id"] = "explicit.stat_3045072899", ["text"] = "Minions' Resistances are equal to yours", ["type"] = "explicit", }, - [2460] = { + { ["id"] = "explicit.stat_3249412463", ["text"] = "Minions' Strikes have Melee Splash", ["type"] = "explicit", }, - [2461] = { + { ["id"] = "explicit.stat_3679696791", ["text"] = "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", ["type"] = "explicit", }, - [2462] = { + { ["id"] = "explicit.stat_3201111383", ["text"] = "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", ["type"] = "explicit", }, - [2463] = { + { ["id"] = "explicit.stat_1898978455", ["text"] = "Monster Damage Penetrates #% Elemental Resistances", ["type"] = "explicit", }, - [2464] = { + { ["id"] = "explicit.stat_1138708335", ["text"] = "Monster Damage penetrates #% of Cold Resistance", ["type"] = "explicit", }, - [2465] = { + { ["id"] = "explicit.stat_3588388638", ["text"] = "Monster Damage penetrates #% of Fire Resistance", ["type"] = "explicit", }, - [2466] = { + { ["id"] = "explicit.stat_3093465148", ["text"] = "Monster Damage penetrates #% of Lightning Resistance", ["type"] = "explicit", }, - [2467] = { + { ["id"] = "explicit.stat_3877264671", ["text"] = "Monster have #% increased Elemental Ailment Application", ["type"] = "explicit", }, - [2468] = { + { ["id"] = "explicit.stat_1879340377", ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", ["type"] = "explicit", }, - [2469] = { + { ["id"] = "explicit.stat_159726667", ["text"] = "Monsters Sacrificed at Ritual Altars in Area grant #% increased Tribute", ["type"] = "explicit", }, - [2470] = { + { ["id"] = "explicit.stat_159726667", ["text"] = "Monsters Sacrificed at Ritual Altars in Map grant #% increased Tribute", ["type"] = "explicit", }, - [2471] = { + { ["id"] = "explicit.stat_2539290279", ["text"] = "Monsters are Armoured", ["type"] = "explicit", }, - [2472] = { + { ["id"] = "explicit.stat_2570249991", ["text"] = "Monsters are Evasive", ["type"] = "explicit", }, - [2473] = { + { ["id"] = "explicit.stat_2200661314", ["text"] = "Monsters deal #% of Damage as Extra Chaos", ["type"] = "explicit", }, - [2474] = { + { ["id"] = "explicit.stat_211727", ["text"] = "Monsters deal #% of Damage as Extra Cold", ["type"] = "explicit", }, - [2475] = { + { ["id"] = "explicit.stat_92381065", ["text"] = "Monsters deal #% of Damage as Extra Fire", ["type"] = "explicit", }, - [2476] = { + { ["id"] = "explicit.stat_512071314", ["text"] = "Monsters deal #% of Damage as Extra Lightning", ["type"] = "explicit", }, - [2477] = { + { ["id"] = "explicit.stat_1309819744", ["text"] = "Monsters fire # additional Projectiles", ["type"] = "explicit", }, - [2478] = { + { ["id"] = "explicit.stat_2887760183", ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", ["type"] = "explicit", }, - [2479] = { + { ["id"] = "explicit.stat_57326096", ["text"] = "Monsters have #% Critical Damage Bonus", ["type"] = "explicit", }, - [2480] = { + { ["id"] = "explicit.stat_95221307", ["text"] = "Monsters have #% chance to Poison on Hit", ["type"] = "explicit", }, - [2481] = { + { ["id"] = "explicit.stat_2506820610", ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, - [2482] = { + { ["id"] = "explicit.stat_3222482040", ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", ["type"] = "explicit", }, - [2483] = { + { ["id"] = "explicit.stat_1588049749", ["text"] = "Monsters have #% increased Accuracy Rating", ["type"] = "explicit", }, - [2484] = { + { ["id"] = "explicit.stat_1994551050", ["text"] = "Monsters have #% increased Ailment Threshold", ["type"] = "explicit", }, - [2485] = { + { ["id"] = "explicit.stat_1708461270", ["text"] = "Monsters have #% increased Area of Effect", ["type"] = "explicit", }, - [2486] = { + { ["id"] = "explicit.stat_3906866585", ["text"] = "Monsters have #% increased Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [2487] = { + { ["id"] = "explicit.stat_3909654181", ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", ["type"] = "explicit", }, - [2488] = { + { ["id"] = "explicit.stat_2753083623", ["text"] = "Monsters have #% increased Critical Hit Chance", ["type"] = "explicit", }, - [2489] = { + { ["id"] = "explicit.stat_2065500219", ["text"] = "Monsters have #% increased Effectiveness", ["type"] = "explicit", }, - [2490] = { + { ["id"] = "explicit.stat_3998863698", ["text"] = "Monsters have #% increased Freeze Buildup", ["type"] = "explicit", }, - [2491] = { + { ["id"] = "explicit.stat_1984618452", ["text"] = "Monsters have #% increased Shock Chance", ["type"] = "explicit", }, - [2492] = { + { ["id"] = "explicit.stat_115425161", ["text"] = "Monsters have #% increased Stun Buildup", ["type"] = "explicit", }, - [2493] = { + { ["id"] = "explicit.stat_4101943684", ["text"] = "Monsters have #% increased Stun Threshold", ["type"] = "explicit", }, - [2494] = { + { ["id"] = "explicit.stat_1751584857", ["text"] = "Monsters inflict # Grasping Vine on Hit", ["type"] = "explicit", }, - [2495] = { + { ["id"] = "explicit.stat_2508044078", ["text"] = "Monsters inflict #% increased Flammability Magnitude", ["type"] = "explicit", }, - [2496] = { + { ["id"] = "explicit.stat_337935900", ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", ["type"] = "explicit", }, - [2497] = { + { ["id"] = "explicit.stat_4112450013", ["text"] = "Moving while Bleeding doesn't cause you to take extra damage", ["type"] = "explicit", }, - [2498] = { + { ["id"] = "explicit.stat_1266185101", ["text"] = "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", ["type"] = "explicit", }, - [2499] = { + { ["id"] = "explicit.stat_1168851547", ["text"] = "Natural Rare Monsters in Area have # extra Abyssal Modifier", ["type"] = "explicit", }, - [2500] = { + { ["id"] = "explicit.stat_3831171903|12", ["text"] = "Necromantic Talisman", ["type"] = "explicit", }, - [2501] = { + { ["id"] = "explicit.stat_4163076972", ["text"] = "No Inherent loss of Rage", ["type"] = "explicit", }, - [2502] = { + { ["id"] = "explicit.stat_3464644319", ["text"] = "No Inherent loss of Rage during effect", ["type"] = "explicit", }, - [2503] = { + { ["id"] = "explicit.stat_585231074", ["text"] = "No Movement Speed Penalty while Shield is Raised", ["type"] = "explicit", }, - [2504] = { + { ["id"] = "explicit.stat_1920747151", ["text"] = "Non-Channelling Spells cost an additional #% of your maximum Life", ["type"] = "explicit", }, - [2505] = { + { ["id"] = "explicit.stat_1027889455", ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Life", ["type"] = "explicit", }, - [2506] = { + { ["id"] = "explicit.stat_3843734793", ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Mana", ["type"] = "explicit", }, - [2507] = { + { ["id"] = "explicit.stat_170426423", ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Life", ["type"] = "explicit", }, - [2508] = { + { ["id"] = "explicit.stat_1367999357", ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Mana", ["type"] = "explicit", }, - [2509] = { + { ["id"] = "explicit.stat_4245905059", ["text"] = "Non-Channelling Spells have #% increased Magnitude of Ailments per 100 maximum Life", ["type"] = "explicit", }, - [2510] = { + { ["id"] = "explicit.stat_1846980580", ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "explicit", }, - [2511] = { + { ["id"] = "explicit.stat_3991877392", ["text"] = "Notable Passive Skills in Radius also grant # to Spirit", ["type"] = "explicit", }, - [2512] = { + { ["id"] = "explicit.stat_1800303440", ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", ["type"] = "explicit", }, - [2513] = { + { ["id"] = "explicit.stat_4225700219", ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", ["type"] = "explicit", }, - [2514] = { + { ["id"] = "explicit.stat_3394832998", ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", ["type"] = "explicit", }, - [2515] = { + { ["id"] = "explicit.stat_3391917254", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "explicit", }, - [2516] = { + { ["id"] = "explicit.stat_3859848445", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", ["type"] = "explicit", }, - [2517] = { + { ["id"] = "explicit.stat_504915064", ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", ["type"] = "explicit", }, - [2518] = { + { ["id"] = "explicit.stat_3429148113", ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "explicit", }, - [2519] = { + { ["id"] = "explicit.stat_2822644689", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "explicit", }, - [2520] = { + { ["id"] = "explicit.stat_3641543553", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", ["type"] = "explicit", }, - [2521] = { + { ["id"] = "explicit.stat_715957346", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", ["type"] = "explicit", }, - [2522] = { + { ["id"] = "explicit.stat_111835965", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", ["type"] = "explicit", }, - [2523] = { + { ["id"] = "explicit.stat_1266413530", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", ["type"] = "explicit", }, - [2524] = { + { ["id"] = "explicit.stat_1505023559", ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", ["type"] = "explicit", }, - [2525] = { + { ["id"] = "explicit.stat_2912416697", ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", ["type"] = "explicit", }, - [2526] = { + { ["id"] = "explicit.stat_3821543413", ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", ["type"] = "explicit", }, - [2527] = { + { ["id"] = "explicit.stat_1022759479", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "explicit", }, - [2528] = { + { ["id"] = "explicit.stat_2320654813", ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", ["type"] = "explicit", }, - [2529] = { + { ["id"] = "explicit.stat_61644361", ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", ["type"] = "explicit", }, - [2530] = { + { ["id"] = "explicit.stat_2149603090", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [2531] = { + { ["id"] = "explicit.stat_2359002191", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", ["type"] = "explicit", }, - [2532] = { + { ["id"] = "explicit.stat_1352561456", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "explicit", }, - [2533] = { + { ["id"] = "explicit.stat_138421180", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", ["type"] = "explicit", }, - [2534] = { + { ["id"] = "explicit.stat_2077117738", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", ["type"] = "explicit", }, - [2535] = { + { ["id"] = "explicit.stat_3865605585", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "explicit", }, - [2536] = { + { ["id"] = "explicit.stat_2704905000", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "explicit", }, - [2537] = { + { ["id"] = "explicit.stat_2466785537", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "explicit", }, - [2538] = { + { ["id"] = "explicit.stat_3856744003", ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", ["type"] = "explicit", }, - [2539] = { + { ["id"] = "explicit.stat_2770044702", ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", ["type"] = "explicit", }, - [2540] = { + { ["id"] = "explicit.stat_2717786748", ["text"] = "Notable Passive Skills in Radius also grant #% increased Dexterity", ["type"] = "explicit", }, - [2541] = { + { ["id"] = "explicit.stat_2272980012", ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", ["type"] = "explicit", }, - [2542] = { + { ["id"] = "explicit.stat_1323216174", ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "explicit", }, - [2543] = { + { ["id"] = "explicit.stat_179541474", ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", ["type"] = "explicit", }, - [2544] = { + { ["id"] = "explicit.stat_3419203492", ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", ["type"] = "explicit", }, - [2545] = { + { ["id"] = "explicit.stat_2066964205", ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", ["type"] = "explicit", }, - [2546] = { + { ["id"] = "explicit.stat_1087531620", ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", ["type"] = "explicit", }, - [2547] = { + { ["id"] = "explicit.stat_127081978", ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", ["type"] = "explicit", }, - [2548] = { + { ["id"] = "explicit.stat_2783157569", ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [2549] = { + { ["id"] = "explicit.stat_2907381231", ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", ["type"] = "explicit", }, - [2550] = { + { ["id"] = "explicit.stat_253641217", ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", ["type"] = "explicit", }, - [2551] = { + { ["id"] = "explicit.stat_40618390", ["text"] = "Notable Passive Skills in Radius also grant #% increased Intelligence", ["type"] = "explicit", }, - [2552] = { + { ["id"] = "explicit.stat_2976476845", ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", ["type"] = "explicit", }, - [2553] = { + { ["id"] = "explicit.stat_942519401", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", ["type"] = "explicit", }, - [2554] = { + { ["id"] = "explicit.stat_1185341308", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "explicit", }, - [2555] = { + { ["id"] = "explicit.stat_1321104829", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", ["type"] = "explicit", }, - [2556] = { + { ["id"] = "explicit.stat_391602279", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", ["type"] = "explicit", }, - [2557] = { + { ["id"] = "explicit.stat_4092130601", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "explicit", }, - [2558] = { + { ["id"] = "explicit.stat_462424929", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", ["type"] = "explicit", }, - [2559] = { + { ["id"] = "explicit.stat_1166140625", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", ["type"] = "explicit", }, - [2560] = { + { ["id"] = "explicit.stat_4257790560", ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", ["type"] = "explicit", }, - [2561] = { + { ["id"] = "explicit.stat_3171212276", ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", ["type"] = "explicit", }, - [2562] = { + { ["id"] = "explicit.stat_844449513", ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "explicit", }, - [2563] = { + { ["id"] = "explicit.stat_1514844108", ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", ["type"] = "explicit", }, - [2564] = { + { ["id"] = "explicit.stat_1944020877", ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", ["type"] = "explicit", }, - [2565] = { + { ["id"] = "explicit.stat_221701169", ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", ["type"] = "explicit", }, - [2566] = { + { ["id"] = "explicit.stat_4032352472", ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", ["type"] = "explicit", }, - [2567] = { + { ["id"] = "explicit.stat_1777421941", ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", ["type"] = "explicit", }, - [2568] = { + { ["id"] = "explicit.stat_3113764475", ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", ["type"] = "explicit", }, - [2569] = { + { ["id"] = "explicit.stat_3579898587", ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", ["type"] = "explicit", }, - [2570] = { + { ["id"] = "explicit.stat_2580617872", ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", ["type"] = "explicit", }, - [2571] = { + { ["id"] = "explicit.stat_1842384813", ["text"] = "Notable Passive Skills in Radius also grant #% increased Strength", ["type"] = "explicit", }, - [2572] = { + { ["id"] = "explicit.stat_4173554949", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", ["type"] = "explicit", }, - [2573] = { + { ["id"] = "explicit.stat_2392824305", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", ["type"] = "explicit", }, - [2574] = { + { ["id"] = "explicit.stat_1495814176", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", ["type"] = "explicit", }, - [2575] = { + { ["id"] = "explicit.stat_2675129731", ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", ["type"] = "explicit", }, - [2576] = { + { ["id"] = "explicit.stat_2056107438", ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", ["type"] = "explicit", }, - [2577] = { + { ["id"] = "explicit.stat_3936121440", ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", ["type"] = "explicit", }, - [2578] = { + { ["id"] = "explicit.stat_4180952808", ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, - [2579] = { + { ["id"] = "explicit.stat_412709880", ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", ["type"] = "explicit", }, - [2580] = { + { ["id"] = "explicit.stat_160888068", ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", ["type"] = "explicit", }, - [2581] = { + { ["id"] = "explicit.stat_2589572664", ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", ["type"] = "explicit", }, - [2582] = { + { ["id"] = "explicit.stat_2709646369", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", ["type"] = "explicit", }, - [2583] = { + { ["id"] = "explicit.stat_3669820740", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", ["type"] = "explicit", }, - [2584] = { + { ["id"] = "explicit.stat_85367160", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", ["type"] = "explicit", }, - [2585] = { + { ["id"] = "explicit.stat_3386297724", ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", ["type"] = "explicit", }, - [2586] = { + { ["id"] = "explicit.stat_248192092", ["text"] = "Notable Passive Skills in Radius also grant #% to Chaos Resistance", ["type"] = "explicit", }, - [2587] = { + { ["id"] = "explicit.stat_3946450303", ["text"] = "Notable Passive Skills in Radius also grant #% to Cold Resistance", ["type"] = "explicit", }, - [2588] = { + { ["id"] = "explicit.stat_2670212285", ["text"] = "Notable Passive Skills in Radius also grant #% to Fire Resistance", ["type"] = "explicit", }, - [2589] = { + { ["id"] = "explicit.stat_1687542781", ["text"] = "Notable Passive Skills in Radius also grant #% to Lightning Resistance", ["type"] = "explicit", }, - [2590] = { + { ["id"] = "explicit.stat_1731760476", ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Chaos Resistance", ["type"] = "explicit", }, - [2591] = { + { ["id"] = "explicit.stat_1862508014", ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Cold Resistance", ["type"] = "explicit", }, - [2592] = { + { ["id"] = "explicit.stat_4151994709", ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Fire Resistance", ["type"] = "explicit", }, - [2593] = { + { ["id"] = "explicit.stat_2217513089", ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Lightning Resistance", ["type"] = "explicit", }, - [2594] = { + { ["id"] = "explicit.stat_3243034867", ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", ["type"] = "explicit", }, - [2595] = { + { ["id"] = "explicit.stat_1034611536", ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", ["type"] = "explicit", }, - [2596] = { + { ["id"] = "explicit.stat_3173882956", ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, - [2597] = { + { ["id"] = "explicit.stat_2256120736", ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", ["type"] = "explicit", }, - [2598] = { + { ["id"] = "explicit.stat_2969557004", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "explicit", }, - [2599] = { + { ["id"] = "explicit.stat_2131720304", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", ["type"] = "explicit", }, - [2600] = { + { ["id"] = "explicit.stat_2603051299", ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, - [2601] = { + { ["id"] = "explicit.stat_833138896", ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, - [2602] = { + { ["id"] = "explicit.stat_338620903", ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, - [2603] = { + { ["id"] = "explicit.stat_852470634", ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Lightning Damage", ["type"] = "explicit", }, - [2604] = { + { ["id"] = "explicit.stat_2135541924", ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", ["type"] = "explicit", }, - [2605] = { + { ["id"] = "explicit.stat_1148433552", ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", ["type"] = "explicit", }, - [2606] = { + { ["id"] = "explicit.stat_3939216292", ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", ["type"] = "explicit", }, - [2607] = { + { ["id"] = "explicit.stat_2849546516", ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", ["type"] = "explicit", }, - [2608] = { + { ["id"] = "explicit.stat_2534359663", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", ["type"] = "explicit", }, - [2609] = { + { ["id"] = "explicit.stat_3106718406", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", ["type"] = "explicit", }, - [2610] = { + { ["id"] = "explicit.stat_593241812", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, - [2611] = { + { ["id"] = "explicit.stat_3628935286", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, - [2612] = { + { ["id"] = "explicit.stat_2374711847", ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", ["type"] = "explicit", }, - [2613] = { + { ["id"] = "explicit.stat_4258720395", ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, - [2614] = { + { ["id"] = "explicit.stat_2334956771", ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "explicit", }, - [2615] = { + { ["id"] = "explicit.stat_2726713579", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "explicit", }, - [2616] = { + { ["id"] = "explicit.stat_525523040", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "explicit", }, - [2617] = { + { ["id"] = "explicit.stat_3566150527", ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", ["type"] = "explicit", }, - [2618] = { + { ["id"] = "explicit.stat_3831171903|19", ["text"] = "Oasis", ["type"] = "explicit", }, - [2619] = { + { ["id"] = "explicit.stat_3430033313", ["text"] = "Off-hand Hits inflict Runefather's Challenge", ["type"] = "explicit", }, - [2620] = { + { ["id"] = "explicit.stat_3191479793", ["text"] = "Offering Skills have #% increased Buff effect", ["type"] = "explicit", }, - [2621] = { + { ["id"] = "explicit.stat_2957407601", ["text"] = "Offering Skills have #% increased Duration", ["type"] = "explicit", }, - [2622] = { + { ["id"] = "explicit.stat_3787460122", ["text"] = "Offerings have #% increased Maximum Life", ["type"] = "explicit", }, - [2623] = { + { ["id"] = "explicit.stat_4215035940", ["text"] = "On Corruption, Item gains two Enchantments", ["type"] = "explicit", }, - [2624] = { + { ["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", }, - [2625] = { + { ["id"] = "explicit.stat_259470957", ["text"] = "On-Kill Effects happen twice", ["type"] = "explicit", }, - [2626] = { + { + ["id"] = "explicit.stat_326412910", + ["text"] = "Only Runes can be Socketed in this item", + ["type"] = "explicit", + }, + { ["id"] = "explicit.stat_250458861", ["text"] = "Only Soul Cores can be Socketed in this item", ["type"] = "explicit", }, - [2627] = { + { ["id"] = "explicit.stat_3642528642|6", ["text"] = "Only affects Passives in Large Ring", ["type"] = "explicit", }, - [2628] = { + { ["id"] = "explicit.stat_3642528642|8", ["text"] = "Only affects Passives in Massive Ring", ["type"] = "explicit", }, - [2629] = { + { ["id"] = "explicit.stat_3642528642|4", ["text"] = "Only affects Passives in Medium Ring", ["type"] = "explicit", }, - [2630] = { + { ["id"] = "explicit.stat_3642528642|5", ["text"] = "Only affects Passives in Medium-Large Ring", ["type"] = "explicit", }, - [2631] = { + { ["id"] = "explicit.stat_3642528642|3", ["text"] = "Only affects Passives in Medium-Small Ring", ["type"] = "explicit", }, - [2632] = { + { ["id"] = "explicit.stat_3642528642|2", ["text"] = "Only affects Passives in Small Ring", ["type"] = "explicit", }, - [2633] = { + { ["id"] = "explicit.stat_3642528642|7", ["text"] = "Only affects Passives in Very Large Ring", ["type"] = "explicit", }, - [2634] = { + { ["id"] = "explicit.stat_3642528642|1", ["text"] = "Only affects Passives in Very Small Ring", ["type"] = "explicit", }, - [2635] = { + { ["id"] = "explicit.stat_1520059289", ["text"] = "Onslaught", ["type"] = "explicit", }, - [2636] = { + { ["id"] = "explicit.stat_3831171903|7", ["text"] = "Pain Attunement", ["type"] = "explicit", }, - [2637] = { + { ["id"] = "explicit.stat_98977150", ["text"] = "Pain Attunement", ["type"] = "explicit", }, - [2638] = { + { ["id"] = "explicit.stat_3488640354", ["text"] = "Parried enemies take more Spell Damage instead of more Attack Damage", ["type"] = "explicit", }, - [2639] = { + { ["id"] = "explicit.stat_2104138899", ["text"] = "Parrying applies # Stack of Critical Weakness", ["type"] = "explicit", }, - [2640] = { + { ["id"] = "explicit.stat_4077035099", ["text"] = "Passives in Radius can be Allocated without being connected to your tree", ["type"] = "explicit", }, - [2641] = { + { ["id"] = "explicit.stat_2422708892|45202", ["text"] = "Passives in Radius of Ancestral Bond can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2642] = { + { ["id"] = "explicit.stat_2422708892|18684", ["text"] = "Passives in Radius of Avatar of Fire can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2643] = { + { ["id"] = "explicit.stat_2422708892|42680", ["text"] = "Passives in Radius of Blackflame Covenant can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2644] = { + { ["id"] = "explicit.stat_2422708892|51749", ["text"] = "Passives in Radius of Blood Magic can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2645] = { + { ["id"] = "explicit.stat_2422708892|56605", ["text"] = "Passives in Radius of Bulwark can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2646] = { + { ["id"] = "explicit.stat_2422708892|56349", ["text"] = "Passives in Radius of Chaos Inoculation can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2647] = { + { ["id"] = "explicit.stat_2422708892|33979", ["text"] = "Passives in Radius of Conduit can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2648] = { + { ["id"] = "explicit.stat_2422708892|9085", ["text"] = "Passives in Radius of Crimson Assault can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2649] = { + { ["id"] = "explicit.stat_2422708892|14226", ["text"] = "Passives in Radius of Dance with Death can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2650] = { + { ["id"] = "explicit.stat_2422708892|57513", ["text"] = "Passives in Radius of Eldritch Battery can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2651] = { + { ["id"] = "explicit.stat_2422708892|46742", ["text"] = "Passives in Radius of Elemental Equilibrium can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2652] = { + { ["id"] = "explicit.stat_2422708892|33404", ["text"] = "Passives in Radius of Eternal Youth can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2653] = { + { ["id"] = "explicit.stat_2422708892|32349", ["text"] = "Passives in Radius of Giant's Blood can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2654] = { + { ["id"] = "explicit.stat_2422708892|19288", ["text"] = "Passives in Radius of Glancing Blows can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2655] = { + { ["id"] = "explicit.stat_2422708892|34497", ["text"] = "Passives in Radius of Heartstopper can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2656] = { + { ["id"] = "explicit.stat_2422708892|64601", ["text"] = "Passives in Radius of Hollow Palm Technique can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2657] = { + { ["id"] = "explicit.stat_2422708892|28492", ["text"] = "Passives in Radius of Iron Reflexes can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2658] = { + { ["id"] = "explicit.stat_2422708892|61942", ["text"] = "Passives in Radius of Lord of the Wilds can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2659] = { + { ["id"] = "explicit.stat_2422708892|45918", ["text"] = "Passives in Radius of Mind Over Matter can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2660] = { + { ["id"] = "explicit.stat_2422708892|39935", ["text"] = "Passives in Radius of Necromantic Talisman can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2661] = { + { ["id"] = "explicit.stat_2422708892|25100", ["text"] = "Passives in Radius of Oasis can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2662] = { + { ["id"] = "explicit.stat_2422708892|55048", ["text"] = "Passives in Radius of Pain Attunement can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2663] = { + { ["id"] = "explicit.stat_2422708892|37484", ["text"] = "Passives in Radius of Primal Hunger can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2664] = { + { ["id"] = "explicit.stat_2422708892|44017", ["text"] = "Passives in Radius of Resolute Technique can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2665] = { + { ["id"] = "explicit.stat_2422708892|25520", ["text"] = "Passives in Radius of Resonance can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2666] = { + { ["id"] = "explicit.stat_2422708892|11230", ["text"] = "Passives in Radius of Ritual Cadence can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2667] = { + { ["id"] = "explicit.stat_2422708892|49547", ["text"] = "Passives in Radius of Scarred Faith can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2668] = { + { ["id"] = "explicit.stat_2422708892|41861", ["text"] = "Passives in Radius of Trusted Kinship can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2669] = { + { ["id"] = "explicit.stat_2422708892|14540", ["text"] = "Passives in Radius of Unwavering Stance can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2670] = { + { ["id"] = "explicit.stat_2422708892|33369", ["text"] = "Passives in Radius of Vaal Pact can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2671] = { + { ["id"] = "explicit.stat_2422708892|47759", ["text"] = "Passives in Radius of Whispers of Doom can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2672] = { + { ["id"] = "explicit.stat_2422708892|49363", ["text"] = "Passives in Radius of Wildsurge Incantation can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2673] = { + { ["id"] = "explicit.stat_2422708892|52", ["text"] = "Passives in Radius of Zealot's Oath can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2674] = { + { ["id"] = "explicit.stat_2930706364", ["text"] = "Permanently Intimidate enemies on Block", ["type"] = "explicit", }, - [2675] = { + { ["id"] = "explicit.stat_2041668411", ["text"] = "Physical Damage is Pinning", ["type"] = "explicit", }, - [2676] = { + { ["id"] = "explicit.stat_2424163939", ["text"] = "Physical Damage of Enemies Hitting you is Lucky", ["type"] = "explicit", }, - [2677] = { + { ["id"] = "explicit.stat_905072977", ["text"] = "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", ["type"] = "explicit", }, - [2678] = { + { ["id"] = "explicit.stat_3063814459", ["text"] = "Pin Enemies which are Primed for Pinning", ["type"] = "explicit", }, - [2679] = { + { ["id"] = "explicit.stat_2408625104", ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", ["type"] = "explicit", }, - [2680] = { + { ["id"] = "explicit.stat_558910024", ["text"] = "Players are Cursed with Elemental Weakness", ["type"] = "explicit", }, - [2681] = { + { ["id"] = "explicit.stat_4103440490", ["text"] = "Players are Cursed with Enfeeble", ["type"] = "explicit", }, - [2682] = { + { ["id"] = "explicit.stat_2326202293", ["text"] = "Players are Cursed with Temporal Chains", ["type"] = "explicit", }, - [2683] = { + { ["id"] = "explicit.stat_436406826", ["text"] = "Players are Marked for Death for # secondsafter killing a Rare or Unique monster", ["type"] = "explicit", }, - [2684] = { + { ["id"] = "explicit.stat_554690751", ["text"] = "Players are periodically Cursed with Elemental Weakness", ["type"] = "explicit", }, - [2685] = { + { ["id"] = "explicit.stat_2029171424", ["text"] = "Players are periodically Cursed with Enfeeble", ["type"] = "explicit", }, - [2686] = { + { ["id"] = "explicit.stat_1629357380", ["text"] = "Players are periodically Cursed with Temporal Chains", ["type"] = "explicit", }, - [2687] = { + { ["id"] = "explicit.stat_2549889921", ["text"] = "Players gain #% reduced Flask Charges", ["type"] = "explicit", }, - [2688] = { + { ["id"] = "explicit.stat_4181072906", ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", ["type"] = "explicit", }, - [2689] = { + { ["id"] = "explicit.stat_3510648768", ["text"] = "Players have #% more Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [2690] = { + { ["id"] = "explicit.stat_941368244", ["text"] = "Players have #% more Cooldown Recovery Rate", ["type"] = "explicit", }, - [2691] = { + { ["id"] = "explicit.stat_4274247770", ["text"] = "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", ["type"] = "explicit", }, - [2692] = { + { ["id"] = "explicit.stat_1310597900", ["text"] = "Players have #% more Recovery Rate of Life, Mana and Energy Shield", ["type"] = "explicit", }, - [2693] = { + { ["id"] = "explicit.stat_3119282240", ["text"] = "Players have #% more maximum Life and Energy Shield", ["type"] = "explicit", }, - [2694] = { + { ["id"] = "explicit.stat_1365079333", ["text"] = "Players steal the Eaten Souls of Slain Rare Monsters in Area", ["type"] = "explicit", }, - [2695] = { + { ["id"] = "explicit.stat_3403424702", ["text"] = "Possessed by Spirit Of The Bear for # seconds on use", ["type"] = "explicit", }, - [2696] = { + { ["id"] = "explicit.stat_1685559578", ["text"] = "Possessed by Spirit Of The Boar for # seconds on use", ["type"] = "explicit", }, - [2697] = { + { ["id"] = "explicit.stat_2839557359", ["text"] = "Possessed by Spirit Of The Cat for # seconds on use", ["type"] = "explicit", }, - [2698] = { + { ["id"] = "explicit.stat_300107724", ["text"] = "Possessed by Spirit Of The Owl for # seconds on use", ["type"] = "explicit", }, - [2699] = { + { ["id"] = "explicit.stat_3463873033", ["text"] = "Possessed by Spirit Of The Ox for # seconds on use", ["type"] = "explicit", }, - [2700] = { + { ["id"] = "explicit.stat_3763491818", ["text"] = "Possessed by Spirit Of The Primate for # seconds on use", ["type"] = "explicit", }, - [2701] = { + { ["id"] = "explicit.stat_3181677174", ["text"] = "Possessed by Spirit Of The Serpent for # seconds on use", ["type"] = "explicit", }, - [2702] = { + { ["id"] = "explicit.stat_3685424517", ["text"] = "Possessed by Spirit Of The Stag for # seconds on use", ["type"] = "explicit", }, - [2703] = { + { ["id"] = "explicit.stat_3504441212", ["text"] = "Possessed by Spirit Of The Wolf for # seconds on use", ["type"] = "explicit", }, - [2704] = { + { ["id"] = "explicit.stat_1810907437", ["text"] = "Presence Radius is doubled", ["type"] = "explicit", }, - [2705] = { + { ["id"] = "explicit.stat_3552135623", ["text"] = "Prevent #% of Damage from Deflected Hits", ["type"] = "explicit", }, - [2706] = { + { ["id"] = "explicit.stat_3831171903|16", ["text"] = "Primal Hunger", ["type"] = "explicit", }, - [2707] = { + { ["id"] = "explicit.stat_3932115504", ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", ["type"] = "explicit", }, - [2708] = { + { ["id"] = "explicit.stat_2214228141", ["text"] = "Projectiles Pierce all Ignited enemies", ["type"] = "explicit", }, - [2709] = { + { ["id"] = "explicit.stat_3464380325", ["text"] = "Projectiles Split towards # targets", ["type"] = "explicit", }, - [2710] = { + { ["id"] = "explicit.stat_2825946427", ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", ["type"] = "explicit", }, - [2711] = { + { ["id"] = "explicit.stat_2468595624", ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", ["type"] = "explicit", }, - [2712] = { + { ["id"] = "explicit.stat_883169830", ["text"] = "Projectiles deal #% increased Damage with Hits for each time they have Pierced", ["type"] = "explicit", }, - [2713] = { + { ["id"] = "explicit.stat_1517628125", ["text"] = "Projectiles from Spells Chain +# times", ["type"] = "explicit", }, - [2714] = { + { ["id"] = "explicit.stat_1199718219", ["text"] = "Projectiles from Spells Fork", ["type"] = "explicit", }, - [2715] = { + { ["id"] = "explicit.stat_3826125995", ["text"] = "Projectiles from Spells cannot Pierce", ["type"] = "explicit", }, - [2716] = { + { ["id"] = "explicit.stat_3003542304", ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, - [2717] = { + { ["id"] = "explicit.stat_4081947835", ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "explicit", }, - [2718] = { + { ["id"] = "explicit.stat_2189073790", ["text"] = "Projectiles have #% chance to Fork if you've dealt a Melee Hit in the past eight seconds", ["type"] = "explicit", }, - [2719] = { + { ["id"] = "explicit.stat_2573406169", ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", ["type"] = "explicit", }, - [2720] = { + { ["id"] = "explicit.stat_2706625504", ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", ["type"] = "explicit", }, - [2721] = { + { ["id"] = "explicit.stat_1163615092", ["text"] = "Projectiles have #% increased Critical Hit chance for each time they have Pierced", ["type"] = "explicit", }, - [2722] = { + { ["id"] = "explicit.stat_2550456553", ["text"] = "Rare Monsters have # additional Modifier", ["type"] = "explicit", }, - [2723] = { + { ["id"] = "explicit.stat_3732878551", ["text"] = "Rare Monsters have a #% Surpassing chance to have an additional Modifier", ["type"] = "explicit", }, - [2724] = { + { ["id"] = "explicit.stat_3732878551", ["text"] = "Rare Monsters in Map have a #% Surpassing chance to have an additional Modifier", ["type"] = "explicit", }, - [2725] = { + { ["id"] = "explicit.stat_3198163869", ["text"] = "Raven-Touched", ["type"] = "explicit", }, - [2726] = { + { ["id"] = "explicit.stat_2365392475", ["text"] = "Recover # Life when Used", ["type"] = "explicit", }, - [2727] = { + { ["id"] = "explicit.stat_1120862500", ["text"] = "Recover # Mana when Used", ["type"] = "explicit", }, - [2728] = { + { ["id"] = "explicit.stat_554145967", ["text"] = "Recover # Runic Ward when a Charm is used", ["type"] = "explicit", }, - [2729] = { + { ["id"] = "explicit.stat_1568848828", ["text"] = "Recover # Runic Ward when you Block", ["type"] = "explicit", }, - [2730] = { + { ["id"] = "explicit.stat_4033618138", ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", ["type"] = "explicit", }, - [2731] = { + { ["id"] = "explicit.stat_2991045011", ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", ["type"] = "explicit", }, - [2732] = { + { ["id"] = "explicit.stat_1990472846", ["text"] = "Recover #% of Missing Life before being Hit by an Enemy", ["type"] = "explicit", }, - [2733] = { + { ["id"] = "explicit.stat_939832726", ["text"] = "Recover #% of maximum Life for each Endurance Charge consumed", ["type"] = "explicit", }, - [2734] = { + { ["id"] = "explicit.stat_2023107756", ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "explicit", }, - [2735] = { + { ["id"] = "explicit.stat_1781372024", ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", ["type"] = "explicit", }, - [2736] = { + { ["id"] = "explicit.stat_2535713562", ["text"] = "Recover #% of maximum Life per Poison affecting Enemies you Kill", ["type"] = "explicit", }, - [2737] = { + { ["id"] = "explicit.stat_2442647190", ["text"] = "Recover #% of maximum Life when you Block", ["type"] = "explicit", }, - [2738] = { + { ["id"] = "explicit.stat_1040141381", ["text"] = "Recover #% of maximum Life when you use a Warcry", ["type"] = "explicit", }, - [2739] = { + { ["id"] = "explicit.stat_1030153674", ["text"] = "Recover #% of maximum Mana on Kill", ["type"] = "explicit", }, - [2740] = { + { ["id"] = "explicit.stat_1604736568", ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "explicit", }, - [2741] = { + { ["id"] = "explicit.stat_4121454694", ["text"] = "Recover #% of maximum Mana when a Charm is used", ["type"] = "explicit", }, - [2742] = { + { ["id"] = "explicit.stat_346374719", ["text"] = "Recover #% of maximum Mana when you consume a Power Charge", ["type"] = "explicit", }, - [2743] = { + { ["id"] = "explicit.stat_3503117295", ["text"] = "Recover #% of your maximum Life when an Enemy dies in your Presence", ["type"] = "explicit", }, - [2744] = { + { ["id"] = "explicit.stat_2456226238", ["text"] = "Recover #% of your maximum Mana when an Enemy dies in your Presence", ["type"] = "explicit", }, - [2745] = { + { ["id"] = "explicit.stat_2716923832", ["text"] = "Recover Life equal to #% of Mana Flask's Recovery Amount when used", ["type"] = "explicit", }, - [2746] = { + { ["id"] = "explicit.stat_3891350097", ["text"] = "Recover Mana equal to #% of Life Flask's Recovery Amount when used", ["type"] = "explicit", }, - [2747] = { + { ["id"] = "explicit.stat_1002973905", ["text"] = "Recover all Mana when Used", ["type"] = "explicit", }, - [2748] = { + { ["id"] = "explicit.stat_746505085", ["text"] = "Reflects opposite Ring", ["type"] = "explicit", }, - [2749] = { + { ["id"] = "explicit.stat_1312381104", ["text"] = "Regenerate # Life per second for every 10 Intelligence", ["type"] = "explicit", }, - [2750] = { + { ["id"] = "explicit.stat_3276271783", ["text"] = "Regenerate # Life per second per Maximum Energy Shield", ["type"] = "explicit", }, - [2751] = { + { ["id"] = "explicit.stat_2853314994", ["text"] = "Regenerate # Rage per second", ["type"] = "explicit", }, - [2752] = { + { ["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", }, - [2753] = { + { ["id"] = "explicit.stat_836936635", ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "explicit", }, - [2754] = { + { ["id"] = "explicit.stat_2201614328", ["text"] = "Regenerate #% of maximum Life per second if you have been Hit Recently", ["type"] = "explicit", }, - [2755] = { + { ["id"] = "explicit.stat_302024054", ["text"] = "Regenerate #% of maximum Life per second while Ignited", ["type"] = "explicit", }, - [2756] = { + { ["id"] = "explicit.stat_2002533190", ["text"] = "Regenerate #% of maximum Life per second while Surrounded", ["type"] = "explicit", }, - [2757] = { + { ["id"] = "explicit.stat_3942946753", ["text"] = "Regenerate #% of maximum Life per second while on Low Life", ["type"] = "explicit", }, - [2758] = { + { ["id"] = "explicit.stat_1106321864", ["text"] = "Regenerate #% of maximum Runic Ward per second during Effect", ["type"] = "explicit", }, - [2759] = { + { ["id"] = "explicit.stat_3418580811|22", ["text"] = "Remembrancing # songworthy deeds by the line of MedvedPassives in radius are Conquered by the Kalguur", ["type"] = "explicit", }, - [2760] = { + { ["id"] = "explicit.stat_3418580811|23", ["text"] = "Remembrancing # songworthy deeds by the line of OlrothPassives in radius are Conquered by the Kalguur", ["type"] = "explicit", }, - [2761] = { + { ["id"] = "explicit.stat_3418580811|21", ["text"] = "Remembrancing # songworthy deeds by the line of VoranaPassives in radius are Conquered by the Kalguur", ["type"] = "explicit", }, - [2762] = { + { ["id"] = "explicit.stat_3482326075", ["text"] = "Remnants can be collected from #% further away", ["type"] = "explicit", }, - [2763] = { + { ["id"] = "explicit.stat_315717203", ["text"] = "Remnants you create affect Allies in your Presence as well as you when collected", ["type"] = "explicit", }, - [2764] = { + { ["id"] = "explicit.stat_1999910726", ["text"] = "Remnants you create have #% increased effect", ["type"] = "explicit", }, - [2765] = { + { ["id"] = "explicit.stat_1394184789", ["text"] = "Remove Bleeding when you use a Life Flask", ["type"] = "explicit", }, - [2766] = { + { ["id"] = "explicit.stat_648019518", ["text"] = "Removes #% of Life Recovered from Mana when used", ["type"] = "explicit", }, - [2767] = { + { ["id"] = "explicit.stat_959641748", ["text"] = "Removes #% of Mana Recovered from Life when used", ["type"] = "explicit", }, - [2768] = { + { ["id"] = "explicit.stat_2306588612", ["text"] = "Repeatable Attacks with this Bow Repeat # time if no enemies are in your Presence", ["type"] = "explicit", }, - [2769] = { + { ["id"] = "explicit.stat_2267564181", ["text"] = "Require # additional enemies to be Surrounded", ["type"] = "explicit", }, - [2770] = { + { ["id"] = "explicit.stat_2282052746", ["text"] = "Rerolling Favours at Ritual Altars in Area costs #% increased Tribute", ["type"] = "explicit", }, - [2771] = { + { ["id"] = "explicit.stat_2282052746", ["text"] = "Rerolling Favours at Ritual Altars in Map costs #% increased Tribute", ["type"] = "explicit", }, - [2772] = { + { ["id"] = "explicit.stat_3831171903|6", ["text"] = "Resolute Technique", ["type"] = "explicit", }, - [2773] = { + { ["id"] = "explicit.stat_3831171903|14", ["text"] = "Resonance", ["type"] = "explicit", }, - [2774] = { + { ["id"] = "explicit.stat_1031644647", ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Magic", ["type"] = "explicit", }, - [2775] = { + { ["id"] = "explicit.stat_3979184174", ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Rare", ["type"] = "explicit", }, - [2776] = { + { ["id"] = "explicit.stat_1031644647", ["text"] = "Revived Monsters from Ritual Altars in Map have #% increased chance to be Magic", ["type"] = "explicit", }, - [2777] = { + { ["id"] = "explicit.stat_3979184174", ["text"] = "Revived Monsters from Ritual Altars in Map have #% increased chance to be Rare", ["type"] = "explicit", }, - [2778] = { + { ["id"] = "explicit.stat_1555918911", ["text"] = "Right ring slot: Projectiles from Spells Chain +# times", ["type"] = "explicit", }, - [2779] = { + { ["id"] = "explicit.stat_2933024469", ["text"] = "Right ring slot: Projectiles from Spells cannot Fork", ["type"] = "explicit", }, - [2780] = { + { ["id"] = "explicit.stat_120737942", ["text"] = "Ritual Altars in Area allow rerolling Favours an additional time", ["type"] = "explicit", }, - [2781] = { + { ["id"] = "explicit.stat_120737942", ["text"] = "Ritual Altars in Map allow rerolling Favours an additional time", ["type"] = "explicit", }, - [2782] = { + { ["id"] = "explicit.stat_3831171903|29", ["text"] = "Ritual Cadence", ["type"] = "explicit", }, - [2783] = { + { ["id"] = "explicit.stat_4219853180", ["text"] = "Ritual Favours in Area have #% increased chance to be Omens", ["type"] = "explicit", }, - [2784] = { + { ["id"] = "explicit.stat_4219853180", ["text"] = "Ritual Favours in Map have #% increased chance to be Omens", ["type"] = "explicit", }, - [2785] = { + { ["id"] = "explicit.stat_3108672983", ["text"] = "Rolls only the minimum or maximum Damage value for each Damage Type", ["type"] = "explicit", }, - [2786] = { + { ["id"] = "explicit.stat_2816104578", ["text"] = "Runic Monsters in your Maps are Duplicated", ["type"] = "explicit", }, - [2787] = { + { ["id"] = "explicit.stat_76982026", ["text"] = "Sacrifice # Life to not consume the last bolt when firing", ["type"] = "explicit", }, - [2788] = { + { ["id"] = "explicit.stat_613752285", ["text"] = "Sacrifice #% of maximum Life to gain that much Energy Shield when you Cast a Spell", ["type"] = "explicit", }, - [2789] = { + { ["id"] = "explicit.stat_3076483222|49977", ["text"] = "Sacrifice up to 10 Chaos Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2790] = { + { ["id"] = "explicit.stat_3076483222|53954", ["text"] = "Sacrifice up to 10 Gemcutter's Prisms to receive double on Trial completion", ["type"] = "explicit", }, - [2791] = { + { ["id"] = "explicit.stat_3076483222|8084", ["text"] = "Sacrifice up to 10 Greater Exalted Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2792] = { + { ["id"] = "explicit.stat_3076483222|30874", ["text"] = "Sacrifice up to 10 Greater Regal Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2793] = { + { ["id"] = "explicit.stat_3076483222|20358", ["text"] = "Sacrifice up to 10 Orbs of Alchemy to receive double on Trial completion", ["type"] = "explicit", }, - [2794] = { + { ["id"] = "explicit.stat_3076483222|64921", ["text"] = "Sacrifice up to 10 Vaal Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2795] = { + { ["id"] = "explicit.stat_3076483222|38303", ["text"] = "Sacrifice up to 20 Arcanist's Etchers to receive double on Trial completion", ["type"] = "explicit", }, - [2796] = { + { ["id"] = "explicit.stat_3076483222|4897", ["text"] = "Sacrifice up to 20 Armourer's Scraps to receive double on Trial completion", ["type"] = "explicit", }, - [2797] = { + { ["id"] = "explicit.stat_3076483222|19846", ["text"] = "Sacrifice up to 20 Artificer's Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2798] = { + { ["id"] = "explicit.stat_3076483222|32821", ["text"] = "Sacrifice up to 20 Blacksmith's Whetstones to receive double on Trial completion", ["type"] = "explicit", }, - [2799] = { + { ["id"] = "explicit.stat_3076483222|62634", ["text"] = "Sacrifice up to 20 Exalted Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2800] = { + { ["id"] = "explicit.stat_3076483222|136", ["text"] = "Sacrifice up to 20 Glassblower's Baubles to receive double on Trial completion", ["type"] = "explicit", }, - [2801] = { + { ["id"] = "explicit.stat_3076483222|54496", ["text"] = "Sacrifice up to 20 Regal Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2802] = { + { ["id"] = "explicit.stat_3076483222|61382", ["text"] = "Sacrifice up to 3 Divine Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2803] = { + { ["id"] = "explicit.stat_3076483222|19854", ["text"] = "Sacrifice up to 3 Orb of Annulments to receive double on Trial completion", ["type"] = "explicit", }, - [2804] = { + { ["id"] = "explicit.stat_3076483222|45026", ["text"] = "Sacrifice up to 3 Orbs of Chance to receive double on Trial completion", ["type"] = "explicit", }, - [2805] = { + { ["id"] = "explicit.stat_3076483222|56025", ["text"] = "Sacrifice up to 3 Perfect Chaos Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2806] = { + { ["id"] = "explicit.stat_3076483222|6774", ["text"] = "Sacrifice up to 3 Perfect Exalted Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2807] = { + { ["id"] = "explicit.stat_3076483222|51981", ["text"] = "Sacrifice up to 3 Perfect Regal Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2808] = { + { ["id"] = "explicit.stat_3076483222|42106", ["text"] = "Sacrifice up to 5 Greater Chaos Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2809] = { + { ["id"] = "explicit.stat_3831171903|30", ["text"] = "Scarred Faith", ["type"] = "explicit", }, - [2810] = { + { ["id"] = "explicit.stat_4147510958", ["text"] = "Sealed Skills have # to maximum Seals", ["type"] = "explicit", }, - [2811] = { + { ["id"] = "explicit.stat_3384867265", ["text"] = "Sealed Skills have #% increased Seal gain frequency", ["type"] = "explicit", }, - [2812] = { + { ["id"] = "explicit.stat_2535267021", ["text"] = "Share Charges with Allies in your Presence", ["type"] = "explicit", }, - [2813] = { + { ["id"] = "explicit.stat_4256314560", ["text"] = "Shocks you when you reach maximum Power Charges", ["type"] = "explicit", }, - [2814] = { + { ["id"] = "explicit.stat_4245256219", ["text"] = "Skill Gems have no Attribute Requirements", ["type"] = "explicit", }, - [2815] = { + { ["id"] = "explicit.stat_467146530", ["text"] = "Skills Cost Divinity instead of Mana or Life", ["type"] = "explicit", }, - [2816] = { + { ["id"] = "explicit.stat_3605834869", ["text"] = "Skills Gain #% of Mana Cost as Extra Life Cost", ["type"] = "explicit", }, - [2817] = { + { ["id"] = "explicit.stat_2638381947", ["text"] = "Skills from Corrupted Gems have #% increased Cost Efficiency during any Flask Effect", ["type"] = "explicit", }, - [2818] = { + { ["id"] = "explicit.stat_2035336006", ["text"] = "Skills from Corrupted Gems have #% of Mana Costs Converted to Life Costs", ["type"] = "explicit", }, - [2819] = { + { ["id"] = "explicit.stat_4117005593", ["text"] = "Skills gain #% of Damage as Chaos Damage per 3 Life Cost", ["type"] = "explicit", }, - [2820] = { + { ["id"] = "explicit.stat_396200591", ["text"] = "Skills have # seconds to Cooldown", ["type"] = "explicit", }, - [2821] = { + { ["id"] = "explicit.stat_2942439603", ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", ["type"] = "explicit", }, - [2822] = { + { ["id"] = "explicit.stat_3024873336", ["text"] = "Skills have #% chance to not remove Elemental Infusions but still count as consuming them", ["type"] = "explicit", }, - [2823] = { + { ["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", }, - [2824] = { + { ["id"] = "explicit.stat_3982604001", ["text"] = "Skills have #% longer Perfect Timing window during effect", ["type"] = "explicit", }, - [2825] = { + { ["id"] = "explicit.stat_2942704390", ["text"] = "Skills have +# to Limit", ["type"] = "explicit", }, - [2826] = { + { ["id"] = "explicit.stat_3200877707", ["text"] = "Skills have a #% chance to not consume Glory", ["type"] = "explicit", }, - [2827] = { + { ["id"] = "explicit.stat_1373370443", ["text"] = "Skills have a #% longer Perfect Timing window", ["type"] = "explicit", }, - [2828] = { + { ["id"] = "explicit.stat_2838161567", ["text"] = "Skills reserve 50% less Spirit", ["type"] = "explicit", }, - [2829] = { + { ["id"] = "explicit.stat_2538411280", ["text"] = "Skills which Empower an Attack have #% chance to not count that Attack", ["type"] = "explicit", }, - [2830] = { + { ["id"] = "explicit.stat_2544540062", ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", ["type"] = "explicit", }, - [2831] = { + { ["id"] = "explicit.stat_2480962043", ["text"] = "Skills which require Glory generate # Glory every 2 seconds", ["type"] = "explicit", }, - [2832] = { + { ["id"] = "explicit.stat_2323782229", ["text"] = "Slaying Rare Monsters in Area pauses the Delirium Mirror Timer for 1 second", ["type"] = "explicit", }, - [2833] = { + { ["id"] = "explicit.stat_2323782229", ["text"] = "Slaying Rare Monsters in Map pauses the Delirium Mirror Timer for 1 second", ["type"] = "explicit", }, - [2834] = { + { ["id"] = "explicit.stat_1316656343", ["text"] = "Small Passive Skills in Radius also grant # to maximum Life", ["type"] = "explicit", }, - [2835] = { + { ["id"] = "explicit.stat_1294464552", ["text"] = "Small Passive Skills in Radius also grant # to maximum Mana", ["type"] = "explicit", }, - [2836] = { + { ["id"] = "explicit.stat_2610562860", ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", ["type"] = "explicit", }, - [2837] = { + { ["id"] = "explicit.stat_2840989393", ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", ["type"] = "explicit", }, - [2838] = { + { ["id"] = "explicit.stat_944643028", ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, - [2839] = { + { ["id"] = "explicit.stat_533892981", ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", ["type"] = "explicit", }, - [2840] = { + { ["id"] = "explicit.stat_1285594161", ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", ["type"] = "explicit", }, - [2841] = { + { ["id"] = "explicit.stat_3858398337", ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "explicit", }, - [2842] = { + { ["id"] = "explicit.stat_1426522529", ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "explicit", }, - [2843] = { + { ["id"] = "explicit.stat_1309799717", ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "explicit", }, - [2844] = { + { ["id"] = "explicit.stat_3088348485", ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", ["type"] = "explicit", }, - [2845] = { + { ["id"] = "explicit.stat_2442527254", ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "explicit", }, - [2846] = { + { ["id"] = "explicit.stat_1087108135", ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", ["type"] = "explicit", }, - [2847] = { + { ["id"] = "explicit.stat_1834658952", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", ["type"] = "explicit", }, - [2848] = { + { ["id"] = "explicit.stat_1892122971", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", ["type"] = "explicit", }, - [2849] = { + { ["id"] = "explicit.stat_266564538", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", ["type"] = "explicit", }, - [2850] = { + { ["id"] = "explicit.stat_3752589831", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", ["type"] = "explicit", }, - [2851] = { + { ["id"] = "explicit.stat_945774314", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", ["type"] = "explicit", }, - [2852] = { + { ["id"] = "explicit.stat_517664839", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", ["type"] = "explicit", }, - [2853] = { + { ["id"] = "explicit.stat_147764878", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, - [2854] = { + { ["id"] = "explicit.stat_1852184471", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", ["type"] = "explicit", }, - [2855] = { + { ["id"] = "explicit.stat_1590846356", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", ["type"] = "explicit", }, - [2856] = { + { ["id"] = "explicit.stat_821948283", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", ["type"] = "explicit", }, - [2857] = { + { ["id"] = "explicit.stat_2809428780", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", ["type"] = "explicit", }, - [2858] = { + { ["id"] = "explicit.stat_1160637284", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", ["type"] = "explicit", }, - [2859] = { + { ["id"] = "explicit.stat_3409275777", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", ["type"] = "explicit", }, - [2860] = { + { ["id"] = "explicit.stat_3222402650", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "explicit", }, - [2861] = { + { ["id"] = "explicit.stat_1552666713", ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", ["type"] = "explicit", }, - [2862] = { + { ["id"] = "explicit.stat_1994296038", ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "explicit", }, - [2863] = { + { ["id"] = "explicit.stat_139889694", ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "explicit", }, - [2864] = { + { ["id"] = "explicit.stat_394473632", ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", ["type"] = "explicit", }, - [2865] = { + { ["id"] = "explicit.stat_1773308808", ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", ["type"] = "explicit", }, - [2866] = { + { ["id"] = "explicit.stat_830345042", ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", ["type"] = "explicit", }, - [2867] = { + { ["id"] = "explicit.stat_1417267954", ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "explicit", }, - [2868] = { + { ["id"] = "explicit.stat_255840549", ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", ["type"] = "explicit", }, - [2869] = { + { ["id"] = "explicit.stat_980177976", ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", ["type"] = "explicit", }, - [2870] = { + { ["id"] = "explicit.stat_2768899959", ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "explicit", }, - [2871] = { + { ["id"] = "explicit.stat_3774951878", ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", ["type"] = "explicit", }, - [2872] = { + { ["id"] = "explicit.stat_3256879910", ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", ["type"] = "explicit", }, - [2873] = { + { ["id"] = "explicit.stat_1337740333", ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", ["type"] = "explicit", }, - [2874] = { + { ["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", }, - [2875] = { + { ["id"] = "explicit.stat_793875384", ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", ["type"] = "explicit", }, - [2876] = { + { ["id"] = "explicit.stat_1007380041", ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", ["type"] = "explicit", }, - [2877] = { + { ["id"] = "explicit.stat_455816363", ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", ["type"] = "explicit", }, - [2878] = { + { ["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", }, - [2879] = { + { ["id"] = "explicit.stat_3513818125", ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", ["type"] = "explicit", }, - [2880] = { + { ["id"] = "explicit.stat_1137305356", ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "explicit", }, - [2881] = { + { ["id"] = "explicit.stat_484792219", ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", ["type"] = "explicit", }, - [2882] = { + { ["id"] = "explicit.stat_654207792", ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "explicit", }, - [2883] = { + { ["id"] = "explicit.stat_1320662475", ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", ["type"] = "explicit", }, - [2884] = { + { ["id"] = "explicit.stat_2108821127", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", ["type"] = "explicit", }, - [2885] = { + { ["id"] = "explicit.stat_442393998", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", ["type"] = "explicit", }, - [2886] = { + { ["id"] = "explicit.stat_1145481685", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", ["type"] = "explicit", }, - [2887] = { + { ["id"] = "explicit.stat_1602294220", ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", ["type"] = "explicit", }, - [2888] = { + { ["id"] = "explicit.stat_1129429646", ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", ["type"] = "explicit", }, - [2889] = { + { ["id"] = "explicit.stat_3666476747", ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", ["type"] = "explicit", }, - [2890] = { + { ["id"] = "explicit.stat_3700202631", ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", ["type"] = "explicit", }, - [2891] = { + { ["id"] = "explicit.stat_1039268420", ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", ["type"] = "explicit", }, - [2892] = { + { ["id"] = "explicit.stat_3665922113", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "explicit", }, - [2893] = { + { ["id"] = "explicit.stat_1809641701", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Life", ["type"] = "explicit", }, - [2894] = { + { ["id"] = "explicit.stat_1247628870", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Mana", ["type"] = "explicit", }, - [2895] = { + { ["id"] = "explicit.stat_860443350", ["text"] = "Small Passive Skills in Radius also grant #% reduced Freeze Duration on you", ["type"] = "explicit", }, - [2896] = { + { ["id"] = "explicit.stat_3474941090", ["text"] = "Small Passive Skills in Radius also grant #% reduced Ignite Duration on you", ["type"] = "explicit", }, - [2897] = { + { ["id"] = "explicit.stat_1627878766", ["text"] = "Small Passive Skills in Radius also grant #% reduced Shock duration on you", ["type"] = "explicit", }, - [2898] = { + { ["id"] = "explicit.stat_2264240911", ["text"] = "Small Passive Skills in Radius also grant #% to Chaos Resistance", ["type"] = "explicit", }, - [2899] = { + { ["id"] = "explicit.stat_2884937919", ["text"] = "Small Passive Skills in Radius also grant #% to Cold Resistance", ["type"] = "explicit", }, - [2900] = { + { ["id"] = "explicit.stat_2948688907", ["text"] = "Small Passive Skills in Radius also grant #% to Fire Resistance", ["type"] = "explicit", }, - [2901] = { + { ["id"] = "explicit.stat_3994876825", ["text"] = "Small Passive Skills in Radius also grant #% to Lightning Resistance", ["type"] = "explicit", }, - [2902] = { + { ["id"] = "explicit.stat_318092306", ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", ["type"] = "explicit", }, - [2903] = { + { ["id"] = "explicit.stat_4142814612", ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, - [2904] = { + { ["id"] = "explicit.stat_2690740379", ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", ["type"] = "explicit", }, - [2905] = { + { ["id"] = "explicit.stat_4089835882", ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", ["type"] = "explicit", }, - [2906] = { + { ["id"] = "explicit.stat_1494950893", ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", ["type"] = "explicit", }, - [2907] = { + { ["id"] = "explicit.stat_2638756573", ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", ["type"] = "explicit", }, - [2908] = { + { ["id"] = "explicit.stat_1896066427", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", ["type"] = "explicit", }, - [2909] = { + { ["id"] = "explicit.stat_1432756708", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, - [2910] = { + { ["id"] = "explicit.stat_868556494", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", ["type"] = "explicit", }, - [2911] = { + { ["id"] = "explicit.stat_4258000627", ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", ["type"] = "explicit", }, - [2912] = { + { ["id"] = "explicit.stat_3395186672", ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", ["type"] = "explicit", }, - [2913] = { + { ["id"] = "explicit.stat_693237939", ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, - [2914] = { + { ["id"] = "explicit.stat_1653682082", ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, - [2915] = { + { ["id"] = "explicit.stat_3065378291", ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", ["type"] = "explicit", }, - [2916] = { + { ["id"] = "explicit.stat_4162678661", ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, - [2917] = { + { ["id"] = "explicit.stat_2202308025", ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", ["type"] = "explicit", }, - [2918] = { + { ["id"] = "explicit.stat_2954360902", ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", ["type"] = "explicit", }, - [2919] = { + { ["id"] = "explicit.stat_30438393", ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", ["type"] = "explicit", }, - [2920] = { + { ["id"] = "explicit.stat_378796798", ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", ["type"] = "explicit", }, - [2921] = { + { ["id"] = "explicit.stat_1756380435", ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "explicit", }, - [2922] = { + { ["id"] = "explicit.stat_3225608889", ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, - [2923] = { + { ["id"] = "explicit.stat_2107703111", ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", ["type"] = "explicit", }, - [2924] = { + { ["id"] = "explicit.stat_473917671", ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", ["type"] = "explicit", }, - [2925] = { + { ["id"] = "explicit.stat_1404607671", ["text"] = "Soul Eater", ["type"] = "explicit", }, - [2926] = { + { ["id"] = "explicit.stat_4106787208", ["text"] = "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", ["type"] = "explicit", }, - [2927] = { + { ["id"] = "explicit.stat_2653175601", ["text"] = "Spell Hits Gain #% of Damage as Extra Chaos Damage per Curse on target", ["type"] = "explicit", }, - [2928] = { + { ["id"] = "explicit.stat_1548338404", ["text"] = "Spell Hits Gain #% of Damage as Extra Physical Damage per Curse on target", ["type"] = "explicit", }, - [2929] = { + { ["id"] = "explicit.stat_2474424958", ["text"] = "Spell Skills have # to maximum number of Summoned Totems", ["type"] = "explicit", }, - [2930] = { + { ["id"] = "explicit.stat_1967040409", ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "explicit", }, - [2931] = { + { ["id"] = "explicit.stat_555706343", ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", ["type"] = "explicit", }, - [2932] = { + { ["id"] = "explicit.stat_1013492127", ["text"] = "Spells fire # additional ProjectilesSpells fire Projectiles in a circle", ["type"] = "explicit", }, - [2933] = { + { ["id"] = "explicit.stat_1493485657", ["text"] = "Spells have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [2934] = { + { ["id"] = "explicit.stat_2348696937", ["text"] = "Spells have a #% chance to inflict Withered for 4 seconds on Hit", ["type"] = "explicit", }, - [2935] = { + { ["id"] = "explicit.stat_1088082880", ["text"] = "Spells which cost Life Gain #% of Damage as Extra Physical Damage", ["type"] = "explicit", }, - [2936] = { + { ["id"] = "explicit.stat_2230687504", ["text"] = "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", ["type"] = "explicit", }, - [2937] = { + { ["id"] = "explicit.stat_3675300253", ["text"] = "Strikes deal Splash Damage", ["type"] = "explicit", }, - [2938] = { + { ["id"] = "explicit.stat_3164544692", ["text"] = "Take # Chaos damage per second per Endurance Charge", ["type"] = "explicit", }, - [2939] = { + { ["id"] = "explicit.stat_2518598473", ["text"] = "Take # Fire Damage when you Ignite an Enemy", ["type"] = "explicit", }, - [2940] = { + { ["id"] = "explicit.stat_3181887481", ["text"] = "Take #% of Mana Costs you pay for Skills as Physical Damage", ["type"] = "explicit", }, - [2941] = { + { ["id"] = "explicit.stat_4294267596", ["text"] = "Take no Extra Damage from Critical Hits", ["type"] = "explicit", }, - [2942] = { + { ["id"] = "explicit.stat_1755296234", ["text"] = "Targets can be affected by # of your Poisons at the same time", ["type"] = "explicit", }, - [2943] = { + { ["id"] = "explicit.stat_3984146263", ["text"] = "Tempest Bells are destroyed after an additional # Hits", ["type"] = "explicit", }, - [2944] = { + { ["id"] = "explicit.stat_1058934731", ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "explicit", }, - [2945] = { + { ["id"] = "explicit.stat_3783473032", ["text"] = "The Bodach haunts your Presence", ["type"] = "explicit", }, - [2946] = { + { ["id"] = "explicit.stat_1010703902", ["text"] = "The Effect of Blind on you is reversed", ["type"] = "explicit", }, - [2947] = { + { ["id"] = "explicit.stat_2955966707", ["text"] = "The Effect of Chill on you is reversed", ["type"] = "explicit", }, - [2948] = { + { ["id"] = "explicit.stat_2980117882", ["text"] = "This Flask cannot be Used but applies its Effect constantly", ["type"] = "explicit", }, - [2949] = { + { ["id"] = "explicit.stat_3384885789", ["text"] = "This Weapon's Critical Hit Chance is #%", ["type"] = "explicit", }, - [2950] = { + { ["id"] = "explicit.stat_2733960806", ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", ["type"] = "explicit", }, - [2951] = { + { ["id"] = "explicit.stat_1856590738", ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", ["type"] = "explicit", }, - [2952] = { + { ["id"] = "explicit.stat_1087787187", ["text"] = "This item gains bonuses from Socketed Items as though it was a Body Armour", ["type"] = "explicit", }, - [2953] = { + { ["id"] = "explicit.stat_1458343515", ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", ["type"] = "explicit", }, - [2954] = { + { ["id"] = "explicit.stat_2044810874", ["text"] = "This item gains bonuses from Socketed Items as though it was a Shield", ["type"] = "explicit", }, - [2955] = { + { ["id"] = "explicit.stat_150590298", ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Boots", ["type"] = "explicit", }, - [2956] = { + { ["id"] = "explicit.stat_3915618954", ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", ["type"] = "explicit", }, - [2957] = { + { ["id"] = "explicit.stat_3773763721", ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", ["type"] = "explicit", }, - [2958] = { + { ["id"] = "explicit.stat_231726304", ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", ["type"] = "explicit", }, - [2959] = { + { ["id"] = "explicit.stat_3414243317", ["text"] = "Thorns can Retaliate against all Hits", ["type"] = "explicit", }, - [2960] = { + { ["id"] = "explicit.stat_3371943724", ["text"] = "Trigger Decompose every 1.2 metres travelled", ["type"] = "explicit", }, - [2961] = { + { ["id"] = "explicit.stat_826162720", ["text"] = "Trigger Ember Fusillade Skill on casting a Spell", ["type"] = "explicit", }, - [2962] = { + { ["id"] = "explicit.stat_704919631", ["text"] = "Trigger Lightning Bolt Skill on Critical Hit", ["type"] = "explicit", }, - [2963] = { + { ["id"] = "explicit.stat_811217923", ["text"] = "Trigger Spark Skill on killing a Shocked Enemy", ["type"] = "explicit", }, - [2964] = { + { ["id"] = "explicit.stat_3067892458", ["text"] = "Triggered Spells deal #% increased Spell Damage", ["type"] = "explicit", }, - [2965] = { + { ["id"] = "explicit.stat_4007938693", ["text"] = "Triggers Level # Manifest Dancing Dervishes on Rampage", ["type"] = "explicit", }, - [2966] = { + { ["id"] = "explicit.stat_3831171903|25", ["text"] = "Trusted Kinship", ["type"] = "explicit", }, - [2967] = { + { ["id"] = "explicit.stat_1176947534", ["text"] = "Undead Minions have #% reduced Reservation", ["type"] = "explicit", }, - [2968] = { + { ["id"] = "explicit.stat_3371085671", ["text"] = "Unique Monsters have # additional Rare Modifier", ["type"] = "explicit", }, - [2969] = { + { ["id"] = "explicit.stat_2433436306", ["text"] = "Unstable Breaches in Map have #% increased chance to contain Vruun, Marshal of Xesht", ["type"] = "explicit", }, - [2970] = { + { ["id"] = "explicit.stat_3762913035", ["text"] = "Unstable Breaches in Map spawn an additional Rare Monster when Stabilised", ["type"] = "explicit", }, - [2971] = { + { ["id"] = "explicit.stat_4104094246", ["text"] = "Unstable Breaches in Map take an additional second to collapse after timer is filled", ["type"] = "explicit", }, - [2972] = { + { ["id"] = "explicit.stat_1683578560", ["text"] = "Unwavering Stance", ["type"] = "explicit", }, - [2973] = { + { ["id"] = "explicit.stat_3831171903|3", ["text"] = "Unwavering Stance", ["type"] = "explicit", }, - [2974] = { + { ["id"] = "explicit.stat_3891355829|2", ["text"] = "Upgrades Radius to Large", ["type"] = "explicit", }, - [2975] = { + { ["id"] = "explicit.stat_3891355829|1", ["text"] = "Upgrades Radius to Medium", ["type"] = "explicit", }, - [2976] = { + { ["id"] = "explicit.stat_3891355829|3", ["text"] = "Upgrades Radius to Very Large", ["type"] = "explicit", }, - [2977] = { + { ["id"] = "explicit.stat_3832076641", ["text"] = "Used when you release a skill with Perfect Timing", ["type"] = "explicit", }, - [2978] = { + { ["id"] = "explicit.stat_2777675751", ["text"] = "Using a Mana Flask grants Guard equal to #% of Flask's recovery amount for 4 seconds", ["type"] = "explicit", }, - [2979] = { + { ["id"] = "explicit.stat_2257118425", ["text"] = "Vaal Pact", ["type"] = "explicit", }, - [2980] = { + { ["id"] = "explicit.stat_3831171903|20", ["text"] = "Vaal Pact", ["type"] = "explicit", }, - [2981] = { + { ["id"] = "explicit.stat_1132041585", ["text"] = "Virtuous", ["type"] = "explicit", }, - [2982] = { + { ["id"] = "explicit.stat_1434716233", ["text"] = "Warcries Empower an additional Attack", ["type"] = "explicit", }, - [2983] = { + { ["id"] = "explicit.stat_11014011", ["text"] = "Warcries Explode Corpses dealing #% of their Life as Physical Damage", ["type"] = "explicit", }, - [2984] = { + { ["id"] = "explicit.stat_2567751411", ["text"] = "Warcry Skills have #% increased Area of Effect", ["type"] = "explicit", }, - [2985] = { + { ["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", }, - [2986] = { + { ["id"] = "explicit.stat_447757144", ["text"] = "When you Consume a Charge Trigger Chaotic Surge to gain # Chaos Surge", ["type"] = "explicit", }, - [2987] = { + { ["id"] = "explicit.stat_2913235441", ["text"] = "When you kill a Rare monster, you gain its Modifiers for 60 seconds", ["type"] = "explicit", }, - [2988] = { + { ["id"] = "explicit.stat_331648983", ["text"] = "When you reload, triggers Gemini Surge to alternatelygain # Cold Surge or # Fire Surge", ["type"] = "explicit", }, - [2989] = { + { ["id"] = "explicit.stat_3831171903|11", ["text"] = "Whispers of Doom", ["type"] = "explicit", }, - [2990] = { + { ["id"] = "explicit.stat_3831171903|32", ["text"] = "Wildsurge Incantation", ["type"] = "explicit", }, - [2991] = { + { ["id"] = "explicit.stat_2070837434", ["text"] = "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", ["type"] = "explicit", }, - [2992] = { + { ["id"] = "explicit.stat_2626360934", ["text"] = "Wind Skills which can be boosted by Elemental Ground Surfaces countas being boosted by Chilled Ground", ["type"] = "explicit", }, - [2993] = { + { ["id"] = "explicit.stat_279110104", ["text"] = "Withered does not expire on Enemies Ignited by you", ["type"] = "explicit", }, - [2994] = { + { ["id"] = "explicit.stat_1910297038", ["text"] = "Withered you inflict also increases Fire Damage taken", ["type"] = "explicit", }, - [2995] = { + { ["id"] = "explicit.stat_1354656031", ["text"] = "Withered you inflict has infinite Duration", ["type"] = "explicit", }, - [2996] = { + { ["id"] = "explicit.stat_2889272422", ["text"] = "Wombgifts have #% chance to drop one Level higher in Map", ["type"] = "explicit", }, - [2997] = { + { ["id"] = "explicit.stat_3429986699", ["text"] = "You and Allies in your Presence have #% increased Accuracy Rating", ["type"] = "explicit", }, - [2998] = { + { ["id"] = "explicit.stat_3408222535", ["text"] = "You and Allies in your Presence have #% increased Attack Speed", ["type"] = "explicit", }, - [2999] = { + { ["id"] = "explicit.stat_281990982", ["text"] = "You and Allies in your Presence have #% increased Cast Speed", ["type"] = "explicit", }, - [3000] = { + { ["id"] = "explicit.stat_36954843", ["text"] = "You and Allies in your Presence have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [3001] = { + { ["id"] = "explicit.stat_1404134612", ["text"] = "You and Allies in your Presence have #% to Chaos Resistance", ["type"] = "explicit", }, - [3002] = { + { ["id"] = "explicit.stat_3774577097", ["text"] = "You are Blind", ["type"] = "explicit", }, - [3003] = { + { ["id"] = "explicit.stat_356835700", ["text"] = "You are considered on Low Life while at #% of maximum Life or below instead", ["type"] = "explicit", }, - [3004] = { + { ["id"] = "explicit.stat_664024640", ["text"] = "You can Socket an additional copy of each Lineage Support Gem, in different Skills", ["type"] = "explicit", }, - [3005] = { + { ["id"] = "explicit.stat_30642521", ["text"] = "You can apply # additional Curses", ["type"] = "explicit", }, - [3006] = { + { ["id"] = "explicit.stat_603573028", ["text"] = "You can have any number of Companions of different types", ["type"] = "explicit", }, - [3007] = { + { ["id"] = "explicit.stat_1888024332", ["text"] = "You can have two Companions of different types", ["type"] = "explicit", }, - [3008] = { + { ["id"] = "explicit.stat_3598729471", ["text"] = "You can only Socket Emerald Jewels in this item", ["type"] = "explicit", }, - [3009] = { + { ["id"] = "explicit.stat_4031148736", ["text"] = "You can only Socket Ruby Jewels in this item", ["type"] = "explicit", }, - [3010] = { + { ["id"] = "explicit.stat_21302430", ["text"] = "You can only Socket Sapphire Jewels in this item", ["type"] = "explicit", }, - [3011] = { + { ["id"] = "explicit.stat_3635316831", ["text"] = "You can wield Two-Handed Axes, Maces and Swords in one hand", ["type"] = "explicit", }, - [3012] = { + { ["id"] = "explicit.stat_1536107934", ["text"] = "You cannot Sprint", ["type"] = "explicit", }, - [3013] = { + { ["id"] = "explicit.stat_2306924373", ["text"] = "You cannot be Chilled for # second after being Chilled", ["type"] = "explicit", }, - [3014] = { + { ["id"] = "explicit.stat_2996245527", ["text"] = "You cannot be Chilled or Frozen", ["type"] = "explicit", }, - [3015] = { + { ["id"] = "explicit.stat_3612464552", ["text"] = "You cannot be Frozen for # second after being Frozen", ["type"] = "explicit", }, - [3016] = { + { ["id"] = "explicit.stat_947072590", ["text"] = "You cannot be Ignited for # second after being Ignited", ["type"] = "explicit", }, - [3017] = { + { ["id"] = "explicit.stat_215346464", ["text"] = "You cannot be Shocked for # second after being Shocked", ["type"] = "explicit", }, - [3018] = { + { ["id"] = "explicit.stat_423304126", ["text"] = "You count as on Full Mana while at #% of maximum Mana or above", ["type"] = "explicit", }, - [3019] = { + { ["id"] = "explicit.stat_3154256486", ["text"] = "You count as on Low Life while at #% of maximum Mana or below", ["type"] = "explicit", }, - [3020] = { + { ["id"] = "explicit.stat_1143240184", ["text"] = "You count as on Low Mana while at #% of maximum Life or below", ["type"] = "explicit", }, - [3021] = { + { ["id"] = "explicit.stat_1195849808", ["text"] = "You gain Onslaught for # seconds on Kill", ["type"] = "explicit", }, - [3022] = { + { ["id"] = "explicit.stat_1736538865", ["text"] = "You have Consecrated Ground around you while stationary", ["type"] = "explicit", }, - [3023] = { + { ["id"] = "explicit.stat_3007552094", ["text"] = "You have Unholy Might", ["type"] = "explicit", }, - [3024] = { + { ["id"] = "explicit.stat_2592455368", ["text"] = "You have a Smoke Cloud around you while stationary", ["type"] = "explicit", }, - [3025] = { + { ["id"] = "explicit.stat_3070990531", ["text"] = "You have no Accuracy Penalty at Distance", ["type"] = "explicit", }, - [3026] = { + { ["id"] = "explicit.stat_4058681894", ["text"] = "You have no Critical Damage Bonus", ["type"] = "explicit", }, - [3027] = { + { ["id"] = "explicit.stat_1776968075", ["text"] = "You have no Elemental Resistances", ["type"] = "explicit", }, - [3028] = { + { ["id"] = "explicit.stat_854225133", ["text"] = "You have no Life Regeneration", ["type"] = "explicit", }, - [3029] = { + { ["id"] = "explicit.stat_3148264775", ["text"] = "You have no Spirit", ["type"] = "explicit", }, - [3030] = { + { ["id"] = "explicit.stat_2350411833", ["text"] = "You lose #% of maximum Energy Shield per second", ["type"] = "explicit", }, - [3031] = { + { ["id"] = "explicit.stat_2905515354", ["text"] = "You take #% of damage from Blocked Hits", ["type"] = "explicit", }, - [3032] = { + { ["id"] = "explicit.stat_3694078435", ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", ["type"] = "explicit", }, - [3033] = { + { ["id"] = "explicit.stat_2022332470", ["text"] = "You take Fire Damage instead of Physical Damage from Bleeding", ["type"] = "explicit", }, - [3034] = { + { ["id"] = "explicit.stat_2516303866", ["text"] = "Your Critical Damage Bonus is 250%", ["type"] = "explicit", }, - [3035] = { + { ["id"] = "explicit.stat_4159551976", ["text"] = "Your Critical Hit Chance cannot be Rerolled", ["type"] = "explicit", }, - [3036] = { + { ["id"] = "explicit.stat_886088880", ["text"] = "Your Heavy Stun buildup empties #% faster", ["type"] = "explicit", }, - [3037] = { + { ["id"] = "explicit.stat_2890792988", ["text"] = "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", ["type"] = "explicit", }, - [3038] = { + { ["id"] = "explicit.stat_2397460217", ["text"] = "Your Life Flask also applies to your Minions", ["type"] = "explicit", }, - [3039] = { + { ["id"] = "explicit.stat_798767971", ["text"] = "Your Maximum Resistances are #%", ["type"] = "explicit", }, - [3040] = { + { ["id"] = "explicit.stat_1265767008", ["text"] = "Your Minions are Gigantic if they have Revived Recently", ["type"] = "explicit", }, - [3041] = { + { ["id"] = "explicit.stat_3091132047", ["text"] = "Your base Energy Shield Recharge Delay is # second", ["type"] = "explicit", }, - [3042] = { + { ["id"] = "explicit.stat_758226825", ["text"] = "Your maximum Energy Shield is equal to #% of your Strength", ["type"] = "explicit", }, - [3043] = { + { ["id"] = "explicit.stat_3128773415", ["text"] = "Your speed is Unaffected by Slows while Sprinting", ["type"] = "explicit", }, - [3044] = { + { ["id"] = "explicit.stat_50721145", ["text"] = "Your speed is unaffected by Slows", ["type"] = "explicit", }, - [3045] = { + { ["id"] = "explicit.stat_1315418254", ["text"] = "Zealot's Oath", ["type"] = "explicit", }, - [3046] = { + { ["id"] = "explicit.stat_3831171903|33", ["text"] = "Zealot's Oath", ["type"] = "explicit", @@ -15425,909 +15505,914 @@ return { ["id"] = "explicit", ["label"] = "Explicit", }, - [3] = { + { ["entries"] = { - [1] = { + { ["id"] = "implicit.stat_2153364323", ["text"] = "# Intelligence Requirement", ["type"] = "implicit", }, - [2] = { + { ["id"] = "implicit.stat_3325883026", ["text"] = "# Life Regeneration per second", ["type"] = "implicit", }, - [3] = { + { ["id"] = "implicit.stat_3182714256", ["text"] = "# Prefix Modifier allowed", ["type"] = "implicit", }, - [4] = { + { ["id"] = "implicit.stat_718638445", ["text"] = "# Suffix Modifier allowed", ["type"] = "implicit", }, - [5] = { + { ["id"] = "implicit.stat_2264295449", ["text"] = "# metres to Melee Strike Range", ["type"] = "implicit", }, - [6] = { + { ["id"] = "implicit.stat_803737631", ["text"] = "# to Accuracy Rating", ["type"] = "implicit", }, - [7] = { + { ["id"] = "implicit.stat_809229260", ["text"] = "# to Armour", ["type"] = "implicit", }, - [8] = { + { ["id"] = "implicit.stat_3261801346", ["text"] = "# to Dexterity", ["type"] = "implicit", }, - [9] = { + { ["id"] = "implicit.stat_328541901", ["text"] = "# to Intelligence", ["type"] = "implicit", }, - [10] = { + { ["id"] = "implicit.stat_1078455967", ["text"] = "# to Level of all Cold Skills", ["type"] = "implicit", }, - [11] = { + { ["id"] = "implicit.stat_2251279027", ["text"] = "# to Level of all Corrupted Skill Gems", ["type"] = "implicit", }, - [12] = { + { ["id"] = "implicit.stat_1181501418", ["text"] = "# to Maximum Rage", ["type"] = "implicit", }, - [13] = { + { ["id"] = "implicit.stat_3981240776", ["text"] = "# to Spirit", ["type"] = "implicit", }, - [14] = { + { ["id"] = "implicit.stat_4080418644", ["text"] = "# to Strength", ["type"] = "implicit", }, - [15] = { + { ["id"] = "implicit.stat_1379411836", ["text"] = "# to all Attributes", ["type"] = "implicit", }, - [16] = { + { ["id"] = "implicit.stat_3489782002", ["text"] = "# to maximum Energy Shield", ["type"] = "implicit", }, - [17] = { + { ["id"] = "implicit.stat_3299347043", ["text"] = "# to maximum Life", ["type"] = "implicit", }, - [18] = { + { ["id"] = "implicit.stat_1050105434", ["text"] = "# to maximum Mana", ["type"] = "implicit", }, - [19] = { + { ["id"] = "implicit.stat_3336230913", ["text"] = "# to maximum Runic Ward", ["type"] = "implicit", }, - [20] = { + { ["id"] = "implicit.stat_774059442", ["text"] = "# to maximum Runic Ward", ["type"] = "implicit", }, - [21] = { + { ["id"] = "implicit.stat_2650263616", ["text"] = "#% Life Recovery from Flasks also applies to Runic Ward", ["type"] = "implicit", }, - [22] = { + { ["id"] = "implicit.stat_2463230181", ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "implicit", }, - [23] = { + { ["id"] = "implicit.stat_3112931530", ["text"] = "#% chance for Lightning Skills to Chain an additional time", ["type"] = "implicit", }, - [24] = { + { + ["id"] = "implicit.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["type"] = "implicit", + }, + { ["id"] = "implicit.stat_1028592286", ["text"] = "#% chance to Chain an additional time", ["type"] = "implicit", }, - [25] = { + { ["id"] = "implicit.stat_2763429652", ["text"] = "#% chance to Maim on Hit", ["type"] = "implicit", }, - [26] = { + { ["id"] = "implicit.stat_2321178454", ["text"] = "#% chance to Pierce an Enemy", ["type"] = "implicit", }, - [27] = { + { ["id"] = "implicit.stat_3954735777", ["text"] = "#% chance to Poison on Hit with Attacks", ["type"] = "implicit", }, - [28] = { + { ["id"] = "implicit.stat_1519615863", ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "implicit", }, - [29] = { + { ["id"] = "implicit.stat_1782086450", ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "implicit", }, - [30] = { + { ["id"] = "implicit.stat_624954515", ["text"] = "#% increased Accuracy Rating", ["type"] = "implicit", }, - [31] = { + { ["id"] = "implicit.stat_1840985759", ["text"] = "#% increased Area of Effect for Attacks", ["type"] = "implicit", }, - [32] = { + { ["id"] = "implicit.stat_1207554355", ["text"] = "#% increased Arrow Speed", ["type"] = "implicit", }, - [33] = { + { ["id"] = "implicit.stat_681332047", ["text"] = "#% increased Attack Speed", ["type"] = "implicit", }, - [34] = { + { ["id"] = "implicit.stat_1459321413", ["text"] = "#% increased Bleeding Duration", ["type"] = "implicit", }, - [35] = { + { ["id"] = "implicit.stat_1803308202", ["text"] = "#% increased Bolt Speed", ["type"] = "implicit", }, - [36] = { + { ["id"] = "implicit.stat_2891184298", ["text"] = "#% increased Cast Speed", ["type"] = "implicit", }, - [37] = { + { ["id"] = "implicit.stat_736967255", ["text"] = "#% increased Chaos Damage", ["type"] = "implicit", }, - [38] = { + { ["id"] = "implicit.stat_4004011170", ["text"] = "#% increased Chaos Damage for each Corrupted Item Equipped", ["type"] = "implicit", }, - [39] = { + { ["id"] = "implicit.stat_3585532255", ["text"] = "#% increased Charm Charges gained", ["type"] = "implicit", }, - [40] = { + { ["id"] = "implicit.stat_1389754388", ["text"] = "#% increased Charm Effect Duration", ["type"] = "implicit", }, - [41] = { + { ["id"] = "implicit.stat_2194114101", ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "implicit", }, - [42] = { + { ["id"] = "implicit.stat_3691641145", ["text"] = "#% increased Damage taken", ["type"] = "implicit", }, - [43] = { + { ["id"] = "implicit.stat_2920970371", ["text"] = "#% increased Duration of Curses on you", ["type"] = "implicit", }, - [44] = { + { ["id"] = "implicit.stat_3544800472", ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "implicit", }, - [45] = { + { ["id"] = "implicit.stat_2339757871", ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "implicit", }, - [46] = { + { ["id"] = "implicit.stat_1539368271", ["text"] = "#% increased Expedition Explosive Placement Range", ["type"] = "implicit", }, - [47] = { + { ["id"] = "implicit.stat_1539368271", ["text"] = "#% increased Expedition Explosive Placement Range in Map", ["type"] = "implicit", }, - [48] = { + { ["id"] = "implicit.stat_3289828378", ["text"] = "#% increased Expedition Explosive Radius", ["type"] = "implicit", }, - [49] = { + { ["id"] = "implicit.stat_3289828378", ["text"] = "#% increased Expedition Explosive Radius in Map", ["type"] = "implicit", }, - [50] = { + { ["id"] = "implicit.stat_2968503605", ["text"] = "#% increased Flammability Magnitude", ["type"] = "implicit", }, - [51] = { + { ["id"] = "implicit.stat_1836676211", ["text"] = "#% increased Flask Charges gained", ["type"] = "implicit", }, - [52] = { + { ["id"] = "implicit.stat_473429811", ["text"] = "#% increased Freeze Buildup", ["type"] = "implicit", }, - [53] = { + { ["id"] = "implicit.stat_3791899485", ["text"] = "#% increased Ignite Magnitude", ["type"] = "implicit", }, - [54] = { + { ["id"] = "implicit.stat_821241191", ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "implicit", }, - [55] = { + { ["id"] = "implicit.stat_2231156303", ["text"] = "#% increased Lightning Damage", ["type"] = "implicit", }, - [56] = { + { ["id"] = "implicit.stat_3166958180", ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "implicit", }, - [57] = { + { ["id"] = "implicit.stat_2527686725", ["text"] = "#% increased Magnitude of Shock you inflict", ["type"] = "implicit", }, - [58] = { + { ["id"] = "implicit.stat_2222186378", ["text"] = "#% increased Mana Recovery from Flasks", ["type"] = "implicit", }, - [59] = { + { ["id"] = "implicit.stat_789117908", ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "implicit", }, - [60] = { + { ["id"] = "implicit.stat_4169430079", ["text"] = "#% increased Maximum Life for each Corrupted Item Equipped", ["type"] = "implicit", }, - [61] = { + { ["id"] = "implicit.stat_548198834", ["text"] = "#% increased Melee Strike Range with this weapon", ["type"] = "implicit", }, - [62] = { + { ["id"] = "implicit.stat_2250533757", ["text"] = "#% increased Movement Speed", ["type"] = "implicit", }, - [63] = { + { ["id"] = "implicit.stat_2590797182", ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", ["type"] = "implicit", }, - [64] = { + { ["id"] = "implicit.stat_3398402065", ["text"] = "#% increased Projectile Range", ["type"] = "implicit", }, - [65] = { + { ["id"] = "implicit.stat_535217483", ["text"] = "#% increased Projectile Speed with this Weapon", ["type"] = "implicit", }, - [66] = { + { ["id"] = "implicit.stat_3917489142", ["text"] = "#% increased Rarity of Items found", ["type"] = "implicit", }, - [67] = { + { ["id"] = "implicit.stat_2392260628", ["text"] = "#% increased Runic Ward Regeneration Rate", ["type"] = "implicit", }, - [68] = { + { ["id"] = "implicit.stat_924253255", ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "implicit", }, - [69] = { + { ["id"] = "implicit.stat_239367161", ["text"] = "#% increased Stun Buildup", ["type"] = "implicit", }, - [70] = { + { ["id"] = "implicit.stat_680068163", ["text"] = "#% increased Stun Threshold", ["type"] = "implicit", }, - [71] = { + { ["id"] = "implicit.stat_2103650854", ["text"] = "#% increased effect of Arcane Surge on you", ["type"] = "implicit", }, - [72] = { + { ["id"] = "implicit.stat_1879206848", ["text"] = "#% increased effect of Fully Broken Armour", ["type"] = "implicit", }, - [73] = { + { ["id"] = "implicit.stat_983749596", ["text"] = "#% increased maximum Life", ["type"] = "implicit", }, - [74] = { + { ["id"] = "implicit.stat_2748665614", ["text"] = "#% increased maximum Mana", ["type"] = "implicit", }, - [75] = { + { ["id"] = "implicit.stat_4273473110", ["text"] = "#% increased maximum Runic Ward", ["type"] = "implicit", }, - [76] = { + { ["id"] = "implicit.stat_3051490307", ["text"] = "#% increased number of Explosives", ["type"] = "implicit", }, - [77] = { + { ["id"] = "implicit.stat_4219583418", ["text"] = "#% increased quantity of Artifacts dropped by Monsters", ["type"] = "implicit", }, - [78] = { + { ["id"] = "implicit.stat_4219583418", ["text"] = "#% increased quantity of Expedition Artifacts dropped by Monsters in Map", ["type"] = "implicit", }, - [79] = { + { ["id"] = "implicit.stat_3362812763", ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "implicit", }, - [80] = { + { ["id"] = "implicit.stat_458438597", ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "implicit", }, - [81] = { + { ["id"] = "implicit.stat_1444556985", ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "implicit", }, - [82] = { + { ["id"] = "implicit.stat_1311130924", ["text"] = "#% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", ["type"] = "implicit", }, - [83] = { + { ["id"] = "implicit.stat_462041840", ["text"] = "#% of Flask Recovery applied Instantly", ["type"] = "implicit", }, - [84] = { + { ["id"] = "implicit.stat_3627052716", ["text"] = "#% of Lightning Damage Converted to Cold Damage", ["type"] = "implicit", }, - [85] = { + { ["id"] = "implicit.stat_3544050945", ["text"] = "#% of Spell Mana Cost Converted to Life Cost", ["type"] = "implicit", }, - [86] = { + { ["id"] = "implicit.stat_1570770415", ["text"] = "#% reduced Charm Charges used", ["type"] = "implicit", }, - [87] = { + { ["id"] = "implicit.stat_1745952865", ["text"] = "#% reduced Elemental Ailment Duration on you", ["type"] = "implicit", }, - [88] = { + { ["id"] = "implicit.stat_1443060084", ["text"] = "#% reduced Enemy Stun Threshold", ["type"] = "implicit", }, - [89] = { + { ["id"] = "implicit.stat_644456512", ["text"] = "#% reduced Flask Charges used", ["type"] = "implicit", }, - [90] = { + { ["id"] = "implicit.stat_1702195217", ["text"] = "#% to Block chance", ["type"] = "implicit", }, - [91] = { + { ["id"] = "implicit.stat_2923486259", ["text"] = "#% to Chaos Resistance", ["type"] = "implicit", }, - [92] = { + { ["id"] = "implicit.stat_4220027924", ["text"] = "#% to Cold Resistance", ["type"] = "implicit", }, - [93] = { + { ["id"] = "implicit.stat_4277795662", ["text"] = "#% to Cold and Lightning Resistances", ["type"] = "implicit", }, - [94] = { + { ["id"] = "implicit.stat_2694482655", ["text"] = "#% to Critical Damage Bonus", ["type"] = "implicit", }, - [95] = { + { ["id"] = "implicit.stat_3372524247", ["text"] = "#% to Fire Resistance", ["type"] = "implicit", }, - [96] = { + { ["id"] = "implicit.stat_2915988346", ["text"] = "#% to Fire and Cold Resistances", ["type"] = "implicit", }, - [97] = { + { ["id"] = "implicit.stat_3441501978", ["text"] = "#% to Fire and Lightning Resistances", ["type"] = "implicit", }, - [98] = { + { ["id"] = "implicit.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "implicit", }, - [99] = { + { ["id"] = "implicit.stat_3676141501", ["text"] = "#% to Maximum Cold Resistance", ["type"] = "implicit", }, - [100] = { + { ["id"] = "implicit.stat_2039822488", ["text"] = "#% to Maximum Quality", ["type"] = "implicit", }, - [101] = { + { ["id"] = "implicit.stat_2901986750", ["text"] = "#% to all Elemental Resistances", ["type"] = "implicit", }, - [102] = { + { ["id"] = "implicit.stat_1978899297", ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "implicit", }, - [103] = { + { ["id"] = "implicit.stat_3100523498", ["text"] = "#% to all Resistances for each Corrupted Item Equipped", ["type"] = "implicit", }, - [104] = { + { ["id"] = "implicit.stat_569299859", ["text"] = "#% to all maximum Resistances", ["type"] = "implicit", }, - [105] = { + { ["id"] = "implicit.stat_1573130764", ["text"] = "Adds # to # Fire damage to Attacks", ["type"] = "implicit", }, - [106] = { + { ["id"] = "implicit.stat_1754445556", ["text"] = "Adds # to # Lightning damage to Attacks", ["type"] = "implicit", }, - [107] = { + { ["id"] = "implicit.stat_3032590688", ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "implicit", }, - [108] = { + { ["id"] = "implicit.stat_2369421690", ["text"] = "Adds Abysses to a Map # use remaining", ["type"] = "implicit", }, - [109] = { + { ["id"] = "implicit.stat_4041853756", ["text"] = "Adds Irradiated to a Map # use remaining", ["type"] = "implicit", }, - [110] = { + { ["id"] = "implicit.stat_3166002380", ["text"] = "Adds Ritual Altars to a Map # use remaining", ["type"] = "implicit", }, - [111] = { + { ["id"] = "implicit.stat_3035440454", ["text"] = "Adds Vaal Beacons to a Map # use remaining", ["type"] = "implicit", }, - [112] = { + { ["id"] = "implicit.stat_1714888636", ["text"] = "Adds a Kalguuran Expedition to a Map # use remaining", ["type"] = "implicit", }, - [113] = { + { ["id"] = "implicit.stat_3879011313", ["text"] = "Adds a Mirror of Delirium to a Map # use remaining", ["type"] = "implicit", }, - [114] = { + { ["id"] = "implicit.stat_2219129443", ["text"] = "Adds an Otherworldy Breach to a Map # use remaining", ["type"] = "implicit", }, - [115] = { + { ["id"] = "implicit.stat_4126210832", ["text"] = "Always Hits", ["type"] = "implicit", }, - [116] = { + { ["id"] = "implicit.stat_4160330571", ["text"] = "Area contains # additional Chest Marker", ["type"] = "implicit", }, - [117] = { + { ["id"] = "implicit.stat_1915989164", ["text"] = "Area contains #% increased number of Monster Markers", ["type"] = "implicit", }, - [118] = { + { ["id"] = "implicit.stat_2991413918", ["text"] = "Area contains #% increased number of Remnants", ["type"] = "implicit", }, - [119] = { + { ["id"] = "implicit.stat_1640965354", ["text"] = "Area contains #% increased number of Runic Monster Markers", ["type"] = "implicit", }, - [120] = { + { ["id"] = "implicit.stat_2055966527", ["text"] = "Attacks have #% chance to cause Bleeding", ["type"] = "implicit", }, - [121] = { + { ["id"] = "implicit.stat_1451444093", ["text"] = "Bifurcates Critical Hits", ["type"] = "implicit", }, - [122] = { + { ["id"] = "implicit.stat_3828375170", ["text"] = "Bleeding you inflict deals Damage #% faster", ["type"] = "implicit", }, - [123] = { + { ["id"] = "implicit.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "implicit", }, - [124] = { + { ["id"] = "implicit.stat_4270348114", ["text"] = "Breaks # Armour on Critical Hit", ["type"] = "implicit", }, - [125] = { + { ["id"] = "implicit.stat_129891052", ["text"] = "Can roll Ring Modifiers", ["type"] = "implicit", }, - [126] = { + { ["id"] = "implicit.stat_3663551379", ["text"] = "Cannot load or fire Ammunition", ["type"] = "implicit", }, - [127] = { + { ["id"] = "implicit.stat_1961849903", ["text"] = "Cannot use Projectile Attacks", ["type"] = "implicit", }, - [128] = { + { ["id"] = "implicit.stat_254952842", ["text"] = "Catalysts can be applied to this item", ["type"] = "implicit", }, - [129] = { + { ["id"] = "implicit.stat_791928121", ["text"] = "Causes #% increased Stun Buildup", ["type"] = "implicit", }, - [130] = { + { ["id"] = "implicit.stat_1559935218", ["text"] = "Causes Daze buildup equal to #% of Damage dealt", ["type"] = "implicit", }, - [131] = { + { ["id"] = "implicit.stat_1541903247", ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", ["type"] = "implicit", }, - [132] = { + { ["id"] = "implicit.stat_1503146834", ["text"] = "Crushes Enemies on Hit", ["type"] = "implicit", }, - [133] = { + { ["id"] = "implicit.stat_1574531783", ["text"] = "Culling Strike (Local)", ["type"] = "implicit", }, - [134] = { + { ["id"] = "implicit.stat_2933846633", ["text"] = "Dazes on Hit", ["type"] = "implicit", }, - [135] = { + { ["id"] = "implicit.stat_3376302538", ["text"] = "Empowers the Map Boss of a Map # use remaining", ["type"] = "implicit", }, - [136] = { + { ["id"] = "implicit.stat_3326854490", ["text"] = "Every second, gain a Verisium Infusion", ["type"] = "implicit", }, - [137] = { + { ["id"] = "implicit.stat_3239978999", ["text"] = "Excavated Chests have a #% chance to contain twice as many Items", ["type"] = "implicit", }, - [138] = { + { ["id"] = "implicit.stat_731781020", ["text"] = "Flasks gain # charges per Second", ["type"] = "implicit", }, - [139] = { + { ["id"] = "implicit.stat_2797971005", ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "implicit", }, - [140] = { + { ["id"] = "implicit.stat_3695891184", ["text"] = "Gain # Life per enemy killed", ["type"] = "implicit", }, - [141] = { + { ["id"] = "implicit.stat_1368271171", ["text"] = "Gain # Mana per enemy killed", ["type"] = "implicit", }, - [142] = { + { ["id"] = "implicit.stat_1725749947", ["text"] = "Grants # Rage on Hit", ["type"] = "implicit", }, - [143] = { + { ["id"] = "implicit.stat_958696139", ["text"] = "Grants 1 additional Skill Slot", ["type"] = "implicit", }, - [144] = { + { ["id"] = "implicit.stat_1980802737", ["text"] = "Grenade Skills Fire an additional Projectile", ["type"] = "implicit", }, - [145] = { + { ["id"] = "implicit.stat_1416292992", ["text"] = "Has # Charm Slot", ["type"] = "implicit", }, - [146] = { + { ["id"] = "implicit.stat_4077843608", ["text"] = "Has 1 Socket", ["type"] = "implicit", }, - [147] = { + { ["id"] = "implicit.stat_1050883682", ["text"] = "Has no Accuracy Penalty from Range", ["type"] = "implicit", }, - [148] = { + { ["id"] = "implicit.stat_3855016469", ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "implicit", }, - [149] = { + { ["id"] = "implicit.stat_2443492284", ["text"] = "Ignites you inflict deal Damage #% faster", ["type"] = "implicit", }, - [150] = { + { ["id"] = "implicit.stat_2646093132", ["text"] = "Inflict Abyssal Wasting on Hit", ["type"] = "implicit", }, - [151] = { + { ["id"] = "implicit.stat_669069897", ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "implicit", }, - [152] = { + { ["id"] = "implicit.stat_1967051901", ["text"] = "Loads an additional bolt", ["type"] = "implicit", }, - [153] = { + { ["id"] = "implicit.stat_1640965354", ["text"] = "Map contains #% increased number of Runic Monster Markers", ["type"] = "implicit", }, - [154] = { + { ["id"] = "implicit.stat_275498888", ["text"] = "Maximum Quality is #%", ["type"] = "implicit", }, - [155] = { + { ["id"] = "implicit.stat_1589917703", ["text"] = "Minions deal #% increased Damage", ["type"] = "implicit", }, - [156] = { + { ["id"] = "implicit.stat_3552135623", ["text"] = "Prevent #% of Damage from Deflected Hits", ["type"] = "implicit", }, - [157] = { + { ["id"] = "implicit.stat_3003542304", ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "implicit", }, - [158] = { + { ["id"] = "implicit.stat_1568848828", ["text"] = "Recover # Runic Ward when you Block", ["type"] = "implicit", }, - [159] = { + { ["id"] = "implicit.stat_836936635", ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "implicit", }, - [160] = { + { ["id"] = "implicit.stat_1871805225", ["text"] = "Remnants have #% chance to have an additional Suffix Modifier", ["type"] = "implicit", }, - [161] = { + { ["id"] = "implicit.stat_3408607858", ["text"] = "Runic Ward recovery can can Overflow maximum Runic Ward", ["type"] = "implicit", }, - [162] = { + { ["id"] = "implicit.stat_2728425538", ["text"] = "Skills Gain #% of damage as Extra Lightning damage per 50 Runic Ward Cost", ["type"] = "implicit", }, - [163] = { + { ["id"] = "implicit.stat_2544540062", ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", ["type"] = "implicit", }, - [164] = { + { ["id"] = "implicit.stat_3675300253", ["text"] = "Strikes deal Splash Damage", ["type"] = "implicit", }, - [165] = { + { ["id"] = "implicit.stat_2733960806", ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", ["type"] = "implicit", }, - [166] = { + { ["id"] = "implicit.stat_1856590738", ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", ["type"] = "implicit", }, - [167] = { + { ["id"] = "implicit.stat_1458343515", ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", ["type"] = "implicit", }, - [168] = { + { ["id"] = "implicit.stat_1137147997", ["text"] = "Unblockable", ["type"] = "implicit", }, - [169] = { + { ["id"] = "implicit.stat_2778646494", ["text"] = "Used when you are affected by a Slow", ["type"] = "implicit", }, - [170] = { + { ["id"] = "implicit.stat_1691862754", ["text"] = "Used when you become Frozen", ["type"] = "implicit", }, - [171] = { + { ["id"] = "implicit.stat_585126960", ["text"] = "Used when you become Ignited", ["type"] = "implicit", }, - [172] = { + { ["id"] = "implicit.stat_1412682799", ["text"] = "Used when you become Poisoned", ["type"] = "implicit", }, - [173] = { + { ["id"] = "implicit.stat_3699444296", ["text"] = "Used when you become Shocked", ["type"] = "implicit", }, - [174] = { + { ["id"] = "implicit.stat_1810482573", ["text"] = "Used when you become Stunned", ["type"] = "implicit", }, - [175] = { + { ["id"] = "implicit.stat_4010341289", ["text"] = "Used when you kill a Rare or Unique enemy", ["type"] = "implicit", }, - [176] = { + { ["id"] = "implicit.stat_3676540188", ["text"] = "Used when you start Bleeding", ["type"] = "implicit", }, - [177] = { + { ["id"] = "implicit.stat_3310778564", ["text"] = "Used when you take Chaos damage from a Hit", ["type"] = "implicit", }, - [178] = { + { ["id"] = "implicit.stat_2994271459", ["text"] = "Used when you take Cold damage from a Hit", ["type"] = "implicit", }, - [179] = { + { ["id"] = "implicit.stat_3854901951", ["text"] = "Used when you take Fire damage from a Hit", ["type"] = "implicit", }, - [180] = { + { ["id"] = "implicit.stat_2016937536", ["text"] = "Used when you take Lightning damage from a Hit", ["type"] = "implicit", }, - [181] = { + { ["id"] = "implicit.stat_1434716233", ["text"] = "Warcries Empower an additional Attack", ["type"] = "implicit", @@ -16336,5704 +16421,5774 @@ return { ["id"] = "implicit", ["label"] = "Implicit", }, - [4] = { + { ["entries"] = { - [1] = { + { ["id"] = "fractured.stat_3325883026", ["text"] = "# Life Regeneration per second", ["type"] = "fractured", }, - [2] = { + { ["id"] = "fractured.stat_3182714256", ["text"] = "# Prefix Modifier allowed", ["type"] = "fractured", }, - [3] = { + { ["id"] = "fractured.stat_718638445", ["text"] = "# Suffix Modifier allowed", ["type"] = "fractured", }, - [4] = { + { ["id"] = "fractured.stat_258119672", ["text"] = "# metre to Dodge Roll distance", ["type"] = "fractured", }, - [5] = { + { ["id"] = "fractured.stat_2881298780", ["text"] = "# to # Physical Thorns damage", ["type"] = "fractured", }, - [6] = { + { ["id"] = "fractured.stat_803737631", ["text"] = "# to Accuracy Rating", ["type"] = "fractured", }, - [7] = { + { ["id"] = "fractured.stat_691932474", ["text"] = "# to Accuracy Rating (Local)", ["type"] = "fractured", }, - [8] = { + { ["id"] = "fractured.stat_809229260", ["text"] = "# to Armour", ["type"] = "fractured", }, - [9] = { + { ["id"] = "fractured.stat_3484657501", ["text"] = "# to Armour (Local)", ["type"] = "fractured", }, - [10] = { + { ["id"] = "fractured.stat_3261801346", ["text"] = "# to Dexterity", ["type"] = "fractured", }, - [11] = { + { ["id"] = "fractured.stat_2144192055", ["text"] = "# to Evasion Rating", ["type"] = "fractured", }, - [12] = { + { ["id"] = "fractured.stat_53045048", ["text"] = "# to Evasion Rating (Local)", ["type"] = "fractured", }, - [13] = { + { ["id"] = "fractured.stat_328541901", ["text"] = "# to Intelligence", ["type"] = "fractured", }, - [14] = { + { ["id"] = "fractured.stat_3035140377", ["text"] = "# to Level of all Attack Skills", ["type"] = "fractured", }, - [15] = { + { ["id"] = "fractured.stat_4226189338", ["text"] = "# to Level of all Chaos Spell Skills", ["type"] = "fractured", }, - [16] = { + { ["id"] = "fractured.stat_2254480358", ["text"] = "# to Level of all Cold Spell Skills", ["type"] = "fractured", }, - [17] = { + { ["id"] = "fractured.stat_591105508", ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "fractured", }, - [18] = { + { ["id"] = "fractured.stat_1545858329", ["text"] = "# to Level of all Lightning Spell Skills", ["type"] = "fractured", }, - [19] = { + { ["id"] = "fractured.stat_1992191903", ["text"] = "# to Level of all Mark Skills", ["type"] = "fractured", }, - [20] = { + { ["id"] = "fractured.stat_9187492", ["text"] = "# to Level of all Melee Skills", ["type"] = "fractured", }, - [21] = { + { ["id"] = "fractured.stat_2162097452", ["text"] = "# to Level of all Minion Skills", ["type"] = "fractured", }, - [22] = { + { ["id"] = "fractured.stat_1600707273", ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "fractured", }, - [23] = { + { ["id"] = "fractured.stat_1202301673", ["text"] = "# to Level of all Projectile Skills", ["type"] = "fractured", }, - [24] = { + { ["id"] = "fractured.stat_124131830", ["text"] = "# to Level of all Spell Skills", ["type"] = "fractured", }, - [25] = { + { ["id"] = "fractured.stat_1181501418", ["text"] = "# to Maximum Rage", ["type"] = "fractured", }, - [26] = { + { ["id"] = "fractured.stat_2704225257", ["text"] = "# to Spirit", ["type"] = "fractured", }, - [27] = { + { ["id"] = "fractured.stat_3981240776", ["text"] = "# to Spirit", ["type"] = "fractured", }, - [28] = { + { ["id"] = "fractured.stat_4080418644", ["text"] = "# to Strength", ["type"] = "fractured", }, - [29] = { + { ["id"] = "fractured.stat_915769802", ["text"] = "# to Stun Threshold", ["type"] = "fractured", }, - [30] = { - ["id"] = "fractured.stat_1379411836", + { + ["id"] = "fractured.stat_2897413282", ["text"] = "# to all Attributes", ["type"] = "fractured", }, - [31] = { - ["id"] = "fractured.stat_2897413282", + { + ["id"] = "fractured.stat_1379411836", ["text"] = "# to all Attributes", ["type"] = "fractured", }, - [32] = { + { ["id"] = "fractured.stat_3489782002", ["text"] = "# to maximum Energy Shield", ["type"] = "fractured", }, - [33] = { + { ["id"] = "fractured.stat_4052037485", ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "fractured", }, - [34] = { + { ["id"] = "fractured.stat_3299347043", ["text"] = "# to maximum Life", ["type"] = "fractured", }, - [35] = { + { ["id"] = "fractured.stat_1050105434", ["text"] = "# to maximum Mana", ["type"] = "fractured", }, - [36] = { + { ["id"] = "fractured.stat_2840930496", ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", ["type"] = "fractured", }, - [37] = { + { ["id"] = "fractured.stat_2463230181", ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "fractured", }, - [38] = { + { ["id"] = "fractured.stat_1347539079", ["text"] = "#% Surpassing chance to fire an additional Projectile", ["type"] = "fractured", }, - [39] = { + { ["id"] = "fractured.stat_3771516363", ["text"] = "#% additional Physical Damage Reduction", ["type"] = "fractured", }, - [40] = { + { ["id"] = "fractured.stat_3422093970", ["text"] = "#% chance for Remnants you pick up to count as picking up an additional Remnant", ["type"] = "fractured", }, - [41] = { + { ["id"] = "fractured.stat_318953428", ["text"] = "#% chance to Blind Enemies on Hit with Attacks", ["type"] = "fractured", }, - [42] = { + { ["id"] = "fractured.stat_2321178454", ["text"] = "#% chance to Pierce an Enemy", ["type"] = "fractured", }, - [43] = { + { ["id"] = "fractured.stat_795138349", ["text"] = "#% chance to Poison on Hit", ["type"] = "fractured", }, - [44] = { + { ["id"] = "fractured.stat_3518449420", ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", ["type"] = "fractured", }, - [45] = { + { ["id"] = "fractured.stat_1881230714", ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", ["type"] = "fractured", }, - [46] = { + { ["id"] = "fractured.stat_3749502527", ["text"] = "#% chance to gain Volatility on Kill", ["type"] = "fractured", }, - [47] = { + { ["id"] = "fractured.stat_2174054121", ["text"] = "#% chance to inflict Bleeding on Hit", ["type"] = "fractured", }, - [48] = { + { ["id"] = "fractured.stat_1104825894", ["text"] = "#% faster Curse Activation", ["type"] = "fractured", }, - [49] = { + { ["id"] = "fractured.stat_1782086450", ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "fractured", }, - [50] = { + { ["id"] = "fractured.stat_624954515", ["text"] = "#% increased Accuracy Rating", ["type"] = "fractured", }, - [51] = { + { ["id"] = "fractured.stat_169946467", ["text"] = "#% increased Accuracy Rating with Bows", ["type"] = "fractured", }, - [52] = { + { + ["id"] = "fractured.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", + ["type"] = "fractured", + }, + { ["id"] = "fractured.stat_280731498", ["text"] = "#% increased Area of Effect", ["type"] = "fractured", }, - [53] = { + { ["id"] = "fractured.stat_153777645", ["text"] = "#% increased Area of Effect of Curses", ["type"] = "fractured", }, - [54] = { + { ["id"] = "fractured.stat_2866361420", ["text"] = "#% increased Armour", ["type"] = "fractured", }, - [55] = { + { ["id"] = "fractured.stat_1062208444", ["text"] = "#% increased Armour (Local)", ["type"] = "fractured", }, - [56] = { + { ["id"] = "fractured.stat_2637470878", ["text"] = "#% increased Armour Break Duration", ["type"] = "fractured", }, - [57] = { + { ["id"] = "fractured.stat_3321629045", ["text"] = "#% increased Armour and Energy Shield", ["type"] = "fractured", }, - [58] = { + { ["id"] = "fractured.stat_2451402625", ["text"] = "#% increased Armour and Evasion", ["type"] = "fractured", }, - [59] = { + { ["id"] = "fractured.stat_3523867985", ["text"] = "#% increased Armour, Evasion and Energy Shield", ["type"] = "fractured", }, - [60] = { + { ["id"] = "fractured.stat_2523933828", ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "fractured", }, - [61] = { + { ["id"] = "fractured.stat_2843214518", ["text"] = "#% increased Attack Damage", ["type"] = "fractured", }, - [62] = { + { ["id"] = "fractured.stat_681332047", ["text"] = "#% increased Attack Speed", ["type"] = "fractured", }, - [63] = { + { ["id"] = "fractured.stat_210067635", ["text"] = "#% increased Attack Speed (Local)", ["type"] = "fractured", }, - [64] = { + { ["id"] = "fractured.stat_325171970", ["text"] = "#% increased Attack Speed while missing Runic Ward", ["type"] = "fractured", }, - [65] = { + { ["id"] = "fractured.stat_3759735052", ["text"] = "#% increased Attack Speed with Bows", ["type"] = "fractured", }, - [66] = { + { ["id"] = "fractured.stat_1135928777", ["text"] = "#% increased Attack Speed with Crossbows", ["type"] = "fractured", }, - [67] = { + { ["id"] = "fractured.stat_3283482523", ["text"] = "#% increased Attack Speed with Quarterstaves", ["type"] = "fractured", }, - [68] = { + { ["id"] = "fractured.stat_1165163804", ["text"] = "#% increased Attack Speed with Spears", ["type"] = "fractured", }, - [69] = { + { ["id"] = "fractured.stat_3639275092", ["text"] = "#% increased Attribute Requirements", ["type"] = "fractured", }, - [70] = { + { ["id"] = "fractured.stat_1459321413", ["text"] = "#% increased Bleeding Duration", ["type"] = "fractured", }, - [71] = { + { ["id"] = "fractured.stat_1585769763", ["text"] = "#% increased Blind Effect", ["type"] = "fractured", }, - [72] = { + { ["id"] = "fractured.stat_4147897060", ["text"] = "#% increased Block chance", ["type"] = "fractured", }, - [73] = { + { ["id"] = "fractured.stat_2481353198", ["text"] = "#% increased Block chance (Local)", ["type"] = "fractured", }, - [74] = { + { ["id"] = "fractured.stat_2891184298", ["text"] = "#% increased Cast Speed", ["type"] = "fractured", }, - [75] = { + { ["id"] = "fractured.stat_145581225", ["text"] = "#% increased Cast Speed during any Flask Effect", ["type"] = "fractured", }, - [76] = { + { ["id"] = "fractured.stat_736967255", ["text"] = "#% increased Chaos Damage", ["type"] = "fractured", }, - [77] = { + { ["id"] = "fractured.stat_3585532255", ["text"] = "#% increased Charm Charges gained", ["type"] = "fractured", }, - [78] = { + { ["id"] = "fractured.stat_1389754388", ["text"] = "#% increased Charm Effect Duration", ["type"] = "fractured", }, - [79] = { + { ["id"] = "fractured.stat_3485067555", ["text"] = "#% increased Chill Duration on Enemies", ["type"] = "fractured", }, - [80] = { + { ["id"] = "fractured.stat_3291658075", ["text"] = "#% increased Cold Damage", ["type"] = "fractured", }, - [81] = { + { ["id"] = "fractured.stat_1004011302", ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "fractured", }, - [82] = { + { ["id"] = "fractured.stat_1544773869", ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", ["type"] = "fractured", }, - [83] = { + { ["id"] = "fractured.stat_3556824919", ["text"] = "#% increased Critical Damage Bonus", ["type"] = "fractured", }, - [84] = { + { ["id"] = "fractured.stat_3714003708", ["text"] = "#% increased Critical Damage Bonus for Attack Damage", ["type"] = "fractured", }, - [85] = { + { ["id"] = "fractured.stat_2456523742", ["text"] = "#% increased Critical Damage Bonus with Spears", ["type"] = "fractured", }, - [86] = { + { ["id"] = "fractured.stat_587431675", ["text"] = "#% increased Critical Hit Chance", ["type"] = "fractured", }, - [87] = { + { ["id"] = "fractured.stat_2194114101", ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "fractured", }, - [88] = { + { ["id"] = "fractured.stat_737908626", ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "fractured", }, - [89] = { + { ["id"] = "fractured.stat_274716455", ["text"] = "#% increased Critical Spell Damage Bonus", ["type"] = "fractured", }, - [90] = { + { ["id"] = "fractured.stat_3192728503", ["text"] = "#% increased Crossbow Reload Speed", ["type"] = "fractured", }, - [91] = { + { ["id"] = "fractured.stat_3824372849", ["text"] = "#% increased Curse Duration", ["type"] = "fractured", }, - [92] = { + { ["id"] = "fractured.stat_2353576063", ["text"] = "#% increased Curse Magnitudes", ["type"] = "fractured", }, - [93] = { + { ["id"] = "fractured.stat_2301718443", ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", ["type"] = "fractured", }, - [94] = { + { ["id"] = "fractured.stat_2118708619", ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", ["type"] = "fractured", }, - [95] = { + { ["id"] = "fractured.stat_2440073079", ["text"] = "#% increased Damage while Shapeshifted", ["type"] = "fractured", }, - [96] = { + { ["id"] = "fractured.stat_627767961", ["text"] = "#% increased Damage while you have an active Charm", ["type"] = "fractured", }, - [97] = { + { ["id"] = "fractured.stat_1241625305", ["text"] = "#% increased Damage with Bow Skills", ["type"] = "fractured", }, - [98] = { + { ["id"] = "fractured.stat_4188894176", ["text"] = "#% increased Damage with Bows", ["type"] = "fractured", }, - [99] = { + { ["id"] = "fractured.stat_427684353", ["text"] = "#% increased Damage with Crossbows", ["type"] = "fractured", }, - [100] = { + { ["id"] = "fractured.stat_1852872083", ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "fractured", }, - [101] = { + { ["id"] = "fractured.stat_1181419800", ["text"] = "#% increased Damage with Maces", ["type"] = "fractured", }, - [102] = { + { ["id"] = "fractured.stat_2518900926", ["text"] = "#% increased Damage with Plant Skills", ["type"] = "fractured", }, - [103] = { + { ["id"] = "fractured.stat_4045894391", ["text"] = "#% increased Damage with Quarterstaves", ["type"] = "fractured", }, - [104] = { + { ["id"] = "fractured.stat_2696027455", ["text"] = "#% increased Damage with Spears", ["type"] = "fractured", }, - [105] = { + { ["id"] = "fractured.stat_1594812856", ["text"] = "#% increased Damage with Warcries", ["type"] = "fractured", }, - [106] = { + { ["id"] = "fractured.stat_4139681126", ["text"] = "#% increased Dexterity", ["type"] = "fractured", }, - [107] = { + { + ["id"] = "fractured.stat_548070846", + ["text"] = "#% increased Duration of Ailments on You", + ["type"] = "fractured", + }, + { ["id"] = "fractured.stat_1692879867", ["text"] = "#% increased Duration of Bleeding on You", ["type"] = "fractured", }, - [108] = { + { ["id"] = "fractured.stat_1829102168", ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "fractured", }, - [109] = { + { ["id"] = "fractured.stat_1062710370", ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "fractured", }, - [110] = { + { ["id"] = "fractured.stat_4234573345", ["text"] = "#% increased Effect of Notable Passive Skills in Radius", ["type"] = "fractured", }, - [111] = { + { ["id"] = "fractured.stat_1443502073", ["text"] = "#% increased Effect of Prefixes", ["type"] = "fractured", }, - [112] = { + { ["id"] = "fractured.stat_1060572482", ["text"] = "#% increased Effect of Small Passive Skills in Radius", ["type"] = "fractured", }, - [113] = { + { ["id"] = "fractured.stat_2475221757", ["text"] = "#% increased Effect of Suffixes", ["type"] = "fractured", }, - [114] = { + { ["id"] = "fractured.stat_712554801", ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "fractured", }, - [115] = { + { ["id"] = "fractured.stat_3544800472", ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "fractured", }, - [116] = { + { ["id"] = "fractured.stat_3141070085", ["text"] = "#% increased Elemental Damage", ["type"] = "fractured", }, - [117] = { + { ["id"] = "fractured.stat_387439868", ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "fractured", }, - [118] = { + { ["id"] = "fractured.stat_4015621042", ["text"] = "#% increased Energy Shield", ["type"] = "fractured", }, - [119] = { + { ["id"] = "fractured.stat_2339757871", ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "fractured", }, - [120] = { + { ["id"] = "fractured.stat_3174700878", ["text"] = "#% increased Energy Shield from Equipped Focus", ["type"] = "fractured", }, - [121] = { + { ["id"] = "fractured.stat_2106365538", ["text"] = "#% increased Evasion Rating", ["type"] = "fractured", }, - [122] = { + { ["id"] = "fractured.stat_124859000", ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "fractured", }, - [123] = { + { ["id"] = "fractured.stat_1999113824", ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "fractured", }, - [124] = { + { ["id"] = "fractured.stat_57434274", ["text"] = "#% increased Experience gain", ["type"] = "fractured", }, - [125] = { + { ["id"] = "fractured.stat_57434274", ["text"] = "#% increased Experience gain in Map", ["type"] = "fractured", }, - [126] = { + { + ["id"] = "fractured.stat_3196512240", + ["text"] = "#% increased Explicit Chaos Modifier magnitudes", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_3206904707", + ["text"] = "#% increased Explicit Cold Modifier magnitudes", + ["type"] = "fractured", + }, + { ["id"] = "fractured.stat_1335369947", ["text"] = "#% increased Explicit Physical Modifier magnitudes", ["type"] = "fractured", }, - [127] = { + { ["id"] = "fractured.stat_1972391381", ["text"] = "#% increased Explicit Resistance Modifier magnitudes", ["type"] = "fractured", }, - [128] = { + { ["id"] = "fractured.stat_363924732", ["text"] = "#% increased Explicit Speed Modifier magnitudes", ["type"] = "fractured", }, - [129] = { + { ["id"] = "fractured.stat_2074866941", ["text"] = "#% increased Exposure Effect", ["type"] = "fractured", }, - [130] = { + { ["id"] = "fractured.stat_3962278098", ["text"] = "#% increased Fire Damage", ["type"] = "fractured", }, - [131] = { + { + ["id"] = "fractured.stat_3858572996", + ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + ["type"] = "fractured", + }, + { ["id"] = "fractured.stat_2968503605", ["text"] = "#% increased Flammability Magnitude", ["type"] = "fractured", }, - [132] = { + { ["id"] = "fractured.stat_1836676211", ["text"] = "#% increased Flask Charges gained", ["type"] = "fractured", }, - [133] = { + { ["id"] = "fractured.stat_3741323227", ["text"] = "#% increased Flask Effect Duration", ["type"] = "fractured", }, - [134] = { + { ["id"] = "fractured.stat_51994685", ["text"] = "#% increased Flask Life Recovery rate", ["type"] = "fractured", }, - [135] = { + { ["id"] = "fractured.stat_1412217137", ["text"] = "#% increased Flask Mana Recovery rate", ["type"] = "fractured", }, - [136] = { + { ["id"] = "fractured.stat_473429811", ["text"] = "#% increased Freeze Buildup", ["type"] = "fractured", }, - [137] = { + { ["id"] = "fractured.stat_1697447343", ["text"] = "#% increased Freeze Buildup with Quarterstaves", ["type"] = "fractured", }, - [138] = { + { ["id"] = "fractured.stat_3780644166", ["text"] = "#% increased Freeze Threshold", ["type"] = "fractured", }, - [139] = { + { ["id"] = "fractured.stat_1177404658", ["text"] = "#% increased Global Armour, Evasion and Energy Shield", ["type"] = "fractured", }, - [140] = { + { ["id"] = "fractured.stat_1310194496", ["text"] = "#% increased Global Physical Damage", ["type"] = "fractured", }, - [141] = { + { ["id"] = "fractured.stat_1869147066", ["text"] = "#% increased Glory generation for Banner Skills", ["type"] = "fractured", }, - [142] = { + { ["id"] = "fractured.stat_1276056105", ["text"] = "#% increased Gold found in Map (Gold Piles)", ["type"] = "fractured", }, - [143] = { + { ["id"] = "fractured.stat_1276056105", ["text"] = "#% increased Gold found in this Area (Gold Piles)", ["type"] = "fractured", }, - [144] = { + { ["id"] = "fractured.stat_1697951953", ["text"] = "#% increased Hazard Damage", ["type"] = "fractured", }, - [145] = { + { ["id"] = "fractured.stat_3791899485", ["text"] = "#% increased Ignite Magnitude", ["type"] = "fractured", }, - [146] = { + { ["id"] = "fractured.stat_656461285", ["text"] = "#% increased Intelligence", ["type"] = "fractured", }, - [147] = { + { ["id"] = "fractured.stat_565784293", ["text"] = "#% increased Knockback Distance", ["type"] = "fractured", }, - [148] = { + { ["id"] = "fractured.stat_4009879772", ["text"] = "#% increased Life Flask Charges gained", ["type"] = "fractured", }, - [149] = { + { ["id"] = "fractured.stat_821241191", ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "fractured", }, - [150] = { + { ["id"] = "fractured.stat_44972811", ["text"] = "#% increased Life Regeneration rate", ["type"] = "fractured", }, - [151] = { + { ["id"] = "fractured.stat_1263695895", ["text"] = "#% increased Light Radius", ["type"] = "fractured", }, - [152] = { + { ["id"] = "fractured.stat_2231156303", ["text"] = "#% increased Lightning Damage", ["type"] = "fractured", }, - [153] = { + { ["id"] = "fractured.stat_1714706956", ["text"] = "#% increased Magic Pack Size", ["type"] = "fractured", }, - [154] = { + { ["id"] = "fractured.stat_1303248024", ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "fractured", }, - [155] = { + { ["id"] = "fractured.stat_3166958180", ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "fractured", }, - [156] = { + { ["id"] = "fractured.stat_440490623", ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "fractured", }, - [157] = { + { ["id"] = "fractured.stat_2487305362", ["text"] = "#% increased Magnitude of Poison you inflict", ["type"] = "fractured", }, - [158] = { + { ["id"] = "fractured.stat_2527686725", ["text"] = "#% increased Magnitude of Shock you inflict", ["type"] = "fractured", }, - [159] = { + { ["id"] = "fractured.stat_4101445926", ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "fractured", }, - [160] = { + { ["id"] = "fractured.stat_2653231923", ["text"] = "#% increased Mana Cost Efficiency of Spells", ["type"] = "fractured", }, - [161] = { + { ["id"] = "fractured.stat_3590792340", ["text"] = "#% increased Mana Flask Charges gained", ["type"] = "fractured", }, - [162] = { + { ["id"] = "fractured.stat_2222186378", ["text"] = "#% increased Mana Recovery from Flasks", ["type"] = "fractured", }, - [163] = { + { ["id"] = "fractured.stat_789117908", ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "fractured", }, - [164] = { + { ["id"] = "fractured.stat_1002362373", ["text"] = "#% increased Melee Damage", ["type"] = "fractured", }, - [165] = { + { ["id"] = "fractured.stat_3028809864", ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", ["type"] = "fractured", }, - [166] = { + { ["id"] = "fractured.stat_1718147982", ["text"] = "#% increased Minion Accuracy Rating", ["type"] = "fractured", }, - [167] = { + { ["id"] = "fractured.stat_1913583994", ["text"] = "#% increased Monster Attack Speed", ["type"] = "fractured", }, - [168] = { + { ["id"] = "fractured.stat_2488361432", ["text"] = "#% increased Monster Cast Speed", ["type"] = "fractured", }, - [169] = { + { ["id"] = "fractured.stat_1890519597", ["text"] = "#% increased Monster Damage", ["type"] = "fractured", }, - [170] = { + { ["id"] = "fractured.stat_2306522833", ["text"] = "#% increased Monster Movement Speed", ["type"] = "fractured", }, - [171] = { + { ["id"] = "fractured.stat_2250533757", ["text"] = "#% increased Movement Speed", ["type"] = "fractured", }, - [172] = { + { ["id"] = "fractured.stat_3107707789", ["text"] = "#% increased Movement Speed while Sprinting", ["type"] = "fractured", }, - [173] = { + { ["id"] = "fractured.stat_3401186585", ["text"] = "#% increased Parried Debuff Duration", ["type"] = "fractured", }, - [174] = { + { ["id"] = "fractured.stat_1569159338", ["text"] = "#% increased Parry Damage", ["type"] = "fractured", }, - [175] = { + { ["id"] = "fractured.stat_1509134228", ["text"] = "#% increased Physical Damage", ["type"] = "fractured", }, - [176] = { + { ["id"] = "fractured.stat_3473929743", ["text"] = "#% increased Pin Buildup", ["type"] = "fractured", }, - [177] = { + { ["id"] = "fractured.stat_2011656677", ["text"] = "#% increased Poison Duration", ["type"] = "fractured", }, - [178] = { + { ["id"] = "fractured.stat_3301100256", ["text"] = "#% increased Poison Duration on you", ["type"] = "fractured", }, - [179] = { + { ["id"] = "fractured.stat_101878827", ["text"] = "#% increased Presence Area of Effect", ["type"] = "fractured", }, - [180] = { + { ["id"] = "fractured.stat_1839076647", ["text"] = "#% increased Projectile Damage", ["type"] = "fractured", }, - [181] = { + { ["id"] = "fractured.stat_3596695232", ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", ["type"] = "fractured", }, - [182] = { + { ["id"] = "fractured.stat_3759663284", ["text"] = "#% increased Projectile Speed", ["type"] = "fractured", }, - [183] = { + { ["id"] = "fractured.stat_3175163625", ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "fractured", }, - [184] = { + { ["id"] = "fractured.stat_3917489142", ["text"] = "#% increased Rarity of Items found", ["type"] = "fractured", }, - [185] = { + { ["id"] = "fractured.stat_1805633363", ["text"] = "#% increased Reservation Efficiency of Minion Skills", ["type"] = "fractured", }, - [186] = { + { + ["id"] = "fractured.stat_830161081", + ["text"] = "#% increased Runic Ward", + ["type"] = "fractured", + }, + { ["id"] = "fractured.stat_3668351662", ["text"] = "#% increased Shock Duration", ["type"] = "fractured", }, - [187] = { + { ["id"] = "fractured.stat_3377888098", ["text"] = "#% increased Skill Effect Duration", ["type"] = "fractured", }, - [188] = { + { ["id"] = "fractured.stat_918325986", ["text"] = "#% increased Skill Speed while Shapeshifted", ["type"] = "fractured", }, - [189] = { + { ["id"] = "fractured.stat_924253255", ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "fractured", }, - [190] = { + { ["id"] = "fractured.stat_2974417149", ["text"] = "#% increased Spell Damage", ["type"] = "fractured", }, - [191] = { + { ["id"] = "fractured.stat_1014398896", ["text"] = "#% increased Spell Damage during any Flask Effect", ["type"] = "fractured", }, - [192] = { + { ["id"] = "fractured.stat_2768835289", ["text"] = "#% increased Spell Physical Damage", ["type"] = "fractured", }, - [193] = { - ["id"] = "fractured.stat_1416406066", + { + ["id"] = "fractured.stat_3984865854", ["text"] = "#% increased Spirit", ["type"] = "fractured", }, - [194] = { - ["id"] = "fractured.stat_3984865854", + { + ["id"] = "fractured.stat_1416406066", ["text"] = "#% increased Spirit", ["type"] = "fractured", }, - [195] = { + { ["id"] = "fractured.stat_734614379", ["text"] = "#% increased Strength", ["type"] = "fractured", }, - [196] = { + { ["id"] = "fractured.stat_239367161", ["text"] = "#% increased Stun Buildup", ["type"] = "fractured", }, - [197] = { + { ["id"] = "fractured.stat_872504239", ["text"] = "#% increased Stun Buildup with Maces", ["type"] = "fractured", }, - [198] = { + { ["id"] = "fractured.stat_748522257", ["text"] = "#% increased Stun Duration", ["type"] = "fractured", }, - [199] = { + { ["id"] = "fractured.stat_680068163", ["text"] = "#% increased Stun Threshold", ["type"] = "fractured", }, - [200] = { + { ["id"] = "fractured.stat_1405298142", ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "fractured", }, - [201] = { + { ["id"] = "fractured.stat_1911237468", ["text"] = "#% increased Stun Threshold while Parrying", ["type"] = "fractured", }, - [202] = { + { ["id"] = "fractured.stat_1315743832", ["text"] = "#% increased Thorns damage", ["type"] = "fractured", }, - [203] = { + { ["id"] = "fractured.stat_3851254963", ["text"] = "#% increased Totem Damage", ["type"] = "fractured", }, - [204] = { + { ["id"] = "fractured.stat_686254215", ["text"] = "#% increased Totem Life", ["type"] = "fractured", }, - [205] = { + { ["id"] = "fractured.stat_3374165039", ["text"] = "#% increased Totem Placement speed", ["type"] = "fractured", }, - [206] = { + { ["id"] = "fractured.stat_4159248054", ["text"] = "#% increased Warcry Cooldown Recovery Rate", ["type"] = "fractured", }, - [207] = { + { ["id"] = "fractured.stat_1316278494", ["text"] = "#% increased Warcry Speed", ["type"] = "fractured", }, - [208] = { + { ["id"] = "fractured.stat_3233599707", ["text"] = "#% increased Weapon Swap Speed", ["type"] = "fractured", }, - [209] = { + { ["id"] = "fractured.stat_3973629633", ["text"] = "#% increased Withered Magnitude", ["type"] = "fractured", }, - [210] = { + { ["id"] = "fractured.stat_2112395885", ["text"] = "#% increased amount of Life Leeched", ["type"] = "fractured", }, - [211] = { + { ["id"] = "fractured.stat_2839066308", ["text"] = "#% increased amount of Mana Leeched", ["type"] = "fractured", }, - [212] = { + { ["id"] = "fractured.stat_1200678966", ["text"] = "#% increased bonuses gained from Equipped Quiver", ["type"] = "fractured", }, - [213] = { + { ["id"] = "fractured.stat_293638271", ["text"] = "#% increased chance to Shock", ["type"] = "fractured", }, - [214] = { + { ["id"] = "fractured.stat_1772247089", ["text"] = "#% increased chance to inflict Ailments", ["type"] = "fractured", }, - [215] = { + { ["id"] = "fractured.stat_2103650854", ["text"] = "#% increased effect of Arcane Surge on you", ["type"] = "fractured", }, - [216] = { + { ["id"] = "fractured.stat_1879206848", ["text"] = "#% increased effect of Fully Broken Armour", ["type"] = "fractured", }, - [217] = { + { ["id"] = "fractured.stat_2081918629", ["text"] = "#% increased effect of Socketed Augment Items", ["type"] = "fractured", }, - [218] = { + { ["id"] = "fractured.stat_2482852589", ["text"] = "#% increased maximum Energy Shield", ["type"] = "fractured", }, - [219] = { + { ["id"] = "fractured.stat_983749596", ["text"] = "#% increased maximum Life", ["type"] = "fractured", }, - [220] = { + { ["id"] = "fractured.stat_2748665614", ["text"] = "#% increased maximum Mana", ["type"] = "fractured", }, - [221] = { + { + ["id"] = "fractured.stat_4273473110", + ["text"] = "#% increased maximum Runic Ward", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_2663359259", + ["text"] = "#% increased total Power counted by Warcries", + ["type"] = "fractured", + }, + { ["id"] = "fractured.stat_3796523155", ["text"] = "#% less effect of Curses on Monsters", ["type"] = "fractured", }, - [222] = { + { ["id"] = "fractured.stat_95249895", ["text"] = "#% more Monster Life", ["type"] = "fractured", }, - [223] = { + { ["id"] = "fractured.stat_3362812763", ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "fractured", }, - [224] = { + { ["id"] = "fractured.stat_3679418014", ["text"] = "#% of Cold Damage taken Recouped as Life", ["type"] = "fractured", }, - [225] = { + { + ["id"] = "fractured.stat_54812069", + ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", + ["type"] = "fractured", + }, + { ["id"] = "fractured.stat_458438597", ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "fractured", }, - [226] = { + { ["id"] = "fractured.stat_1444556985", ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "fractured", }, - [227] = { + { ["id"] = "fractured.stat_472520716", ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "fractured", }, - [228] = { + { ["id"] = "fractured.stat_1742651309", ["text"] = "#% of Fire Damage taken Recouped as Life", ["type"] = "fractured", }, - [229] = { + { ["id"] = "fractured.stat_2970621759", ["text"] = "#% of Lightning Damage taken Recouped as Life", ["type"] = "fractured", }, - [230] = { + { ["id"] = "fractured.stat_4129825612", ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "fractured", }, - [231] = { + { ["id"] = "fractured.stat_2480498143", ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "fractured", }, - [232] = { + { ["id"] = "fractured.stat_1570770415", ["text"] = "#% reduced Charm Charges used", ["type"] = "fractured", }, - [233] = { + { ["id"] = "fractured.stat_1874553720", ["text"] = "#% reduced Chill Duration on you", ["type"] = "fractured", }, - [234] = { + { ["id"] = "fractured.stat_644456512", ["text"] = "#% reduced Flask Charges used", ["type"] = "fractured", }, - [235] = { + { ["id"] = "fractured.stat_2160282525", ["text"] = "#% reduced Freeze Duration on you", ["type"] = "fractured", }, - [236] = { + { ["id"] = "fractured.stat_986397080", ["text"] = "#% reduced Ignite Duration on you", ["type"] = "fractured", }, - [237] = { + { ["id"] = "fractured.stat_99927264", ["text"] = "#% reduced Shock duration on you", ["type"] = "fractured", }, - [238] = { + { ["id"] = "fractured.stat_2923486259", ["text"] = "#% to Chaos Resistance", ["type"] = "fractured", }, - [239] = { + { ["id"] = "fractured.stat_4220027924", ["text"] = "#% to Cold Resistance", ["type"] = "fractured", }, - [240] = { + { ["id"] = "fractured.stat_3393628375", ["text"] = "#% to Cold and Chaos Resistances", ["type"] = "fractured", }, - [241] = { + { ["id"] = "fractured.stat_2694482655", ["text"] = "#% to Critical Damage Bonus", ["type"] = "fractured", }, - [242] = { + { ["id"] = "fractured.stat_518292764", ["text"] = "#% to Critical Hit Chance", ["type"] = "fractured", }, - [243] = { + { ["id"] = "fractured.stat_3372524247", ["text"] = "#% to Fire Resistance", ["type"] = "fractured", }, - [244] = { + { ["id"] = "fractured.stat_3399401168", ["text"] = "#% to Fire Spell Critical Hit Chance", ["type"] = "fractured", }, - [245] = { + { ["id"] = "fractured.stat_378817135", ["text"] = "#% to Fire and Chaos Resistances", ["type"] = "fractured", }, - [246] = { + { ["id"] = "fractured.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "fractured", }, - [247] = { + { ["id"] = "fractured.stat_3465022881", ["text"] = "#% to Lightning and Chaos Resistances", ["type"] = "fractured", }, - [248] = { + { ["id"] = "fractured.stat_1301765461", ["text"] = "#% to Maximum Chaos Resistance", ["type"] = "fractured", }, - [249] = { + { ["id"] = "fractured.stat_3676141501", ["text"] = "#% to Maximum Cold Resistance", ["type"] = "fractured", }, - [250] = { + { ["id"] = "fractured.stat_4095671657", ["text"] = "#% to Maximum Fire Resistance", ["type"] = "fractured", }, - [251] = { + { ["id"] = "fractured.stat_1011760251", ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "fractured", }, - [252] = { + { ["id"] = "fractured.stat_2039822488", ["text"] = "#% to Maximum Quality", ["type"] = "fractured", }, - [253] = { + { ["id"] = "fractured.stat_2901986750", ["text"] = "#% to all Elemental Resistances", ["type"] = "fractured", }, - [254] = { + { ["id"] = "fractured.stat_1978899297", ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "fractured", }, - [255] = { + { + ["id"] = "fractured.stat_1484026495", + ["text"] = "+# maximum stacks of Puppet Master", + ["type"] = "fractured", + }, + { ["id"] = "fractured.stat_1054098949", ["text"] = "+#% Monster Elemental Resistances", ["type"] = "fractured", }, - [256] = { + { ["id"] = "fractured.stat_2223678961", ["text"] = "Adds # to # Chaos damage", ["type"] = "fractured", }, - [257] = { + { ["id"] = "fractured.stat_1037193709", ["text"] = "Adds # to # Cold Damage", ["type"] = "fractured", }, - [258] = { + { ["id"] = "fractured.stat_4067062424", ["text"] = "Adds # to # Cold damage to Attacks", ["type"] = "fractured", }, - [259] = { + { ["id"] = "fractured.stat_709508406", ["text"] = "Adds # to # Fire Damage", ["type"] = "fractured", }, - [260] = { + { ["id"] = "fractured.stat_1573130764", ["text"] = "Adds # to # Fire damage to Attacks", ["type"] = "fractured", }, - [261] = { + { ["id"] = "fractured.stat_3336890334", ["text"] = "Adds # to # Lightning Damage", ["type"] = "fractured", }, - [262] = { + { ["id"] = "fractured.stat_1754445556", ["text"] = "Adds # to # Lightning damage to Attacks", ["type"] = "fractured", }, - [263] = { + { ["id"] = "fractured.stat_1940865751", ["text"] = "Adds # to # Physical Damage", ["type"] = "fractured", }, - [264] = { + { ["id"] = "fractured.stat_3032590688", ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "fractured", }, - [265] = { + { ["id"] = "fractured.stat_4010677958", ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "fractured", }, - [266] = { + { ["id"] = "fractured.stat_2347036682", ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", ["type"] = "fractured", }, - [267] = { + { ["id"] = "fractured.stat_849987426", ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", ["type"] = "fractured", }, - [268] = { + { ["id"] = "fractured.stat_2854751904", ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", ["type"] = "fractured", }, - [269] = { + { ["id"] = "fractured.stat_1574590649", ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "fractured", }, - [270] = { + { ["id"] = "fractured.stat_1798257884", ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "fractured", }, - [271] = { + { ["id"] = "fractured.stat_3169585282", ["text"] = "Allies in your Presence have # to Accuracy Rating", ["type"] = "fractured", }, - [272] = { + { ["id"] = "fractured.stat_1998951374", ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "fractured", }, - [273] = { + { ["id"] = "fractured.stat_289128254", ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "fractured", }, - [274] = { + { ["id"] = "fractured.stat_3057012405", ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "fractured", }, - [275] = { + { ["id"] = "fractured.stat_1250712710", ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "fractured", }, - [276] = { + { ["id"] = "fractured.stat_3850614073", ["text"] = "Allies in your Presence have #% to all Elemental Resistances", ["type"] = "fractured", }, - [277] = { + { ["id"] = "fractured.stat_2954116742|7338", ["text"] = "Allocates Abasement", ["type"] = "fractured", }, - [278] = { + { ["id"] = "fractured.stat_2954116742|43082", ["text"] = "Allocates Acceleration", ["type"] = "fractured", }, - [279] = { + { ["id"] = "fractured.stat_2954116742|12822", ["text"] = "Allocates Adaptable Assault", ["type"] = "fractured", }, - [280] = { + { ["id"] = "fractured.stat_2954116742|35876", ["text"] = "Allocates Admonisher", ["type"] = "fractured", }, - [281] = { + { ["id"] = "fractured.stat_2954116742|17340", ["text"] = "Allocates Adrenaline Rush", ["type"] = "fractured", }, - [282] = { + { ["id"] = "fractured.stat_2954116742|43829", ["text"] = "Allocates Advanced Munitions", ["type"] = "fractured", }, - [283] = { + { ["id"] = "fractured.stat_2954116742|4716", ["text"] = "Allocates Afterimage", ["type"] = "fractured", }, - [284] = { + { ["id"] = "fractured.stat_2954116742|6655", ["text"] = "Allocates Aggravation", ["type"] = "fractured", }, - [285] = { + { ["id"] = "fractured.stat_2954116742|8896", ["text"] = "Allocates Agile Sprinter", ["type"] = "fractured", }, - [286] = { + { ["id"] = "fractured.stat_2954116742|56493", ["text"] = "Allocates Agile Succession", ["type"] = "fractured", }, - [287] = { + { ["id"] = "fractured.stat_2954116742|43088", ["text"] = "Allocates Agonising Calamity", ["type"] = "fractured", }, - [288] = { + { ["id"] = "fractured.stat_2954116742|58016", ["text"] = "Allocates All Natural", ["type"] = "fractured", }, - [289] = { + { ["id"] = "fractured.stat_2954116742|23764", ["text"] = "Allocates Alternating Current", ["type"] = "fractured", }, - [290] = { + { ["id"] = "fractured.stat_2954116742|2575", ["text"] = "Allocates Ancestral Alacrity", ["type"] = "fractured", }, - [291] = { + { ["id"] = "fractured.stat_2954116742|51820", ["text"] = "Allocates Ancestral Conduits", ["type"] = "fractured", }, - [292] = { + { ["id"] = "fractured.stat_2954116742|62609", ["text"] = "Allocates Ancestral Unity", ["type"] = "fractured", }, - [293] = { + { ["id"] = "fractured.stat_2954116742|5728", ["text"] = "Allocates Ancient Aegis", ["type"] = "fractured", }, - [294] = { + { ["id"] = "fractured.stat_2954116742|38398", ["text"] = "Allocates Apocalypse", ["type"] = "fractured", }, - [295] = { + { ["id"] = "fractured.stat_2954116742|46224", ["text"] = "Allocates Arcane Alchemy", ["type"] = "fractured", }, - [296] = { + { ["id"] = "fractured.stat_2954116742|14324", ["text"] = "Allocates Arcane Blossom", ["type"] = "fractured", }, - [297] = { + { ["id"] = "fractured.stat_2954116742|19044", ["text"] = "Allocates Arcane Intensity", ["type"] = "fractured", }, - [298] = { + { ["id"] = "fractured.stat_2954116742|46972", ["text"] = "Allocates Arcane Mixtures", ["type"] = "fractured", }, - [299] = { + { ["id"] = "fractured.stat_2954116742|16940", ["text"] = "Allocates Arcane Nature", ["type"] = "fractured", }, - [300] = { + { ["id"] = "fractured.stat_2954116742|42045", ["text"] = "Allocates Archon of the Blizzard", ["type"] = "fractured", }, - [301] = { + { ["id"] = "fractured.stat_2954116742|27434", ["text"] = "Allocates Archon of the Storm", ["type"] = "fractured", }, - [302] = { + { ["id"] = "fractured.stat_2954116742|12661", ["text"] = "Allocates Asceticism", ["type"] = "fractured", }, - [303] = { + { ["id"] = "fractured.stat_2954116742|27388", ["text"] = "Allocates Aspiring Genius", ["type"] = "fractured", }, - [304] = { + { ["id"] = "fractured.stat_2954116742|35560", ["text"] = "Allocates At your Command", ["type"] = "fractured", }, - [305] = { + { ["id"] = "fractured.stat_2954116742|20397", ["text"] = "Allocates Authority", ["type"] = "fractured", }, - [306] = { + { ["id"] = "fractured.stat_2954116742|50673", ["text"] = "Allocates Avoiding Deflection", ["type"] = "fractured", }, - [307] = { + { ["id"] = "fractured.stat_2954116742|33059", ["text"] = "Allocates Back in Action", ["type"] = "fractured", }, - [308] = { + { ["id"] = "fractured.stat_2954116742|53853", ["text"] = "Allocates Backup Plan", ["type"] = "fractured", }, - [309] = { + { ["id"] = "fractured.stat_2954116742|50562", ["text"] = "Allocates Barbaric Strength", ["type"] = "fractured", }, - [310] = { + { ["id"] = "fractured.stat_2954116742|50062", ["text"] = "Allocates Barrier of Venarius", ["type"] = "fractured", }, - [311] = { + { ["id"] = "fractured.stat_2954116742|64240", ["text"] = "Allocates Battle Fever", ["type"] = "fractured", }, - [312] = { + { ["id"] = "fractured.stat_2954116742|37276", ["text"] = "Allocates Battle Trance", ["type"] = "fractured", }, - [313] = { + { ["id"] = "fractured.stat_2954116742|59720", ["text"] = "Allocates Beastial Skin", ["type"] = "fractured", }, - [314] = { + { ["id"] = "fractured.stat_2954116742|25482", ["text"] = "Allocates Beef", ["type"] = "fractured", }, - [315] = { + { ["id"] = "fractured.stat_2954116742|5642", ["text"] = "Allocates Behemoth", ["type"] = "fractured", }, - [316] = { + { ["id"] = "fractured.stat_2954116742|10873", ["text"] = "Allocates Bestial Rage", ["type"] = "fractured", }, - [317] = { + { ["id"] = "fractured.stat_2954116742|17029", ["text"] = "Allocates Blade Catcher", ["type"] = "fractured", }, - [318] = { + { ["id"] = "fractured.stat_2954116742|2394", ["text"] = "Allocates Blade Flurry", ["type"] = "fractured", }, - [319] = { + { ["id"] = "fractured.stat_2954116742|18308", ["text"] = "Allocates Bleeding Out", ["type"] = "fractured", }, - [320] = { + { ["id"] = "fractured.stat_2954116742|42354", ["text"] = "Allocates Blinding Flash", ["type"] = "fractured", }, - [321] = { + { ["id"] = "fractured.stat_2954116742|20916", ["text"] = "Allocates Blinding Strike", ["type"] = "fractured", }, - [322] = { + { ["id"] = "fractured.stat_2954116742|39083", ["text"] = "Allocates Blood Rush", ["type"] = "fractured", }, - [323] = { + { ["id"] = "fractured.stat_2954116742|58183", ["text"] = "Allocates Blood Tearing", ["type"] = "fractured", }, - [324] = { + { ["id"] = "fractured.stat_2954116742|48524", ["text"] = "Allocates Blood Transfusion", ["type"] = "fractured", }, - [325] = { + { ["id"] = "fractured.stat_2954116742|35792", ["text"] = "Allocates Blood of Rage", ["type"] = "fractured", }, - [326] = { + { ["id"] = "fractured.stat_2954116742|54990", ["text"] = "Allocates Bloodletting", ["type"] = "fractured", }, - [327] = { + { ["id"] = "fractured.stat_2954116742|42177", ["text"] = "Allocates Blurred Motion", ["type"] = "fractured", }, - [328] = { + { ["id"] = "fractured.stat_2954116742|26070", ["text"] = "Allocates Bolstering Yell", ["type"] = "fractured", }, - [329] = { + { ["id"] = "fractured.stat_2954116742|17725", ["text"] = "Allocates Bonded Precision", ["type"] = "fractured", }, - [330] = { + { ["id"] = "fractured.stat_2954116742|52618", ["text"] = "Allocates Boon of the Beast", ["type"] = "fractured", }, - [331] = { + { ["id"] = "fractured.stat_2954116742|15114", ["text"] = "Allocates Boundless Growth", ["type"] = "fractured", }, - [332] = { + { ["id"] = "fractured.stat_2954116742|23244", ["text"] = "Allocates Bounty Hunter", ["type"] = "fractured", }, - [333] = { + { ["id"] = "fractured.stat_2954116742|37806", ["text"] = "Allocates Branching Bolts", ["type"] = "fractured", }, - [334] = { + { ["id"] = "fractured.stat_2954116742|21453", ["text"] = "Allocates Breakage", ["type"] = "fractured", }, - [335] = { + { ["id"] = "fractured.stat_2954116742|39347", ["text"] = "Allocates Breaking Blows", ["type"] = "fractured", }, - [336] = { + { ["id"] = "fractured.stat_2954116742|7777", ["text"] = "Allocates Breaking Point", ["type"] = "fractured", }, - [337] = { + { ["id"] = "fractured.stat_2954116742|24655", ["text"] = "Allocates Breath of Fire", ["type"] = "fractured", }, - [338] = { + { ["id"] = "fractured.stat_2954116742|18086", ["text"] = "Allocates Breath of Ice", ["type"] = "fractured", }, - [339] = { + { ["id"] = "fractured.stat_2954116742|61338", ["text"] = "Allocates Breath of Lightning", ["type"] = "fractured", }, - [340] = { + { ["id"] = "fractured.stat_2954116742|48565", ["text"] = "Allocates Bringer of Order", ["type"] = "fractured", }, - [341] = { + { ["id"] = "fractured.stat_2954116742|53935", ["text"] = "Allocates Briny Carapace", ["type"] = "fractured", }, - [342] = { + { ["id"] = "fractured.stat_2954116742|50392", ["text"] = "Allocates Brute Strength", ["type"] = "fractured", }, - [343] = { + { ["id"] = "fractured.stat_2954116742|15986", ["text"] = "Allocates Building Toxins", ["type"] = "fractured", }, - [344] = { + { ["id"] = "fractured.stat_2954116742|53294", ["text"] = "Allocates Burn Away", ["type"] = "fractured", }, - [345] = { + { ["id"] = "fractured.stat_2954116742|8554", ["text"] = "Allocates Burning Nature", ["type"] = "fractured", }, - [346] = { + { ["id"] = "fractured.stat_2954116742|6544", ["text"] = "Allocates Burning Strikes", ["type"] = "fractured", }, - [347] = { + { ["id"] = "fractured.stat_2954116742|50795", ["text"] = "Allocates Careful Aim", ["type"] = "fractured", }, - [348] = { + { ["id"] = "fractured.stat_2954116742|46197", ["text"] = "Allocates Careful Assassin", ["type"] = "fractured", }, - [349] = { + { ["id"] = "fractured.stat_2954116742|17955", ["text"] = "Allocates Careful Consideration", ["type"] = "fractured", }, - [350] = { + { ["id"] = "fractured.stat_2954116742|44005", ["text"] = "Allocates Casting Cascade", ["type"] = "fractured", }, - [351] = { + { ["id"] = "fractured.stat_2954116742|31433", ["text"] = "Allocates Catalysis", ["type"] = "fractured", }, - [352] = { + { ["id"] = "fractured.stat_2954116742|9472", ["text"] = "Allocates Catapult", ["type"] = "fractured", }, - [353] = { + { ["id"] = "fractured.stat_2954116742|32664", ["text"] = "Allocates Chakra of Breathing", ["type"] = "fractured", }, - [354] = { + { ["id"] = "fractured.stat_2954116742|63400", ["text"] = "Allocates Chakra of Elements", ["type"] = "fractured", }, - [355] = { + { ["id"] = "fractured.stat_2954116742|25362", ["text"] = "Allocates Chakra of Impact", ["type"] = "fractured", }, - [356] = { + { ["id"] = "fractured.stat_2954116742|35031", ["text"] = "Allocates Chakra of Life", ["type"] = "fractured", }, - [357] = { + { ["id"] = "fractured.stat_2954116742|28963", ["text"] = "Allocates Chakra of Rhythm", ["type"] = "fractured", }, - [358] = { + { ["id"] = "fractured.stat_2954116742|42347", ["text"] = "Allocates Chakra of Sight", ["type"] = "fractured", }, - [359] = { + { ["id"] = "fractured.stat_2954116742|29306", ["text"] = "Allocates Chakra of Thought", ["type"] = "fractured", }, - [360] = { + { ["id"] = "fractured.stat_2954116742|5410", ["text"] = "Allocates Channelled Heritage", ["type"] = "fractured", }, - [361] = { + { ["id"] = "fractured.stat_2954116742|23427", ["text"] = "Allocates Chilled to the Bone", ["type"] = "fractured", }, - [362] = { + { ["id"] = "fractured.stat_2954116742|39990", ["text"] = "Allocates Chronomancy", ["type"] = "fractured", }, - [363] = { + { ["id"] = "fractured.stat_2954116742|57805", ["text"] = "Allocates Clear Space", ["type"] = "fractured", }, - [364] = { + { ["id"] = "fractured.stat_2954116742|4627", ["text"] = "Allocates Climate Change", ["type"] = "fractured", }, - [365] = { + { ["id"] = "fractured.stat_2954116742|38479", ["text"] = "Allocates Close Confines", ["type"] = "fractured", }, - [366] = { + { ["id"] = "fractured.stat_2954116742|29514", ["text"] = "Allocates Cluster Bombs", ["type"] = "fractured", }, - [367] = { + { ["id"] = "fractured.stat_2954116742|44330", ["text"] = "Allocates Coated Arms", ["type"] = "fractured", }, - [368] = { + { ["id"] = "fractured.stat_2954116742|35618", ["text"] = "Allocates Cold Coat", ["type"] = "fractured", }, - [369] = { + { ["id"] = "fractured.stat_2954116742|26518", ["text"] = "Allocates Cold Nature", ["type"] = "fractured", }, - [370] = { + { ["id"] = "fractured.stat_2954116742|47363", ["text"] = "Allocates Colossal Weapon", ["type"] = "fractured", }, - [371] = { + { ["id"] = "fractured.stat_2954116742|28044", ["text"] = "Allocates Coming Calamity", ["type"] = "fractured", }, - [372] = { + { + ["id"] = "fractured.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", + ["type"] = "fractured", + }, + { ["id"] = "fractured.stat_2954116742|36931", ["text"] = "Allocates Concussive Attack", ["type"] = "fractured", }, - [373] = { + { ["id"] = "fractured.stat_2954116742|34300", ["text"] = "Allocates Conservative Casting", ["type"] = "fractured", }, - [374] = { + { ["id"] = "fractured.stat_2954116742|15030", ["text"] = "Allocates Consistent Intake", ["type"] = "fractured", }, - [375] = { + { ["id"] = "fractured.stat_2954116742|54640", ["text"] = "Allocates Constricting", ["type"] = "fractured", }, - [376] = { + { ["id"] = "fractured.stat_2954116742|13823", ["text"] = "Allocates Controlling Magic", ["type"] = "fractured", }, - [377] = { + { ["id"] = "fractured.stat_2954116742|36623", ["text"] = "Allocates Convalescence", ["type"] = "fractured", }, - [378] = { + { ["id"] = "fractured.stat_2954116742|56776", ["text"] = "Allocates Cooked", ["type"] = "fractured", }, - [379] = { + { ["id"] = "fractured.stat_2954116742|6133", ["text"] = "Allocates Core of the Guardian", ["type"] = "fractured", }, - [380] = { + { ["id"] = "fractured.stat_2954116742|50687", ["text"] = "Allocates Coursing Energy", ["type"] = "fractured", }, - [381] = { + { ["id"] = "fractured.stat_2954116742|19715", ["text"] = "Allocates Cremation", ["type"] = "fractured", }, - [382] = { + { ["id"] = "fractured.stat_2954116742|43677", ["text"] = "Allocates Crippling Toxins", ["type"] = "fractured", }, - [383] = { + { ["id"] = "fractured.stat_2954116742|57204", ["text"] = "Allocates Critical Exploit", ["type"] = "fractured", }, - [384] = { + { ["id"] = "fractured.stat_2954116742|45488", ["text"] = "Allocates Cross Strike", ["type"] = "fractured", }, - [385] = { + { ["id"] = "fractured.stat_2954116742|42981", ["text"] = "Allocates Cruel Methods", ["type"] = "fractured", }, - [386] = { + { ["id"] = "fractured.stat_2954116742|35739", ["text"] = "Allocates Crushing Judgement", ["type"] = "fractured", }, - [387] = { + { ["id"] = "fractured.stat_2954116742|18505", ["text"] = "Allocates Crushing Verdict", ["type"] = "fractured", }, - [388] = { + { ["id"] = "fractured.stat_2954116742|38895", ["text"] = "Allocates Crystal Elixir", ["type"] = "fractured", }, - [389] = { + { ["id"] = "fractured.stat_2954116742|61026", ["text"] = "Allocates Crystalline Flesh", ["type"] = "fractured", }, - [390] = { + { ["id"] = "fractured.stat_2954116742|32151", ["text"] = "Allocates Crystalline Resistance", ["type"] = "fractured", }, - [391] = { + { ["id"] = "fractured.stat_2954116742|5332", ["text"] = "Allocates Crystallised Immunities", ["type"] = "fractured", }, - [392] = { + { ["id"] = "fractured.stat_2954116742|36341", ["text"] = "Allocates Cull the Hordes", ["type"] = "fractured", }, - [393] = { + { ["id"] = "fractured.stat_2954116742|32507", ["text"] = "Allocates Cut to the Bone", ["type"] = "fractured", }, - [394] = { + { ["id"] = "fractured.stat_2954116742|63074", ["text"] = "Allocates Dark Entries", ["type"] = "fractured", }, - [395] = { + { ["id"] = "fractured.stat_2954116742|30523", ["text"] = "Allocates Dead can Dance", ["type"] = "fractured", }, - [396] = { + { ["id"] = "fractured.stat_2954116742|49618", ["text"] = "Allocates Deadly Flourish", ["type"] = "fractured", }, - [397] = { + { ["id"] = "fractured.stat_2954116742|13724", ["text"] = "Allocates Deadly Force", ["type"] = "fractured", }, - [398] = { + { ["id"] = "fractured.stat_2954116742|29288", ["text"] = "Allocates Deadly Invocations", ["type"] = "fractured", }, - [399] = { + { ["id"] = "fractured.stat_2954116742|38053", ["text"] = "Allocates Deafening Cries", ["type"] = "fractured", }, - [400] = { + { ["id"] = "fractured.stat_2954116742|8904", ["text"] = "Allocates Death from Afar", ["type"] = "fractured", }, - [401] = { + { ["id"] = "fractured.stat_2954116742|17664", ["text"] = "Allocates Decisive Retreat", ["type"] = "fractured", }, - [402] = { + { ["id"] = "fractured.stat_2954116742|40166", ["text"] = "Allocates Deep Trance", ["type"] = "fractured", }, - [403] = { + { ["id"] = "fractured.stat_2954116742|33216", ["text"] = "Allocates Deep Wounds", ["type"] = "fractured", }, - [404] = { + { ["id"] = "fractured.stat_2954116742|45612", ["text"] = "Allocates Defensive Reflexes", ["type"] = "fractured", }, - [405] = { + { ["id"] = "fractured.stat_2954116742|10681", ["text"] = "Allocates Defensive Stance", ["type"] = "fractured", }, - [406] = { + { ["id"] = "fractured.stat_2954116742|32354", ["text"] = "Allocates Defiance", ["type"] = "fractured", }, - [407] = { + { ["id"] = "fractured.stat_2954116742|28267", ["text"] = "Allocates Desensitisation", ["type"] = "fractured", }, - [408] = { + { ["id"] = "fractured.stat_2954116742|56616", ["text"] = "Allocates Desperate Times", ["type"] = "fractured", }, - [409] = { + { ["id"] = "fractured.stat_2954116742|14343", ["text"] = "Allocates Deterioration", ["type"] = "fractured", }, - [410] = { + { ["id"] = "fractured.stat_2954116742|24753", ["text"] = "Allocates Determined Precision", ["type"] = "fractured", }, - [411] = { + { ["id"] = "fractured.stat_2954116742|48006", ["text"] = "Allocates Devastation", ["type"] = "fractured", }, - [412] = { + { ["id"] = "fractured.stat_2954116742|24483", ["text"] = "Allocates Direct Approach", ["type"] = "fractured", }, - [413] = { + { ["id"] = "fractured.stat_2954116742|38459", ["text"] = "Allocates Disorientation", ["type"] = "fractured", }, - [414] = { + { ["id"] = "fractured.stat_2954116742|58939", ["text"] = "Allocates Dispatch Foes", ["type"] = "fractured", }, - [415] = { + { ["id"] = "fractured.stat_2954116742|52245", ["text"] = "Allocates Distant Dreamer", ["type"] = "fractured", }, - [416] = { + { ["id"] = "fractured.stat_2954116742|32721", ["text"] = "Allocates Distracted Target", ["type"] = "fractured", }, - [417] = { + { ["id"] = "fractured.stat_2954116742|44765", ["text"] = "Allocates Distracting Presence", ["type"] = "fractured", }, - [418] = { + { ["id"] = "fractured.stat_2954116742|47514", ["text"] = "Allocates Dizzying Hits", ["type"] = "fractured", }, - [419] = { + { ["id"] = "fractured.stat_2954116742|57190", ["text"] = "Allocates Doomsayer", ["type"] = "fractured", }, - [420] = { + { ["id"] = "fractured.stat_2954116742|11838", ["text"] = "Allocates Dreamcatcher", ["type"] = "fractured", }, - [421] = { + { ["id"] = "fractured.stat_2954116742|40073", ["text"] = "Allocates Drenched", ["type"] = "fractured", }, - [422] = { + { ["id"] = "fractured.stat_2954116742|3688", ["text"] = "Allocates Dynamism", ["type"] = "fractured", }, - [423] = { + { ["id"] = "fractured.stat_2954116742|10315", ["text"] = "Allocates Easy Going", ["type"] = "fractured", }, - [424] = { + { ["id"] = "fractured.stat_2954116742|60692", ["text"] = "Allocates Echoing Flames", ["type"] = "fractured", }, - [425] = { + { ["id"] = "fractured.stat_2954116742|5257", ["text"] = "Allocates Echoing Frost", ["type"] = "fractured", }, - [426] = { + { ["id"] = "fractured.stat_2954116742|7302", ["text"] = "Allocates Echoing Pulse", ["type"] = "fractured", }, - [427] = { + { ["id"] = "fractured.stat_2954116742|5703", ["text"] = "Allocates Echoing Thunder", ["type"] = "fractured", }, - [428] = { + { ["id"] = "fractured.stat_2954116742|33093", ["text"] = "Allocates Effervescent", ["type"] = "fractured", }, - [429] = { + { ["id"] = "fractured.stat_2954116742|46692", ["text"] = "Allocates Efficient Alchemy", ["type"] = "fractured", }, - [430] = { + { ["id"] = "fractured.stat_2954116742|16790", ["text"] = "Allocates Efficient Casting", ["type"] = "fractured", }, - [431] = { + { ["id"] = "fractured.stat_2954116742|30408", ["text"] = "Allocates Efficient Contraptions", ["type"] = "fractured", }, - [432] = { + { ["id"] = "fractured.stat_2954116742|42245", ["text"] = "Allocates Efficient Inscriptions", ["type"] = "fractured", }, - [433] = { + { ["id"] = "fractured.stat_2954116742|94", ["text"] = "Allocates Efficient Killing", ["type"] = "fractured", }, - [434] = { + { ["id"] = "fractured.stat_2954116742|3894", ["text"] = "Allocates Eldritch Will", ["type"] = "fractured", }, - [435] = { + { ["id"] = "fractured.stat_2954116742|55708", ["text"] = "Allocates Electric Amplification", ["type"] = "fractured", }, - [436] = { + { ["id"] = "fractured.stat_2954116742|30546", ["text"] = "Allocates Electrified Claw", ["type"] = "fractured", }, - [437] = { + { ["id"] = "fractured.stat_2954116742|26291", ["text"] = "Allocates Electrifying Nature", ["type"] = "fractured", }, - [438] = { + { ["id"] = "fractured.stat_2954116742|7275", ["text"] = "Allocates Electrocuting Exposure", ["type"] = "fractured", }, - [439] = { + { ["id"] = "fractured.stat_2954116742|36364", ["text"] = "Allocates Electrocution", ["type"] = "fractured", }, - [440] = { + { ["id"] = "fractured.stat_2954116742|43090", ["text"] = "Allocates Electrotherapy", ["type"] = "fractured", }, - [441] = { + { ["id"] = "fractured.stat_2954116742|10612", ["text"] = "Allocates Embodiment of Frost", ["type"] = "fractured", }, - [442] = { + { ["id"] = "fractured.stat_2954116742|15991", ["text"] = "Allocates Embodiment of Lightning", ["type"] = "fractured", }, - [443] = { + { ["id"] = "fractured.stat_2954116742|43423", ["text"] = "Allocates Emboldened Avatar", ["type"] = "fractured", }, - [444] = { + { ["id"] = "fractured.stat_2954116742|8397", ["text"] = "Allocates Empowering Remains", ["type"] = "fractured", }, - [445] = { + { ["id"] = "fractured.stat_2954116742|40985", ["text"] = "Allocates Empowering Remnants", ["type"] = "fractured", }, - [446] = { + { ["id"] = "fractured.stat_2954116742|19955", ["text"] = "Allocates Endless Blizzard", ["type"] = "fractured", }, - [447] = { + { ["id"] = "fractured.stat_2954116742|8273", ["text"] = "Allocates Endless Circuit", ["type"] = "fractured", }, - [448] = { + { ["id"] = "fractured.stat_2954116742|5663", ["text"] = "Allocates Endurance", ["type"] = "fractured", }, - [449] = { + { ["id"] = "fractured.stat_2954116742|15443", ["text"] = "Allocates Endured Suffering", ["type"] = "fractured", }, - [450] = { + { ["id"] = "fractured.stat_2954116742|59070", ["text"] = "Allocates Enduring Archon", ["type"] = "fractured", }, - [451] = { + { ["id"] = "fractured.stat_2954116742|40399", ["text"] = "Allocates Energise", ["type"] = "fractured", }, - [452] = { + { ["id"] = "fractured.stat_2954116742|2814", ["text"] = "Allocates Engineered Blaze", ["type"] = "fractured", }, - [453] = { + { ["id"] = "fractured.stat_2954116742|44299", ["text"] = "Allocates Enhanced Barrier", ["type"] = "fractured", }, - [454] = { + { ["id"] = "fractured.stat_2954116742|51707", ["text"] = "Allocates Enhanced Reflexes", ["type"] = "fractured", }, - [455] = { + { ["id"] = "fractured.stat_2954116742|30720", ["text"] = "Allocates Entropic Incarnation", ["type"] = "fractured", }, - [456] = { + { ["id"] = "fractured.stat_2954116742|65243", ["text"] = "Allocates Enveloping Presence", ["type"] = "fractured", }, - [457] = { + { ["id"] = "fractured.stat_2954116742|61404", ["text"] = "Allocates Equilibrium", ["type"] = "fractured", }, - [458] = { + { ["id"] = "fractured.stat_2954116742|20032", ["text"] = "Allocates Erraticism", ["type"] = "fractured", }, - [459] = { + { ["id"] = "fractured.stat_2954116742|38628", ["text"] = "Allocates Escalating Toxins", ["type"] = "fractured", }, - [460] = { + { ["id"] = "fractured.stat_2954116742|5227", ["text"] = "Allocates Escape Strategy", ["type"] = "fractured", }, - [461] = { + { ["id"] = "fractured.stat_2954116742|17854", ["text"] = "Allocates Escape Velocity", ["type"] = "fractured", }, - [462] = { + { ["id"] = "fractured.stat_2954116742|42077", ["text"] = "Allocates Essence Infusion", ["type"] = "fractured", }, - [463] = { + { ["id"] = "fractured.stat_2954116742|16256", ["text"] = "Allocates Ether Flow", ["type"] = "fractured", }, - [464] = { + { ["id"] = "fractured.stat_2954116742|52191", ["text"] = "Allocates Event Horizon", ["type"] = "fractured", }, - [465] = { + { ["id"] = "fractured.stat_2954116742|41753", ["text"] = "Allocates Evocational Practitioner", ["type"] = "fractured", }, - [466] = { + { ["id"] = "fractured.stat_2954116742|47420", ["text"] = "Allocates Expendable Army", ["type"] = "fractured", }, - [467] = { + { ["id"] = "fractured.stat_2954116742|39050", ["text"] = "Allocates Exploit", ["type"] = "fractured", }, - [468] = { + { ["id"] = "fractured.stat_2954116742|48581", ["text"] = "Allocates Exploit the Elements", ["type"] = "fractured", }, - [469] = { + { ["id"] = "fractured.stat_2954116742|36333", ["text"] = "Allocates Explosive Empowerment", ["type"] = "fractured", }, - [470] = { + { ["id"] = "fractured.stat_2954116742|21206", ["text"] = "Allocates Explosive Impact", ["type"] = "fractured", }, - [471] = { + { ["id"] = "fractured.stat_2954116742|10423", ["text"] = "Allocates Exposed to the Inferno", ["type"] = "fractured", }, - [472] = { + { ["id"] = "fractured.stat_2954116742|40990", ["text"] = "Allocates Exposed to the Storm", ["type"] = "fractured", }, - [473] = { + { ["id"] = "fractured.stat_2954116742|56112", ["text"] = "Allocates Extinguishing Exhalation", ["type"] = "fractured", }, - [474] = { + { ["id"] = "fractured.stat_2954116742|60034", ["text"] = "Allocates Falcon Dive", ["type"] = "fractured", }, - [475] = { + { ["id"] = "fractured.stat_2954116742|31172", ["text"] = "Allocates Falcon Technique", ["type"] = "fractured", }, - [476] = { + { ["id"] = "fractured.stat_2954116742|60464", ["text"] = "Allocates Fan the Flames", ["type"] = "fractured", }, - [477] = { + { ["id"] = "fractured.stat_2954116742|35477", ["text"] = "Allocates Far Sighted", ["type"] = "fractured", }, - [478] = { + { ["id"] = "fractured.stat_2954116742|55", ["text"] = "Allocates Fast Acting Toxins", ["type"] = "fractured", }, - [479] = { + { ["id"] = "fractured.stat_2954116742|8827", ["text"] = "Allocates Fast Metabolism", ["type"] = "fractured", }, - [480] = { + { ["id"] = "fractured.stat_2954116742|3921", ["text"] = "Allocates Fate Finding", ["type"] = "fractured", }, - [481] = { + { ["id"] = "fractured.stat_2954116742|59214", ["text"] = "Allocates Fated End", ["type"] = "fractured", }, - [482] = { + { ["id"] = "fractured.stat_2954116742|19546", ["text"] = "Allocates Favourable Odds", ["type"] = "fractured", }, - [483] = { + { ["id"] = "fractured.stat_2954116742|60764", ["text"] = "Allocates Feathered Fletching", ["type"] = "fractured", }, - [484] = { + { ["id"] = "fractured.stat_2954116742|9968", ["text"] = "Allocates Feel the Earth", ["type"] = "fractured", }, - [485] = { + { ["id"] = "fractured.stat_2954116742|21537", ["text"] = "Allocates Fervour", ["type"] = "fractured", }, - [486] = { + { ["id"] = "fractured.stat_2954116742|2999", ["text"] = "Allocates Final Barrage", ["type"] = "fractured", }, - [487] = { + { ["id"] = "fractured.stat_2954116742|51867", ["text"] = "Allocates Finality", ["type"] = "fractured", }, - [488] = { + { ["id"] = "fractured.stat_2954116742|38969", ["text"] = "Allocates Finesse", ["type"] = "fractured", }, - [489] = { + { ["id"] = "fractured.stat_2954116742|29899", ["text"] = "Allocates Finish Them", ["type"] = "fractured", }, - [490] = { + { ["id"] = "fractured.stat_2954116742|45013", ["text"] = "Allocates Finishing Blows", ["type"] = "fractured", }, - [491] = { + { ["id"] = "fractured.stat_2954116742|54911", ["text"] = "Allocates Firestarter", ["type"] = "fractured", }, - [492] = { + { ["id"] = "fractured.stat_2954116742|29527", ["text"] = "Allocates First Approach", ["type"] = "fractured", }, - [493] = { + { ["id"] = "fractured.stat_2954116742|12337", ["text"] = "Allocates Flash Storm", ["type"] = "fractured", }, - [494] = { + { ["id"] = "fractured.stat_2954116742|64851", ["text"] = "Allocates Flashy Parrying", ["type"] = "fractured", }, - [495] = { + { ["id"] = "fractured.stat_2954116742|21164", ["text"] = "Allocates Fleshcrafting", ["type"] = "fractured", }, - [496] = { + { ["id"] = "fractured.stat_2954116742|9227", ["text"] = "Allocates Focused Thrust", ["type"] = "fractured", }, - [497] = { + { ["id"] = "fractured.stat_2954116742|20677", ["text"] = "Allocates For the Jugular", ["type"] = "fractured", }, - [498] = { + { ["id"] = "fractured.stat_2954116742|3985", ["text"] = "Allocates Forces of Nature", ["type"] = "fractured", }, - [499] = { + { ["id"] = "fractured.stat_2954116742|48103", ["text"] = "Allocates Forcewave", ["type"] = "fractured", }, - [500] = { + { ["id"] = "fractured.stat_2954116742|23940", ["text"] = "Allocates Fortified Aegis", ["type"] = "fractured", }, - [501] = { + { ["id"] = "fractured.stat_2954116742|35855", ["text"] = "Allocates Fortifying Blood", ["type"] = "fractured", }, - [502] = { + { ["id"] = "fractured.stat_2954116742|59208", ["text"] = "Allocates Frantic Fighter", ["type"] = "fractured", }, - [503] = { + { ["id"] = "fractured.stat_2954116742|28441", ["text"] = "Allocates Frantic Swings", ["type"] = "fractured", }, - [504] = { + { ["id"] = "fractured.stat_2954116742|32301", ["text"] = "Allocates Frazzled", ["type"] = "fractured", }, - [505] = { + { ["id"] = "fractured.stat_2954116742|51606", ["text"] = "Allocates Freedom of Movement", ["type"] = "fractured", }, - [506] = { + { ["id"] = "fractured.stat_2954116742|40270", ["text"] = "Allocates Frenetic", ["type"] = "fractured", }, - [507] = { + { ["id"] = "fractured.stat_2954116742|48699", ["text"] = "Allocates Frostwalker", ["type"] = "fractured", }, - [508] = { + { ["id"] = "fractured.stat_2954116742|50715", ["text"] = "Allocates Frozen Limit", ["type"] = "fractured", }, - [509] = { + { ["id"] = "fractured.stat_2954116742|37543", ["text"] = "Allocates Full Recovery", ["type"] = "fractured", }, - [510] = { + { ["id"] = "fractured.stat_2954116742|33887", ["text"] = "Allocates Full Salvo", ["type"] = "fractured", }, - [511] = { + { ["id"] = "fractured.stat_2954116742|24630", ["text"] = "Allocates Fulmination", ["type"] = "fractured", }, - [512] = { + { ["id"] = "fractured.stat_2954116742|32976", ["text"] = "Allocates Gem Enthusiast", ["type"] = "fractured", }, - [513] = { + { ["id"] = "fractured.stat_2954116742|27875", ["text"] = "Allocates General Electric", ["type"] = "fractured", }, - [514] = { + { ["id"] = "fractured.stat_2954116742|17150", ["text"] = "Allocates General's Bindings", ["type"] = "fractured", }, - [515] = { + { ["id"] = "fractured.stat_2954116742|9020", ["text"] = "Allocates Giantslayer", ["type"] = "fractured", }, - [516] = { + { ["id"] = "fractured.stat_2954116742|46365", ["text"] = "Allocates Gigantic Following", ["type"] = "fractured", }, - [517] = { + { ["id"] = "fractured.stat_2954116742|41972", ["text"] = "Allocates Glaciation", ["type"] = "fractured", }, - [518] = { + { ["id"] = "fractured.stat_2954116742|56488", ["text"] = "Allocates Glancing Deflection", ["type"] = "fractured", }, - [519] = { + { ["id"] = "fractured.stat_2954116742|23939", ["text"] = "Allocates Glazed Flesh", ["type"] = "fractured", }, - [520] = { + { ["id"] = "fractured.stat_2954116742|47316", ["text"] = "Allocates Goring", ["type"] = "fractured", }, - [521] = { + { ["id"] = "fractured.stat_2954116742|58714", ["text"] = "Allocates Grenadier", ["type"] = "fractured", }, - [522] = { + { ["id"] = "fractured.stat_2954116742|20416", ["text"] = "Allocates Grit", ["type"] = "fractured", }, - [523] = { + { ["id"] = "fractured.stat_2954116742|14945", ["text"] = "Allocates Growing Swarm", ["type"] = "fractured", }, - [524] = { + { ["id"] = "fractured.stat_2954116742|4331", ["text"] = "Allocates Guided Hand", ["type"] = "fractured", }, - [525] = { + { ["id"] = "fractured.stat_2954116742|29762", ["text"] = "Allocates Guttural Roar", ["type"] = "fractured", }, - [526] = { + { ["id"] = "fractured.stat_2954116742|33229", ["text"] = "Allocates Haemorrhaging Cuts", ["type"] = "fractured", }, - [527] = { + { ["id"] = "fractured.stat_2954116742|15374", ["text"] = "Allocates Hale Heart", ["type"] = "fractured", }, - [528] = { + { ["id"] = "fractured.stat_2954116742|34531", ["text"] = "Allocates Hallowed", ["type"] = "fractured", }, - [529] = { + { ["id"] = "fractured.stat_2954116742|24438", ["text"] = "Allocates Hardened Wood", ["type"] = "fractured", }, - [530] = { + { ["id"] = "fractured.stat_2954116742|40480", ["text"] = "Allocates Harmonic Generator", ["type"] = "fractured", }, - [531] = { + { ["id"] = "fractured.stat_2954116742|12611", ["text"] = "Allocates Harness the Elements", ["type"] = "fractured", }, - [532] = { + { ["id"] = "fractured.stat_2954116742|44293", ["text"] = "Allocates Hastening Barrier", ["type"] = "fractured", }, - [533] = { + { ["id"] = "fractured.stat_2954116742|48215", ["text"] = "Allocates Headshot", ["type"] = "fractured", }, - [534] = { + { ["id"] = "fractured.stat_2954116742|35966", ["text"] = "Allocates Heart Tissue", ["type"] = "fractured", }, - [535] = { + { ["id"] = "fractured.stat_2954116742|13407", ["text"] = "Allocates Heartbreaking", ["type"] = "fractured", }, - [536] = { + { ["id"] = "fractured.stat_2954116742|38537", ["text"] = "Allocates Heartstopping", ["type"] = "fractured", }, - [537] = { + { ["id"] = "fractured.stat_2954116742|372", ["text"] = "Allocates Heatproof", ["type"] = "fractured", }, - [538] = { + { ["id"] = "fractured.stat_2954116742|11826", ["text"] = "Allocates Heavy Ammunition", ["type"] = "fractured", }, - [539] = { + { ["id"] = "fractured.stat_2954116742|27491", ["text"] = "Allocates Heavy Buffer", ["type"] = "fractured", }, - [540] = { + { ["id"] = "fractured.stat_2954116742|56997", ["text"] = "Allocates Heavy Contact", ["type"] = "fractured", }, - [541] = { + { ["id"] = "fractured.stat_2954116742|15617", ["text"] = "Allocates Heavy Drinker", ["type"] = "fractured", }, - [542] = { + { ["id"] = "fractured.stat_2954116742|4959", ["text"] = "Allocates Heavy Frost", ["type"] = "fractured", }, - [543] = { + { ["id"] = "fractured.stat_2954116742|41512", ["text"] = "Allocates Heavy Weaponry", ["type"] = "fractured", }, - [544] = { + { ["id"] = "fractured.stat_2954116742|48418", ["text"] = "Allocates Hefty Unit", ["type"] = "fractured", }, - [545] = { + { ["id"] = "fractured.stat_2954116742|30456", ["text"] = "Allocates High Alert", ["type"] = "fractured", }, - [546] = { + { ["id"] = "fractured.stat_2954116742|48014", ["text"] = "Allocates Honourless", ["type"] = "fractured", }, - [547] = { + { ["id"] = "fractured.stat_2954116742|4673", ["text"] = "Allocates Hulking Smash", ["type"] = "fractured", }, - [548] = { + { ["id"] = "fractured.stat_2954116742|57471", ["text"] = "Allocates Hunker Down", ["type"] = "fractured", }, - [549] = { + { ["id"] = "fractured.stat_2954116742|48617", ["text"] = "Allocates Hunter", ["type"] = "fractured", }, - [550] = { + { ["id"] = "fractured.stat_2954116742|55847", ["text"] = "Allocates Ice Walls", ["type"] = "fractured", }, - [551] = { + { ["id"] = "fractured.stat_2954116742|4031", ["text"] = "Allocates Icebreaker", ["type"] = "fractured", }, - [552] = { + { ["id"] = "fractured.stat_2954116742|7341", ["text"] = "Allocates Ignore Pain", ["type"] = "fractured", }, - [553] = { + { ["id"] = "fractured.stat_2954116742|1823", ["text"] = "Allocates Illuminated Crown", ["type"] = "fractured", }, - [554] = { + { ["id"] = "fractured.stat_2954116742|19156", ["text"] = "Allocates Immaterial", ["type"] = "fractured", }, - [555] = { + { ["id"] = "fractured.stat_2954116742|53030", ["text"] = "Allocates Immolation", ["type"] = "fractured", }, - [556] = { + { ["id"] = "fractured.stat_2954116742|51871", ["text"] = "Allocates Immortal Thirst", ["type"] = "fractured", }, - [557] = { + { ["id"] = "fractured.stat_2954116742|16626", ["text"] = "Allocates Impact Area", ["type"] = "fractured", }, - [558] = { + { ["id"] = "fractured.stat_2954116742|64443", ["text"] = "Allocates Impact Force", ["type"] = "fractured", }, - [559] = { + { ["id"] = "fractured.stat_2954116742|46696", ["text"] = "Allocates Impair", ["type"] = "fractured", }, - [560] = { + { ["id"] = "fractured.stat_2954116742|21748", ["text"] = "Allocates Impending Doom", ["type"] = "fractured", }, - [561] = { + { ["id"] = "fractured.stat_2954116742|65023", ["text"] = "Allocates Impenetrable Shell", ["type"] = "fractured", }, - [562] = { + { ["id"] = "fractured.stat_2954116742|57379", ["text"] = "Allocates In Your Face", ["type"] = "fractured", }, - [563] = { + { ["id"] = "fractured.stat_2954116742|35028", ["text"] = "Allocates In the Thick of It", ["type"] = "fractured", }, - [564] = { + { ["id"] = "fractured.stat_2954116742|62310", ["text"] = "Allocates Incendiary", ["type"] = "fractured", }, - [565] = { + { ["id"] = "fractured.stat_2954116742|36630", ["text"] = "Allocates Incision", ["type"] = "fractured", }, - [566] = { + { ["id"] = "fractured.stat_2954116742|47270", ["text"] = "Allocates Inescapable Cold", ["type"] = "fractured", }, - [567] = { + { ["id"] = "fractured.stat_2954116742|22817", ["text"] = "Allocates Inevitable Rupture", ["type"] = "fractured", }, - [568] = { + { ["id"] = "fractured.stat_2954116742|24764", ["text"] = "Allocates Infusing Power", ["type"] = "fractured", }, - [569] = { + { ["id"] = "fractured.stat_2954116742|39567", ["text"] = "Allocates Ingenuity", ["type"] = "fractured", }, - [570] = { + { ["id"] = "fractured.stat_2954116742|23227", ["text"] = "Allocates Initiative", ["type"] = "fractured", }, - [571] = { + { ["id"] = "fractured.stat_2954116742|30562", ["text"] = "Allocates Inner Faith", ["type"] = "fractured", }, - [572] = { + { ["id"] = "fractured.stat_2954116742|116", ["text"] = "Allocates Insightfulness", ["type"] = "fractured", }, - [573] = { + { ["id"] = "fractured.stat_2954116742|16150", ["text"] = "Allocates Inspiring Ally", ["type"] = "fractured", }, - [574] = { + { ["id"] = "fractured.stat_2954116742|4661", ["text"] = "Allocates Inspiring Leader", ["type"] = "fractured", }, - [575] = { + { ["id"] = "fractured.stat_2954116742|43944", ["text"] = "Allocates Instability", ["type"] = "fractured", }, - [576] = { + { ["id"] = "fractured.stat_2954116742|9736", ["text"] = "Allocates Insulated Treads", ["type"] = "fractured", }, - [577] = { + { ["id"] = "fractured.stat_2954116742|65016", ["text"] = "Allocates Intense Flames", ["type"] = "fractured", }, - [578] = { + { ["id"] = "fractured.stat_2954116742|7668", ["text"] = "Allocates Internal Bleeding", ["type"] = "fractured", }, - [579] = { + { ["id"] = "fractured.stat_2954116742|35369", ["text"] = "Allocates Investing Energies", ["type"] = "fractured", }, - [580] = { + { ["id"] = "fractured.stat_2954116742|41394", ["text"] = "Allocates Invigorating Archon", ["type"] = "fractured", }, - [581] = { + { ["id"] = "fractured.stat_2954116742|50023", ["text"] = "Allocates Invigorating Grandeur", ["type"] = "fractured", }, - [582] = { + { ["id"] = "fractured.stat_2954116742|51934", ["text"] = "Allocates Invocated Efficiency", ["type"] = "fractured", }, - [583] = { + { ["id"] = "fractured.stat_2954116742|22626", ["text"] = "Allocates Irreparable", ["type"] = "fractured", }, - [584] = { + { ["id"] = "fractured.stat_2954116742|16618", ["text"] = "Allocates Jack of all Trades", ["type"] = "fractured", }, - [585] = { + { ["id"] = "fractured.stat_2954116742|10265", ["text"] = "Allocates Javelin", ["type"] = "fractured", }, - [586] = { + { ["id"] = "fractured.stat_2954116742|37302", ["text"] = "Allocates Kept at Bay", ["type"] = "fractured", }, - [587] = { + { ["id"] = "fractured.stat_2954116742|56453", ["text"] = "Allocates Killer Instinct", ["type"] = "fractured", }, - [588] = { + { ["id"] = "fractured.stat_2954116742|26107", ["text"] = "Allocates Kite Runner", ["type"] = "fractured", }, - [589] = { + { ["id"] = "fractured.stat_2954116742|2397", ["text"] = "Allocates Last Stand", ["type"] = "fractured", }, - [590] = { + { ["id"] = "fractured.stat_2954116742|58096", ["text"] = "Allocates Lasting Incantations", ["type"] = "fractured", }, - [591] = { + { ["id"] = "fractured.stat_2954116742|61741", ["text"] = "Allocates Lasting Toxins", ["type"] = "fractured", }, - [592] = { + { ["id"] = "fractured.stat_2954116742|18496", ["text"] = "Allocates Lasting Trauma", ["type"] = "fractured", }, - [593] = { + { ["id"] = "fractured.stat_2954116742|8607", ["text"] = "Allocates Lavianga's Brew", ["type"] = "fractured", }, - [594] = { + { ["id"] = "fractured.stat_2954116742|45599", ["text"] = "Allocates Lay Siege", ["type"] = "fractured", }, - [595] = { + { ["id"] = "fractured.stat_2954116742|40687", ["text"] = "Allocates Lead by Example", ["type"] = "fractured", }, - [596] = { + { ["id"] = "fractured.stat_2954116742|8531", ["text"] = "Allocates Leaping Ambush", ["type"] = "fractured", }, - [597] = { + { ["id"] = "fractured.stat_2954116742|63431", ["text"] = "Allocates Leeching Toxins", ["type"] = "fractured", }, - [598] = { + { ["id"] = "fractured.stat_2954116742|55131", ["text"] = "Allocates Light on your Feet", ["type"] = "fractured", }, - [599] = { + { ["id"] = "fractured.stat_2954116742|13738", ["text"] = "Allocates Lightning Quick", ["type"] = "fractured", }, - [600] = { + { ["id"] = "fractured.stat_2954116742|44566", ["text"] = "Allocates Lightning Rod", ["type"] = "fractured", }, - [601] = { + { ["id"] = "fractured.stat_2954116742|56063", ["text"] = "Allocates Lingering Horror", ["type"] = "fractured", }, - [602] = { + { ["id"] = "fractured.stat_2954116742|16499", ["text"] = "Allocates Lingering Whispers", ["type"] = "fractured", }, - [603] = { + { ["id"] = "fractured.stat_2954116742|62887", ["text"] = "Allocates Living Death", ["type"] = "fractured", }, - [604] = { + { ["id"] = "fractured.stat_2954116742|31745", ["text"] = "Allocates Lockdown", ["type"] = "fractured", }, - [605] = { + { ["id"] = "fractured.stat_2954116742|56999", ["text"] = "Allocates Locked On", ["type"] = "fractured", }, - [606] = { + { ["id"] = "fractured.stat_2954116742|31826", ["text"] = "Allocates Long Distance Relationship", ["type"] = "fractured", }, - [607] = { + { ["id"] = "fractured.stat_2954116742|13542", ["text"] = "Allocates Loose Flesh", ["type"] = "fractured", }, - [608] = { + { ["id"] = "fractured.stat_2954116742|33240", ["text"] = "Allocates Lord of Horrors", ["type"] = "fractured", }, - [609] = { + { ["id"] = "fractured.stat_2954116742|42959", ["text"] = "Allocates Low Tolerance", ["type"] = "fractured", }, - [610] = { + { ["id"] = "fractured.stat_2954116742|51891", ["text"] = "Allocates Lucidity", ["type"] = "fractured", }, - [611] = { + { ["id"] = "fractured.stat_2954116742|59303", ["text"] = "Allocates Lucky Rabbit Foot", ["type"] = "fractured", }, - [612] = { + { ["id"] = "fractured.stat_2954116742|1104", ["text"] = "Allocates Lust for Power", ["type"] = "fractured", }, - [613] = { + { ["id"] = "fractured.stat_2954116742|27009", ["text"] = "Allocates Lust for Sacrifice", ["type"] = "fractured", }, - [614] = { + { ["id"] = "fractured.stat_2954116742|44952", ["text"] = "Allocates Made to Last", ["type"] = "fractured", }, - [615] = { + { ["id"] = "fractured.stat_2954116742|23738", ["text"] = "Allocates Madness in the Bones", ["type"] = "fractured", }, - [616] = { + { ["id"] = "fractured.stat_2954116742|41580", ["text"] = "Allocates Maiming Strike", ["type"] = "fractured", }, - [617] = { + { ["id"] = "fractured.stat_2954116742|37742", ["text"] = "Allocates Manifold Method", ["type"] = "fractured", }, - [618] = { + { ["id"] = "fractured.stat_2954116742|64050", ["text"] = "Allocates Marathon Runner", ["type"] = "fractured", }, - [619] = { + { ["id"] = "fractured.stat_2954116742|44756", ["text"] = "Allocates Marked Agility", ["type"] = "fractured", }, - [620] = { + { ["id"] = "fractured.stat_2954116742|36976", ["text"] = "Allocates Marked for Death", ["type"] = "fractured", }, - [621] = { + { ["id"] = "fractured.stat_2954116742|63830", ["text"] = "Allocates Marked for Sickness", ["type"] = "fractured", }, - [622] = { + { ["id"] = "fractured.stat_2954116742|2113", ["text"] = "Allocates Martial Artistry", ["type"] = "fractured", }, - [623] = { + { ["id"] = "fractured.stat_2954116742|27108", ["text"] = "Allocates Mass Hysteria", ["type"] = "fractured", }, - [624] = { + { ["id"] = "fractured.stat_2954116742|30341", ["text"] = "Allocates Master Fletching", ["type"] = "fractured", }, - [625] = { + { ["id"] = "fractured.stat_2954116742|27513", ["text"] = "Allocates Material Solidification", ["type"] = "fractured", }, - [626] = { + { ["id"] = "fractured.stat_2954116742|3215", ["text"] = "Allocates Melding", ["type"] = "fractured", }, - [627] = { + { ["id"] = "fractured.stat_2954116742|43939", ["text"] = "Allocates Melting Flames", ["type"] = "fractured", }, - [628] = { + { ["id"] = "fractured.stat_2954116742|16466", ["text"] = "Allocates Mental Alacrity", ["type"] = "fractured", }, - [629] = { + { ["id"] = "fractured.stat_2954116742|9226", ["text"] = "Allocates Mental Perseverance", ["type"] = "fractured", }, - [630] = { + { ["id"] = "fractured.stat_2954116742|24120", ["text"] = "Allocates Mental Toughness", ["type"] = "fractured", }, - [631] = { + { ["id"] = "fractured.stat_2954116742|11392", ["text"] = "Allocates Molten Being", ["type"] = "fractured", }, - [632] = { + { ["id"] = "fractured.stat_2954116742|17548", ["text"] = "Allocates Moment of Truth", ["type"] = "fractured", }, - [633] = { + { ["id"] = "fractured.stat_2954116742|63579", ["text"] = "Allocates Momentum", ["type"] = "fractured", }, - [634] = { + { ["id"] = "fractured.stat_2954116742|8810", ["text"] = "Allocates Multitasking", ["type"] = "fractured", }, - [635] = { + { ["id"] = "fractured.stat_2954116742|934", ["text"] = "Allocates Natural Immunity", ["type"] = "fractured", }, - [636] = { + { ["id"] = "fractured.stat_2954116742|4709", ["text"] = "Allocates Near Sighted", ["type"] = "fractured", }, - [637] = { + { ["id"] = "fractured.stat_2954116742|35581", ["text"] = "Allocates Near at Hand", ["type"] = "fractured", }, - [638] = { + { ["id"] = "fractured.stat_2954116742|11376", ["text"] = "Allocates Necrotic Touch", ["type"] = "fractured", }, - [639] = { + { ["id"] = "fractured.stat_2954116742|37266", ["text"] = "Allocates Nourishing Ally", ["type"] = "fractured", }, - [640] = { + { ["id"] = "fractured.stat_2954116742|60992", ["text"] = "Allocates Nurturing Guardian", ["type"] = "fractured", }, - [641] = { + { ["id"] = "fractured.stat_2954116742|42036", ["text"] = "Allocates Off-Balancing Retort", ["type"] = "fractured", }, - [642] = { + { ["id"] = "fractured.stat_2954116742|34316", ["text"] = "Allocates One with the River", ["type"] = "fractured", }, - [643] = { + { ["id"] = "fractured.stat_2954116742|9444", ["text"] = "Allocates One with the Storm", ["type"] = "fractured", }, - [644] = { + { ["id"] = "fractured.stat_2954116742|52199", ["text"] = "Allocates Overexposure", ["type"] = "fractured", }, - [645] = { + { ["id"] = "fractured.stat_2954116742|65204", ["text"] = "Allocates Overflowing Power", ["type"] = "fractured", }, - [646] = { + { ["id"] = "fractured.stat_2954116742|47635", ["text"] = "Allocates Overload", ["type"] = "fractured", }, - [647] = { + { ["id"] = "fractured.stat_2954116742|25513", ["text"] = "Allocates Overwhelm", ["type"] = "fractured", }, - [648] = { + { ["id"] = "fractured.stat_2954116742|57388", ["text"] = "Allocates Overwhelming Strike", ["type"] = "fractured", }, - [649] = { + { ["id"] = "fractured.stat_2954116742|10295", ["text"] = "Allocates Overzealous", ["type"] = "fractured", }, - [650] = { + { ["id"] = "fractured.stat_2954116742|62230", ["text"] = "Allocates Patient Barrier", ["type"] = "fractured", }, - [651] = { + { ["id"] = "fractured.stat_2954116742|60404", ["text"] = "Allocates Perfect Opportunity", ["type"] = "fractured", }, - [652] = { + { ["id"] = "fractured.stat_2954116742|49661", ["text"] = "Allocates Perfectly Placed Knife", ["type"] = "fractured", }, - [653] = { + { ["id"] = "fractured.stat_2954116742|17330", ["text"] = "Allocates Perforation", ["type"] = "fractured", }, - [654] = { + { ["id"] = "fractured.stat_2954116742|2863", ["text"] = "Allocates Perpetual Freeze", ["type"] = "fractured", }, - [655] = { + { ["id"] = "fractured.stat_2954116742|34308", ["text"] = "Allocates Personal Touch", ["type"] = "fractured", }, - [656] = { + { ["id"] = "fractured.stat_2954116742|7651", ["text"] = "Allocates Pierce the Heart", ["type"] = "fractured", }, - [657] = { + { ["id"] = "fractured.stat_2954116742|17260", ["text"] = "Allocates Piercing Claw", ["type"] = "fractured", }, - [658] = { + { ["id"] = "fractured.stat_2954116742|60083", ["text"] = "Allocates Pin and Run", ["type"] = "fractured", }, - [659] = { + { ["id"] = "fractured.stat_2954116742|16816", ["text"] = "Allocates Pinpoint Shot", ["type"] = "fractured", }, - [660] = { + { ["id"] = "fractured.stat_2954116742|38111", ["text"] = "Allocates Pliable Flesh", ["type"] = "fractured", }, - [661] = { + { ["id"] = "fractured.stat_2954116742|58426", ["text"] = "Allocates Pocket Sand", ["type"] = "fractured", }, - [662] = { + { ["id"] = "fractured.stat_2954116742|57047", ["text"] = "Allocates Polymathy", ["type"] = "fractured", }, - [663] = { + { ["id"] = "fractured.stat_2954116742|19125", ["text"] = "Allocates Potent Incantation", ["type"] = "fractured", }, - [664] = { + { ["id"] = "fractured.stat_2954116742|15083", ["text"] = "Allocates Power Conduction", ["type"] = "fractured", }, - [665] = { + { ["id"] = "fractured.stat_2954116742|6178", ["text"] = "Allocates Power Shots", ["type"] = "fractured", }, - [666] = { + { ["id"] = "fractured.stat_2954116742|13895", ["text"] = "Allocates Precise Point", ["type"] = "fractured", }, - [667] = { + { ["id"] = "fractured.stat_2954116742|19337", ["text"] = "Allocates Precision Salvo", ["type"] = "fractured", }, - [668] = { + { ["id"] = "fractured.stat_2954116742|21380", ["text"] = "Allocates Preemptive Strike", ["type"] = "fractured", }, - [669] = { + { ["id"] = "fractured.stat_2954116742|37872", ["text"] = "Allocates Presence Present", ["type"] = "fractured", }, - [670] = { + { ["id"] = "fractured.stat_2954116742|32951", ["text"] = "Allocates Preservation", ["type"] = "fractured", }, - [671] = { + { ["id"] = "fractured.stat_2954116742|28329", ["text"] = "Allocates Pressure Points", ["type"] = "fractured", }, - [672] = { + { ["id"] = "fractured.stat_2954116742|9908", ["text"] = "Allocates Price of Freedom", ["type"] = "fractured", }, - [673] = { + { ["id"] = "fractured.stat_2954116742|32071", ["text"] = "Allocates Primal Growth", ["type"] = "fractured", }, - [674] = { + { ["id"] = "fractured.stat_2954116742|50884", ["text"] = "Allocates Primal Sundering", ["type"] = "fractured", }, - [675] = { + { ["id"] = "fractured.stat_2954116742|26356", ["text"] = "Allocates Primed to Explode", ["type"] = "fractured", }, - [676] = { + { ["id"] = "fractured.stat_2954116742|62034", ["text"] = "Allocates Prism Guard", ["type"] = "fractured", }, - [677] = { + { ["id"] = "fractured.stat_2954116742|54814", ["text"] = "Allocates Profane Commander", ["type"] = "fractured", }, - [678] = { + { ["id"] = "fractured.stat_2954116742|58397", ["text"] = "Allocates Proficiency", ["type"] = "fractured", }, - [679] = { + { ["id"] = "fractured.stat_2954116742|19236", ["text"] = "Allocates Projectile Bulwark", ["type"] = "fractured", }, - [680] = { + { ["id"] = "fractured.stat_2954116742|19442", ["text"] = "Allocates Prolonged Assault", ["type"] = "fractured", }, - [681] = { + { ["id"] = "fractured.stat_2954116742|49550", ["text"] = "Allocates Prolonged Fury", ["type"] = "fractured", }, - [682] = { + { ["id"] = "fractured.stat_2954116742|38614", ["text"] = "Allocates Psychic Fragmentation", ["type"] = "fractured", }, - [683] = { + { ["id"] = "fractured.stat_2954116742|13482", ["text"] = "Allocates Punctured Lung", ["type"] = "fractured", }, - [684] = { + { ["id"] = "fractured.stat_2954116742|55149", ["text"] = "Allocates Pure Chaos", ["type"] = "fractured", }, - [685] = { + { ["id"] = "fractured.stat_2954116742|28975", ["text"] = "Allocates Pure Power", ["type"] = "fractured", }, - [686] = { + { ["id"] = "fractured.stat_2954116742|6229", ["text"] = "Allocates Push the Advantage", ["type"] = "fractured", }, - [687] = { + { ["id"] = "fractured.stat_2954116742|64119", ["text"] = "Allocates Rapid Reload", ["type"] = "fractured", }, - [688] = { + { ["id"] = "fractured.stat_2954116742|7604", ["text"] = "Allocates Rapid Strike", ["type"] = "fractured", }, - [689] = { + { ["id"] = "fractured.stat_2954116742|62185", ["text"] = "Allocates Rattled", ["type"] = "fractured", }, - [690] = { + { ["id"] = "fractured.stat_2954116742|3567", ["text"] = "Allocates Raw Mana", ["type"] = "fractured", }, - [691] = { + { ["id"] = "fractured.stat_2954116742|17372", ["text"] = "Allocates Reaching Strike", ["type"] = "fractured", }, - [692] = { + { ["id"] = "fractured.stat_2954116742|10602", ["text"] = "Allocates Reaving", ["type"] = "fractured", }, - [693] = { + { ["id"] = "fractured.stat_2954116742|45244", ["text"] = "Allocates Refills", ["type"] = "fractured", }, - [694] = { + { ["id"] = "fractured.stat_2954116742|20388", ["text"] = "Allocates Regenerative Flesh", ["type"] = "fractured", }, - [695] = { + { ["id"] = "fractured.stat_2954116742|35809", ["text"] = "Allocates Reinvigoration", ["type"] = "fractured", }, - [696] = { + { ["id"] = "fractured.stat_2954116742|55180", ["text"] = "Allocates Relentless Fallen", ["type"] = "fractured", }, - [697] = { + { ["id"] = "fractured.stat_2954116742|65468", ["text"] = "Allocates Repeating Explosives", ["type"] = "fractured", }, - [698] = { + { ["id"] = "fractured.stat_2954116742|20414", ["text"] = "Allocates Reprisal", ["type"] = "fractured", }, - [699] = { + { ["id"] = "fractured.stat_2954116742|10029", ["text"] = "Allocates Repulsion", ["type"] = "fractured", }, - [700] = { + { ["id"] = "fractured.stat_2954116742|40325", ["text"] = "Allocates Resolution", ["type"] = "fractured", }, - [701] = { + { ["id"] = "fractured.stat_2954116742|38972", ["text"] = "Allocates Restless Dead", ["type"] = "fractured", }, - [702] = { + { ["id"] = "fractured.stat_2954116742|7395", ["text"] = "Allocates Retaliation", ["type"] = "fractured", }, - [703] = { + { ["id"] = "fractured.stat_2954116742|7062", ["text"] = "Allocates Reusable Ammunition", ["type"] = "fractured", }, - [704] = { + { ["id"] = "fractured.stat_2954116742|3188", ["text"] = "Allocates Revenge", ["type"] = "fractured", }, - [705] = { + { ["id"] = "fractured.stat_2954116742|8660", ["text"] = "Allocates Reverberation", ["type"] = "fractured", }, - [706] = { + { ["id"] = "fractured.stat_2954116742|8957", ["text"] = "Allocates Right Hand of Darkness", ["type"] = "fractured", }, - [707] = { + { ["id"] = "fractured.stat_2954116742|28613", ["text"] = "Allocates Roaring Cries", ["type"] = "fractured", }, - [708] = { + { ["id"] = "fractured.stat_2954116742|60269", ["text"] = "Allocates Roil", ["type"] = "fractured", }, - [709] = { + { ["id"] = "fractured.stat_2954116742|61112", ["text"] = "Allocates Roll and Strike", ["type"] = "fractured", }, - [710] = { + { ["id"] = "fractured.stat_2954116742|53566", ["text"] = "Allocates Run and Gun", ["type"] = "fractured", }, - [711] = { + { ["id"] = "fractured.stat_2954116742|14294", ["text"] = "Allocates Sacrificial Blood", ["type"] = "fractured", }, - [712] = { + { ["id"] = "fractured.stat_2954116742|25619", ["text"] = "Allocates Sand in the Eyes", ["type"] = "fractured", }, - [713] = { + { ["id"] = "fractured.stat_2954116742|58215", ["text"] = "Allocates Sanguimantic Rituals", ["type"] = "fractured", }, - [714] = { + { ["id"] = "fractured.stat_2954116742|4810", ["text"] = "Allocates Sanguine Tolerance", ["type"] = "fractured", }, - [715] = { + { ["id"] = "fractured.stat_2954116742|63255", ["text"] = "Allocates Savagery", ["type"] = "fractured", }, - [716] = { + { ["id"] = "fractured.stat_2954116742|18397", ["text"] = "Allocates Savoured Blood", ["type"] = "fractured", }, - [717] = { + { ["id"] = "fractured.stat_2954116742|45713", ["text"] = "Allocates Savouring", ["type"] = "fractured", }, - [718] = { + { ["id"] = "fractured.stat_2954116742|5009", ["text"] = "Allocates Seeing Stars", ["type"] = "fractured", }, - [719] = { + { ["id"] = "fractured.stat_2954116742|23630", ["text"] = "Allocates Self Immolation", ["type"] = "fractured", }, - [720] = { + { ["id"] = "fractured.stat_2954116742|44917", ["text"] = "Allocates Self Mortification", ["type"] = "fractured", }, - [721] = { + { ["id"] = "fractured.stat_2954116742|36085", ["text"] = "Allocates Serrated Edges", ["type"] = "fractured", }, - [722] = { + { ["id"] = "fractured.stat_2954116742|13457", ["text"] = "Allocates Shadow Dancing", ["type"] = "fractured", }, - [723] = { + { ["id"] = "fractured.stat_2954116742|53150", ["text"] = "Allocates Sharp Sight", ["type"] = "fractured", }, - [724] = { + { ["id"] = "fractured.stat_2954116742|61703", ["text"] = "Allocates Sharpened Claw", ["type"] = "fractured", }, - [725] = { + { ["id"] = "fractured.stat_2954116742|41811", ["text"] = "Allocates Shatter Palm", ["type"] = "fractured", }, - [726] = { + { ["id"] = "fractured.stat_2954116742|48658", ["text"] = "Allocates Shattering", ["type"] = "fractured", }, - [727] = { + { ["id"] = "fractured.stat_2954116742|64415", ["text"] = "Allocates Shattering Daze", ["type"] = "fractured", }, - [728] = { + { ["id"] = "fractured.stat_2954116742|15644", ["text"] = "Allocates Shedding Skin", ["type"] = "fractured", }, - [729] = { + { ["id"] = "fractured.stat_2954116742|53941", ["text"] = "Allocates Shimmering", ["type"] = "fractured", }, - [730] = { + { ["id"] = "fractured.stat_2954116742|5335", ["text"] = "Allocates Shimmering Mirage", ["type"] = "fractured", }, - [731] = { + { ["id"] = "fractured.stat_2954116742|32448", ["text"] = "Allocates Shockproof", ["type"] = "fractured", }, - [732] = { + { ["id"] = "fractured.stat_2954116742|46296", ["text"] = "Allocates Short Shot", ["type"] = "fractured", }, - [733] = { + { ["id"] = "fractured.stat_2954116742|55060", ["text"] = "Allocates Shrapnel", ["type"] = "fractured", }, - [734] = { + { ["id"] = "fractured.stat_2954116742|14211", ["text"] = "Allocates Shredding Contraptions", ["type"] = "fractured", }, - [735] = { + { ["id"] = "fractured.stat_2954116742|5284", ["text"] = "Allocates Shredding Force", ["type"] = "fractured", }, - [736] = { + { ["id"] = "fractured.stat_2954116742|63037", ["text"] = "Allocates Sigil of Fire", ["type"] = "fractured", }, - [737] = { + { ["id"] = "fractured.stat_2954116742|40803", ["text"] = "Allocates Sigil of Ice", ["type"] = "fractured", }, - [738] = { + { ["id"] = "fractured.stat_2954116742|46024", ["text"] = "Allocates Sigil of Lightning", ["type"] = "fractured", }, - [739] = { + { ["id"] = "fractured.stat_2954116742|17229", ["text"] = "Allocates Silent Guardian", ["type"] = "fractured", }, - [740] = { + { ["id"] = "fractured.stat_2954116742|52392", ["text"] = "Allocates Singular Purpose", ["type"] = "fractured", }, - [741] = { + { ["id"] = "fractured.stat_2954116742|15829", ["text"] = "Allocates Siphon", ["type"] = "fractured", }, - [742] = { + { ["id"] = "fractured.stat_2954116742|12906", ["text"] = "Allocates Sitting Duck", ["type"] = "fractured", }, - [743] = { + { ["id"] = "fractured.stat_2954116742|2645", ["text"] = "Allocates Skullcrusher", ["type"] = "fractured", }, - [744] = { + { ["id"] = "fractured.stat_2954116742|23362", ["text"] = "Allocates Slippery Ice", ["type"] = "fractured", }, - [745] = { + { ["id"] = "fractured.stat_2954116742|31326", ["text"] = "Allocates Slow Burn", ["type"] = "fractured", }, - [746] = { + { ["id"] = "fractured.stat_2954116742|11526", ["text"] = "Allocates Sniper", ["type"] = "fractured", }, - [747] = { + { ["id"] = "fractured.stat_2954116742|9421", ["text"] = "Allocates Snowpiercer", ["type"] = "fractured", }, - [748] = { + { ["id"] = "fractured.stat_2954116742|51169", ["text"] = "Allocates Soul Bloom", ["type"] = "fractured", }, - [749] = { + { ["id"] = "fractured.stat_2954116742|34473", ["text"] = "Allocates Spaghettification", ["type"] = "fractured", }, - [750] = { + { ["id"] = "fractured.stat_2954116742|34324", ["text"] = "Allocates Spectral Ward", ["type"] = "fractured", }, - [751] = { + { ["id"] = "fractured.stat_2954116742|17254", ["text"] = "Allocates Spell Haste", ["type"] = "fractured", }, - [752] = { + { ["id"] = "fractured.stat_2954116742|49984", ["text"] = "Allocates Spellblade", ["type"] = "fractured", }, - [753] = { + { ["id"] = "fractured.stat_2954116742|40117", ["text"] = "Allocates Spiked Armour", ["type"] = "fractured", }, - [754] = { + { ["id"] = "fractured.stat_2954116742|36808", ["text"] = "Allocates Spiked Shield", ["type"] = "fractured", }, - [755] = { + { ["id"] = "fractured.stat_2954116742|1546", ["text"] = "Allocates Spiral into Depression", ["type"] = "fractured", }, - [756] = { + { ["id"] = "fractured.stat_2954116742|2138", ["text"] = "Allocates Spiral into Insanity", ["type"] = "fractured", }, - [757] = { + { ["id"] = "fractured.stat_2954116742|14934", ["text"] = "Allocates Spiral into Mania", ["type"] = "fractured", }, - [758] = { + { ["id"] = "fractured.stat_2954116742|49088", ["text"] = "Allocates Splintering Force", ["type"] = "fractured", }, - [759] = { + { ["id"] = "fractured.stat_2954116742|13980", ["text"] = "Allocates Split the Earth", ["type"] = "fractured", }, - [760] = { + { ["id"] = "fractured.stat_2954116742|20251", ["text"] = "Allocates Splitting Ground", ["type"] = "fractured", }, - [761] = { + { ["id"] = "fractured.stat_2954116742|23736", ["text"] = "Allocates Spray and Pray", ["type"] = "fractured", }, - [762] = { + { ["id"] = "fractured.stat_2954116742|11578", ["text"] = "Allocates Spreading Shocks", ["type"] = "fractured", }, - [763] = { + { ["id"] = "fractured.stat_2954116742|63759", ["text"] = "Allocates Stacking Toxins", ["type"] = "fractured", }, - [764] = { + { ["id"] = "fractured.stat_2954116742|39881", ["text"] = "Allocates Staggering Palm", ["type"] = "fractured", }, - [765] = { + { ["id"] = "fractured.stat_2954116742|5802", ["text"] = "Allocates Stand and Deliver", ["type"] = "fractured", }, - [766] = { + { ["id"] = "fractured.stat_2954116742|2486", ["text"] = "Allocates Stars Aligned", ["type"] = "fractured", }, - [767] = { + { ["id"] = "fractured.stat_2954116742|47782", ["text"] = "Allocates Steady Footing", ["type"] = "fractured", }, - [768] = { + { ["id"] = "fractured.stat_2954116742|7163", ["text"] = "Allocates Stimulants", ["type"] = "fractured", }, - [769] = { + { ["id"] = "fractured.stat_2954116742|1603", ["text"] = "Allocates Storm Driven", ["type"] = "fractured", }, - [770] = { + { ["id"] = "fractured.stat_2954116742|61921", ["text"] = "Allocates Storm Surge", ["type"] = "fractured", }, - [771] = { + { ["id"] = "fractured.stat_2954116742|336", ["text"] = "Allocates Storm Swell", ["type"] = "fractured", }, - [772] = { + { ["id"] = "fractured.stat_2954116742|43139", ["text"] = "Allocates Stormbreaker", ["type"] = "fractured", }, - [773] = { + { ["id"] = "fractured.stat_2954116742|38535", ["text"] = "Allocates Stormcharged", ["type"] = "fractured", }, - [774] = { + { ["id"] = "fractured.stat_2954116742|13515", ["text"] = "Allocates Stormwalker", ["type"] = "fractured", }, - [775] = { + { ["id"] = "fractured.stat_2954116742|10998", ["text"] = "Allocates Strong Chin", ["type"] = "fractured", }, - [776] = { + { ["id"] = "fractured.stat_2954116742|39369", ["text"] = "Allocates Struck Through", ["type"] = "fractured", }, - [777] = { + { ["id"] = "fractured.stat_2954116742|38342", ["text"] = "Allocates Stupefy", ["type"] = "fractured", }, - [778] = { + { ["id"] = "fractured.stat_2954116742|60138", ["text"] = "Allocates Stylebender", ["type"] = "fractured", }, - [779] = { + { ["id"] = "fractured.stat_2954116742|55193", ["text"] = "Allocates Subterfuge Mask", ["type"] = "fractured", }, - [780] = { + { ["id"] = "fractured.stat_2954116742|30392", ["text"] = "Allocates Succour", ["type"] = "fractured", }, - [781] = { + { ["id"] = "fractured.stat_2954116742|10398", ["text"] = "Allocates Sudden Escalation", ["type"] = "fractured", }, - [782] = { + { ["id"] = "fractured.stat_2954116742|29372", ["text"] = "Allocates Sudden Infuriation", ["type"] = "fractured", }, - [783] = { + { ["id"] = "fractured.stat_2954116742|14383", ["text"] = "Allocates Suffusion", ["type"] = "fractured", }, - [784] = { + { ["id"] = "fractured.stat_2954116742|2511", ["text"] = "Allocates Sundering", ["type"] = "fractured", }, - [785] = { + { ["id"] = "fractured.stat_2954116742|19249", ["text"] = "Allocates Supportive Ancestors", ["type"] = "fractured", }, - [786] = { + { ["id"] = "fractured.stat_2954116742|42065", ["text"] = "Allocates Surging Currents", ["type"] = "fractured", }, - [787] = { + { ["id"] = "fractured.stat_2954116742|56806", ["text"] = "Allocates Swift Blocking", ["type"] = "fractured", }, - [788] = { + { ["id"] = "fractured.stat_2954116742|32353", ["text"] = "Allocates Swift Claw", ["type"] = "fractured", }, - [789] = { + { ["id"] = "fractured.stat_2954116742|56714", ["text"] = "Allocates Swift Flight", ["type"] = "fractured", }, - [790] = { + { ["id"] = "fractured.stat_2954116742|65265", ["text"] = "Allocates Swift Interruption", ["type"] = "fractured", }, - [791] = { + { ["id"] = "fractured.stat_2954116742|53367", ["text"] = "Allocates Symbol of Defiance", ["type"] = "fractured", }, - [792] = { + { ["id"] = "fractured.stat_2954116742|17825", ["text"] = "Allocates Tactical Retreat", ["type"] = "fractured", }, - [793] = { + { ["id"] = "fractured.stat_2954116742|22864", ["text"] = "Allocates Tainted Strike", ["type"] = "fractured", }, - [794] = { + { ["id"] = "fractured.stat_2954116742|40213", ["text"] = "Allocates Taste for Blood", ["type"] = "fractured", }, - [795] = { + { ["id"] = "fractured.stat_2954116742|8831", ["text"] = "Allocates Tempered Mind", ["type"] = "fractured", }, - [796] = { + { ["id"] = "fractured.stat_2954116742|12412", ["text"] = "Allocates Temporal Mastery", ["type"] = "fractured", }, - [797] = { + { ["id"] = "fractured.stat_2954116742|25971", ["text"] = "Allocates Tenfold Attacks", ["type"] = "fractured", }, - [798] = { + { ["id"] = "fractured.stat_2954116742|7847", ["text"] = "Allocates The Fabled Stag", ["type"] = "fractured", }, - [799] = { + { ["id"] = "fractured.stat_2954116742|34543", ["text"] = "Allocates The Frenzied Bear", ["type"] = "fractured", }, - [800] = { + { + ["id"] = "fractured.stat_2954116742|54031", + ["text"] = "Allocates The Great Boar", + ["type"] = "fractured", + }, + { ["id"] = "fractured.stat_2954116742|48734", ["text"] = "Allocates The Howling Primate", ["type"] = "fractured", }, - [801] = { + { ["id"] = "fractured.stat_2954116742|28542", ["text"] = "Allocates The Molten One's Gift", ["type"] = "fractured", }, - [802] = { + { ["id"] = "fractured.stat_2954116742|27176", ["text"] = "Allocates The Power Within", ["type"] = "fractured", }, - [803] = { + { ["id"] = "fractured.stat_2954116742|21349", ["text"] = "Allocates The Quick Fox", ["type"] = "fractured", }, - [804] = { + { ["id"] = "fractured.stat_2954116742|52971", ["text"] = "Allocates The Soul Meridian", ["type"] = "fractured", }, - [805] = { + { ["id"] = "fractured.stat_2954116742|11774", ["text"] = "Allocates The Spring Hare", ["type"] = "fractured", }, - [806] = { + { ["id"] = "fractured.stat_2954116742|22811", ["text"] = "Allocates The Wild Cat", ["type"] = "fractured", }, - [807] = { + { ["id"] = "fractured.stat_2954116742|53185", ["text"] = "Allocates The Winter Owl", ["type"] = "fractured", }, - [808] = { + { ["id"] = "fractured.stat_2954116742|35849", ["text"] = "Allocates Thickened Arteries", ["type"] = "fractured", }, - [809] = { + { ["id"] = "fractured.stat_2954116742|56893", ["text"] = "Allocates Thicket Warding", ["type"] = "fractured", }, - [810] = { + { ["id"] = "fractured.stat_2954116742|19722", ["text"] = "Allocates Thin Ice", ["type"] = "fractured", }, - [811] = { + { ["id"] = "fractured.stat_2954116742|38532", ["text"] = "Allocates Thirst for Power", ["type"] = "fractured", }, - [812] = { + { ["id"] = "fractured.stat_2954116742|25711", ["text"] = "Allocates Thrill of Battle", ["type"] = "fractured", }, - [813] = { + { ["id"] = "fractured.stat_2954116742|56265", ["text"] = "Allocates Throatseeker", ["type"] = "fractured", }, - [814] = { + { ["id"] = "fractured.stat_2954116742|63585", ["text"] = "Allocates Thunderstruck", ["type"] = "fractured", }, - [815] = { + { ["id"] = "fractured.stat_2954116742|42813", ["text"] = "Allocates Tides of Change", ["type"] = "fractured", }, - [816] = { + { ["id"] = "fractured.stat_2954116742|24240", ["text"] = "Allocates Time Manipulation", ["type"] = "fractured", }, - [817] = { + { ["id"] = "fractured.stat_2954116742|65160", ["text"] = "Allocates Titanic", ["type"] = "fractured", }, - [818] = { + { ["id"] = "fractured.stat_2954116742|28482", ["text"] = "Allocates Total Incineration", ["type"] = "fractured", }, - [819] = { + { ["id"] = "fractured.stat_2954116742|27626", ["text"] = "Allocates Touch the Arcane", ["type"] = "fractured", }, - [820] = { + { ["id"] = "fractured.stat_2954116742|53823", ["text"] = "Allocates Towering Shield", ["type"] = "fractured", }, - [821] = { + { ["id"] = "fractured.stat_2954116742|2134", ["text"] = "Allocates Toxic Tolerance", ["type"] = "fractured", }, - [822] = { + { ["id"] = "fractured.stat_2954116742|52180", ["text"] = "Allocates Trained Deflection", ["type"] = "fractured", }, - [823] = { + { ["id"] = "fractured.stat_2954116742|57785", ["text"] = "Allocates Trained Turrets", ["type"] = "fractured", }, - [824] = { + { ["id"] = "fractured.stat_2954116742|750", ["text"] = "Allocates Tribal Fury", ["type"] = "fractured", }, - [825] = { + { ["id"] = "fractured.stat_2954116742|61601", ["text"] = "Allocates True Strike", ["type"] = "fractured", }, - [826] = { + { ["id"] = "fractured.stat_2954116742|2335", ["text"] = "Allocates Turn the Clock Forward", ["type"] = "fractured", }, - [827] = { + { ["id"] = "fractured.stat_2954116742|1352", ["text"] = "Allocates Unbending", ["type"] = "fractured", }, - [828] = { + { ["id"] = "fractured.stat_2954116742|64543", ["text"] = "Allocates Unbound Forces", ["type"] = "fractured", }, - [829] = { + { ["id"] = "fractured.stat_2954116742|53921", ["text"] = "Allocates Unbreaking", ["type"] = "fractured", }, - [830] = { + { ["id"] = "fractured.stat_2954116742|38888", ["text"] = "Allocates Unerring Impact", ["type"] = "fractured", }, - [831] = { + { ["id"] = "fractured.stat_2954116742|31189", ["text"] = "Allocates Unexpected Finesse", ["type"] = "fractured", }, - [832] = { + { ["id"] = "fractured.stat_2954116742|8881", ["text"] = "Allocates Unforgiving", ["type"] = "fractured", }, - [833] = { + { ["id"] = "fractured.stat_2954116742|51394", ["text"] = "Allocates Unimpeded", ["type"] = "fractured", }, - [834] = { + { ["id"] = "fractured.stat_2954116742|51602", ["text"] = "Allocates Unsight", ["type"] = "fractured", }, - [835] = { + { ["id"] = "fractured.stat_2954116742|18485", ["text"] = "Allocates Unstable Bond", ["type"] = "fractured", }, - [836] = { + { ["id"] = "fractured.stat_2954116742|33978", ["text"] = "Allocates Unstoppable Barrier", ["type"] = "fractured", }, - [837] = { + { ["id"] = "fractured.stat_2954116742|1169", ["text"] = "Allocates Urgent Call", ["type"] = "fractured", }, - [838] = { + { ["id"] = "fractured.stat_2954116742|17303", ["text"] = "Allocates Utility Ordnance", ["type"] = "fractured", }, - [839] = { + { ["id"] = "fractured.stat_2954116742|41033", ["text"] = "Allocates Utmost Offering", ["type"] = "fractured", }, - [840] = { + { ["id"] = "fractured.stat_2954116742|12750", ["text"] = "Allocates Vale Shelter", ["type"] = "fractured", }, - [841] = { + { ["id"] = "fractured.stat_2954116742|17762", ["text"] = "Allocates Vengeance", ["type"] = "fractured", }, - [842] = { + { ["id"] = "fractured.stat_2954116742|54937", ["text"] = "Allocates Vengeful Fury", ["type"] = "fractured", }, - [843] = { + { ["id"] = "fractured.stat_2954116742|4238", ["text"] = "Allocates Versatile Arms", ["type"] = "fractured", }, - [844] = { + { ["id"] = "fractured.stat_2954116742|65193", ["text"] = "Allocates Viciousness", ["type"] = "fractured", }, - [845] = { + { ["id"] = "fractured.stat_2954116742|22967", ["text"] = "Allocates Vigilance", ["type"] = "fractured", }, - [846] = { + { ["id"] = "fractured.stat_2954116742|36507", ["text"] = "Allocates Vile Mending", ["type"] = "fractured", }, - [847] = { + { ["id"] = "fractured.stat_2954116742|31373", ["text"] = "Allocates Vocal Empowerment", ["type"] = "fractured", }, - [848] = { + { ["id"] = "fractured.stat_2954116742|3492", ["text"] = "Allocates Void", ["type"] = "fractured", }, - [849] = { + { ["id"] = "fractured.stat_2954116742|17882", ["text"] = "Allocates Volatile Grenades", ["type"] = "fractured", }, - [850] = { + { ["id"] = "fractured.stat_2954116742|11366", ["text"] = "Allocates Volcanic Skin", ["type"] = "fractured", }, - [851] = { + { ["id"] = "fractured.stat_2954116742|46060", ["text"] = "Allocates Voracious", ["type"] = "fractured", }, - [852] = { + { ["id"] = "fractured.stat_2954116742|27303", ["text"] = "Allocates Vulgar Methods", ["type"] = "fractured", }, - [853] = { + { ["id"] = "fractured.stat_2954116742|47418", ["text"] = "Allocates Warding Potions", ["type"] = "fractured", }, - [854] = { + { ["id"] = "fractured.stat_2954116742|53187", ["text"] = "Allocates Warlord Berserker", ["type"] = "fractured", }, - [855] = { + { ["id"] = "fractured.stat_2954116742|14761", ["text"] = "Allocates Warlord Leader", ["type"] = "fractured", }, - [856] = { + { ["id"] = "fractured.stat_2954116742|12998", ["text"] = "Allocates Warm the Heart", ["type"] = "fractured", }, - [857] = { + { ["id"] = "fractured.stat_2954116742|51509", ["text"] = "Allocates Waters of Life", ["type"] = "fractured", }, - [858] = { + { ["id"] = "fractured.stat_2954116742|2021", ["text"] = "Allocates Wellspring", ["type"] = "fractured", }, - [859] = { + { ["id"] = "fractured.stat_2954116742|37514", ["text"] = "Allocates Whirling Assault", ["type"] = "fractured", }, - [860] = { + { ["id"] = "fractured.stat_2954116742|46384", ["text"] = "Allocates Wide Barrier", ["type"] = "fractured", }, - [861] = { + { ["id"] = "fractured.stat_2954116742|7809", ["text"] = "Allocates Wild Storm", ["type"] = "fractured", }, - [862] = { + { ["id"] = "fractured.stat_2954116742|62803", ["text"] = "Allocates Woodland Aspect", ["type"] = "fractured", }, - [863] = { + { ["id"] = "fractured.stat_2954116742|30132", ["text"] = "Allocates Wrapped Quiver", ["type"] = "fractured", }, - [864] = { + { ["id"] = "fractured.stat_2954116742|11184", ["text"] = "Allocates Zarokh's Gift", ["type"] = "fractured", }, - [865] = { + { ["id"] = "fractured.stat_2949706590", ["text"] = "Area contains # additional packs of Iron Guards", ["type"] = "fractured", }, - [866] = { + { ["id"] = "fractured.stat_349586058", ["text"] = "Area has patches of Chilled Ground", ["type"] = "fractured", }, - [867] = { + { ["id"] = "fractured.stat_133340941", ["text"] = "Area has patches of Ignited Ground", ["type"] = "fractured", }, - [868] = { + { ["id"] = "fractured.stat_3477720557", ["text"] = "Area has patches of Shocked Ground", ["type"] = "fractured", }, - [869] = { + { ["id"] = "fractured.stat_300723956", ["text"] = "Attack Hits apply Incision", ["type"] = "fractured", }, - [870] = { + { ["id"] = "fractured.stat_315791320", ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "fractured", }, - [871] = { + { ["id"] = "fractured.stat_429143663", ["text"] = "Banner Skills have #% increased Area of Effect", ["type"] = "fractured", }, - [872] = { + { ["id"] = "fractured.stat_2720982137", ["text"] = "Banner Skills have #% increased Duration", ["type"] = "fractured", }, - [873] = { + { ["id"] = "fractured.stat_335885735", ["text"] = "Bears the Mark of the Abyssal Lord", ["type"] = "fractured", }, - [874] = { + { ["id"] = "fractured.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "fractured", }, - [875] = { + { ["id"] = "fractured.stat_1776411443", ["text"] = "Break #% increased Armour", ["type"] = "fractured", }, - [876] = { + { ["id"] = "fractured.stat_791928121", ["text"] = "Causes #% increased Stun Buildup", ["type"] = "fractured", }, - [877] = { + { ["id"] = "fractured.stat_234296660", ["text"] = "Companions deal #% increased Damage", ["type"] = "fractured", }, - [878] = { + { ["id"] = "fractured.stat_1805182458", ["text"] = "Companions have #% increased maximum Life", ["type"] = "fractured", }, - [879] = { + { ["id"] = "fractured.stat_3417711605", ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "fractured", }, - [880] = { + { ["id"] = "fractured.stat_2101383955", ["text"] = "Damage Penetrates #% Elemental Resistances", ["type"] = "fractured", }, - [881] = { + { ["id"] = "fractured.stat_2653955271", ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "fractured", }, - [882] = { + { ["id"] = "fractured.stat_818778753", ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "fractured", }, - [883] = { + { ["id"] = "fractured.stat_538241406", ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "fractured", }, - [884] = { + { ["id"] = "fractured.stat_3146310524", ["text"] = "Dazes on Hit", ["type"] = "fractured", }, - [885] = { + { ["id"] = "fractured.stat_1238227257", ["text"] = "Debuffs on you expire #% faster", ["type"] = "fractured", }, - [886] = { + { ["id"] = "fractured.stat_1569101201", ["text"] = "Empowered Attacks deal #% increased Damage", ["type"] = "fractured", }, - [887] = { + { ["id"] = "fractured.stat_2797971005", ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "fractured", }, - [888] = { + { ["id"] = "fractured.stat_3695891184", ["text"] = "Gain # Life per enemy killed", ["type"] = "fractured", }, - [889] = { + { ["id"] = "fractured.stat_1368271171", ["text"] = "Gain # Mana per enemy killed", ["type"] = "fractured", }, - [890] = { + { ["id"] = "fractured.stat_2709367754", ["text"] = "Gain # Rage on Melee Hit", ["type"] = "fractured", }, - [891] = { + { ["id"] = "fractured.stat_3292710273", ["text"] = "Gain # Rage when Hit by an Enemy", ["type"] = "fractured", }, - [892] = { + { ["id"] = "fractured.stat_3398787959", ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "fractured", }, - [893] = { + { ["id"] = "fractured.stat_2505884597", ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "fractured", }, - [894] = { + { ["id"] = "fractured.stat_825116955", ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", ["type"] = "fractured", }, - [895] = { + { ["id"] = "fractured.stat_3015669065", ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "fractured", }, - [896] = { + { ["id"] = "fractured.stat_3278136794", ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "fractured", }, - [897] = { + { ["id"] = "fractured.stat_4019237939", ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "fractured", }, - [898] = { + { ["id"] = "fractured.stat_1158842087", ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", ["type"] = "fractured", }, - [899] = { + { ["id"] = "fractured.stat_758893621", ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "fractured", }, - [900] = { + { ["id"] = "fractured.stat_3033371881", ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "fractured", }, - [901] = { + { ["id"] = "fractured.stat_3398301358", ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "fractured", }, - [902] = { + { ["id"] = "fractured.stat_416040624", ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "fractured", }, - [903] = { + { ["id"] = "fractured.stat_821021828", ["text"] = "Grants # Life per Enemy Hit", ["type"] = "fractured", }, - [904] = { + { ["id"] = "fractured.stat_1980802737", ["text"] = "Grenade Skills Fire an additional Projectile", ["type"] = "fractured", }, - [905] = { + { ["id"] = "fractured.stat_2250681686", ["text"] = "Grenade Skills have +# Cooldown Use", ["type"] = "fractured", }, - [906] = { + { ["id"] = "fractured.stat_21071013", ["text"] = "Herald Skills deal #% increased Damage", ["type"] = "fractured", }, - [907] = { + { ["id"] = "fractured.stat_3855016469", ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "fractured", }, - [908] = { + { ["id"] = "fractured.stat_2557965901", ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "fractured", }, - [909] = { + { ["id"] = "fractured.stat_707457662", ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "fractured", }, - [910] = { + { ["id"] = "fractured.stat_1570501432", ["text"] = "Leech Life #% faster", ["type"] = "fractured", }, - [911] = { + { ["id"] = "fractured.stat_55876295", ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "fractured", }, - [912] = { + { ["id"] = "fractured.stat_669069897", ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "fractured", }, - [913] = { + { ["id"] = "fractured.stat_1967051901", ["text"] = "Loads an additional bolt", ["type"] = "fractured", }, - [914] = { + { ["id"] = "fractured.stat_3873704640", ["text"] = "Map has #% increased Magic Monsters", ["type"] = "fractured", }, - [915] = { + { ["id"] = "fractured.stat_3793155082", ["text"] = "Map has #% increased number of Rare Monsters", ["type"] = "fractured", }, - [916] = { + { ["id"] = "fractured.stat_2594634307", ["text"] = "Mark Skills have #% increased Skill Effect Duration", ["type"] = "fractured", }, - [917] = { + { ["id"] = "fractured.stat_1714971114", ["text"] = "Mark Skills have #% increased Use Speed", ["type"] = "fractured", }, - [918] = { + { ["id"] = "fractured.stat_4236566306", ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "fractured", }, - [919] = { + { + ["id"] = "fractured.stat_195270549", + ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", + ["type"] = "fractured", + }, + { ["id"] = "fractured.stat_2639966148", ["text"] = "Minions Revive #% faster", ["type"] = "fractured", }, - [920] = { + { ["id"] = "fractured.stat_1589917703", ["text"] = "Minions deal #% increased Damage", ["type"] = "fractured", }, - [921] = { + { ["id"] = "fractured.stat_3742865955", ["text"] = "Minions deal #% increased Damage with Command Skills", ["type"] = "fractured", }, - [922] = { + { ["id"] = "fractured.stat_1797815732", ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", ["type"] = "fractured", }, - [923] = { + { ["id"] = "fractured.stat_3119612865", ["text"] = "Minions have #% additional Physical Damage Reduction", ["type"] = "fractured", }, - [924] = { + { ["id"] = "fractured.stat_3811191316", ["text"] = "Minions have #% increased Area of Effect", ["type"] = "fractured", }, - [925] = { + { ["id"] = "fractured.stat_3091578504", ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "fractured", }, - [926] = { + { ["id"] = "fractured.stat_1854213750", ["text"] = "Minions have #% increased Critical Damage Bonus", ["type"] = "fractured", }, - [927] = { + { ["id"] = "fractured.stat_491450213", ["text"] = "Minions have #% increased Critical Hit Chance", ["type"] = "fractured", }, - [928] = { + { ["id"] = "fractured.stat_1485480327", ["text"] = "Minions have #% increased Immobilisation buildup", ["type"] = "fractured", }, - [929] = { + { ["id"] = "fractured.stat_953593695", ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", ["type"] = "fractured", }, - [930] = { + { ["id"] = "fractured.stat_174664100", ["text"] = "Minions have #% increased Movement Speed", ["type"] = "fractured", }, - [931] = { + { ["id"] = "fractured.stat_770672621", ["text"] = "Minions have #% increased maximum Life", ["type"] = "fractured", }, - [932] = { + { ["id"] = "fractured.stat_3837707023", ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "fractured", }, - [933] = { + { ["id"] = "fractured.stat_1423639565", ["text"] = "Minions have #% to all Elemental Resistances", ["type"] = "fractured", }, - [934] = { + { ["id"] = "fractured.stat_3249412463", ["text"] = "Minions' Strikes have Melee Splash", ["type"] = "fractured", }, - [935] = { + { ["id"] = "fractured.stat_1898978455", ["text"] = "Monster Damage Penetrates #% Elemental Resistances", ["type"] = "fractured", }, - [936] = { + { ["id"] = "fractured.stat_1879340377", ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", ["type"] = "fractured", }, - [937] = { + { ["id"] = "fractured.stat_2539290279", ["text"] = "Monsters are Armoured", ["type"] = "fractured", }, - [938] = { + { ["id"] = "fractured.stat_2570249991", ["text"] = "Monsters are Evasive", ["type"] = "fractured", }, - [939] = { + { ["id"] = "fractured.stat_2200661314", ["text"] = "Monsters deal #% of Damage as Extra Chaos", ["type"] = "fractured", }, - [940] = { + { ["id"] = "fractured.stat_211727", ["text"] = "Monsters deal #% of Damage as Extra Cold", ["type"] = "fractured", }, - [941] = { + { ["id"] = "fractured.stat_92381065", ["text"] = "Monsters deal #% of Damage as Extra Fire", ["type"] = "fractured", }, - [942] = { + { ["id"] = "fractured.stat_512071314", ["text"] = "Monsters deal #% of Damage as Extra Lightning", ["type"] = "fractured", }, - [943] = { + { ["id"] = "fractured.stat_2887760183", ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", ["type"] = "fractured", }, - [944] = { + { ["id"] = "fractured.stat_57326096", ["text"] = "Monsters have #% Critical Damage Bonus", ["type"] = "fractured", }, - [945] = { + { ["id"] = "fractured.stat_95221307", ["text"] = "Monsters have #% chance to Poison on Hit", ["type"] = "fractured", }, - [946] = { + { ["id"] = "fractured.stat_2506820610", ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", ["type"] = "fractured", }, - [947] = { + { ["id"] = "fractured.stat_3222482040", ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", ["type"] = "fractured", }, - [948] = { + { ["id"] = "fractured.stat_1588049749", ["text"] = "Monsters have #% increased Accuracy Rating", ["type"] = "fractured", }, - [949] = { + { ["id"] = "fractured.stat_1994551050", ["text"] = "Monsters have #% increased Ailment Threshold", ["type"] = "fractured", }, - [950] = { + { ["id"] = "fractured.stat_2753083623", ["text"] = "Monsters have #% increased Critical Hit Chance", ["type"] = "fractured", }, - [951] = { + { ["id"] = "fractured.stat_3998863698", ["text"] = "Monsters have #% increased Freeze Buildup", ["type"] = "fractured", }, - [952] = { + { ["id"] = "fractured.stat_1984618452", ["text"] = "Monsters have #% increased Shock Chance", ["type"] = "fractured", }, - [953] = { + { ["id"] = "fractured.stat_115425161", ["text"] = "Monsters have #% increased Stun Buildup", ["type"] = "fractured", }, - [954] = { + { ["id"] = "fractured.stat_4101943684", ["text"] = "Monsters have #% increased Stun Threshold", ["type"] = "fractured", }, - [955] = { + { ["id"] = "fractured.stat_2508044078", ["text"] = "Monsters inflict #% increased Flammability Magnitude", ["type"] = "fractured", }, - [956] = { + { ["id"] = "fractured.stat_337935900", ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", ["type"] = "fractured", }, - [957] = { + { ["id"] = "fractured.stat_1846980580", ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "fractured", }, - [958] = { + { ["id"] = "fractured.stat_1800303440", ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", ["type"] = "fractured", }, - [959] = { + { ["id"] = "fractured.stat_4225700219", ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", ["type"] = "fractured", }, - [960] = { + { ["id"] = "fractured.stat_3394832998", ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", ["type"] = "fractured", }, - [961] = { + { ["id"] = "fractured.stat_3391917254", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "fractured", }, - [962] = { + { ["id"] = "fractured.stat_3859848445", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", ["type"] = "fractured", }, - [963] = { + { ["id"] = "fractured.stat_504915064", ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", ["type"] = "fractured", }, - [964] = { + { ["id"] = "fractured.stat_3429148113", ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "fractured", }, - [965] = { + { ["id"] = "fractured.stat_2822644689", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "fractured", }, - [966] = { + { ["id"] = "fractured.stat_3641543553", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", ["type"] = "fractured", }, - [967] = { + { ["id"] = "fractured.stat_715957346", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", ["type"] = "fractured", }, - [968] = { + { ["id"] = "fractured.stat_111835965", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", ["type"] = "fractured", }, - [969] = { + { ["id"] = "fractured.stat_1266413530", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", ["type"] = "fractured", }, - [970] = { + { ["id"] = "fractured.stat_1505023559", ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", ["type"] = "fractured", }, - [971] = { + { ["id"] = "fractured.stat_2912416697", ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", ["type"] = "fractured", }, - [972] = { + { ["id"] = "fractured.stat_3821543413", ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", ["type"] = "fractured", }, - [973] = { + { ["id"] = "fractured.stat_1022759479", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "fractured", }, - [974] = { + { ["id"] = "fractured.stat_2320654813", ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", ["type"] = "fractured", }, - [975] = { + { ["id"] = "fractured.stat_61644361", ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", ["type"] = "fractured", }, - [976] = { + { ["id"] = "fractured.stat_2149603090", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "fractured", }, - [977] = { + { ["id"] = "fractured.stat_2359002191", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", ["type"] = "fractured", }, - [978] = { + { ["id"] = "fractured.stat_1352561456", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "fractured", }, - [979] = { + { ["id"] = "fractured.stat_138421180", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", ["type"] = "fractured", }, - [980] = { + { ["id"] = "fractured.stat_2077117738", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", ["type"] = "fractured", }, - [981] = { + { ["id"] = "fractured.stat_3865605585", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "fractured", }, - [982] = { + { ["id"] = "fractured.stat_2704905000", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "fractured", }, - [983] = { + { ["id"] = "fractured.stat_2466785537", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "fractured", }, - [984] = { + { ["id"] = "fractured.stat_3856744003", ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", ["type"] = "fractured", }, - [985] = { + { ["id"] = "fractured.stat_2770044702", ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", ["type"] = "fractured", }, - [986] = { + { ["id"] = "fractured.stat_2272980012", ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", ["type"] = "fractured", }, - [987] = { + { ["id"] = "fractured.stat_1323216174", ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "fractured", }, - [988] = { + { ["id"] = "fractured.stat_179541474", ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", ["type"] = "fractured", }, - [989] = { + { ["id"] = "fractured.stat_3419203492", ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", ["type"] = "fractured", }, - [990] = { + { ["id"] = "fractured.stat_2066964205", ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", ["type"] = "fractured", }, - [991] = { + { ["id"] = "fractured.stat_1087531620", ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", ["type"] = "fractured", }, - [992] = { + { ["id"] = "fractured.stat_127081978", ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", ["type"] = "fractured", }, - [993] = { + { ["id"] = "fractured.stat_2907381231", ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", ["type"] = "fractured", }, - [994] = { + { ["id"] = "fractured.stat_253641217", ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", ["type"] = "fractured", }, - [995] = { + { ["id"] = "fractured.stat_2976476845", ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", ["type"] = "fractured", }, - [996] = { + { ["id"] = "fractured.stat_942519401", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", ["type"] = "fractured", }, - [997] = { + { ["id"] = "fractured.stat_1185341308", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "fractured", }, - [998] = { + { ["id"] = "fractured.stat_1321104829", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", ["type"] = "fractured", }, - [999] = { + { ["id"] = "fractured.stat_391602279", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", ["type"] = "fractured", }, - [1000] = { + { ["id"] = "fractured.stat_4092130601", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "fractured", }, - [1001] = { + { ["id"] = "fractured.stat_462424929", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", ["type"] = "fractured", }, - [1002] = { + { ["id"] = "fractured.stat_1166140625", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", ["type"] = "fractured", }, - [1003] = { + { ["id"] = "fractured.stat_3171212276", ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", ["type"] = "fractured", }, - [1004] = { + { ["id"] = "fractured.stat_844449513", ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "fractured", }, - [1005] = { + { ["id"] = "fractured.stat_1514844108", ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", ["type"] = "fractured", }, - [1006] = { + { ["id"] = "fractured.stat_1944020877", ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", ["type"] = "fractured", }, - [1007] = { + { ["id"] = "fractured.stat_221701169", ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", ["type"] = "fractured", }, - [1008] = { + { ["id"] = "fractured.stat_4032352472", ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", ["type"] = "fractured", }, - [1009] = { + { ["id"] = "fractured.stat_1777421941", ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", ["type"] = "fractured", }, - [1010] = { + { ["id"] = "fractured.stat_3113764475", ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", ["type"] = "fractured", }, - [1011] = { + { ["id"] = "fractured.stat_3579898587", ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", ["type"] = "fractured", }, - [1012] = { + { ["id"] = "fractured.stat_2580617872", ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", ["type"] = "fractured", }, - [1013] = { + { ["id"] = "fractured.stat_4173554949", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", ["type"] = "fractured", }, - [1014] = { + { ["id"] = "fractured.stat_2392824305", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", ["type"] = "fractured", }, - [1015] = { + { ["id"] = "fractured.stat_1495814176", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", ["type"] = "fractured", }, - [1016] = { + { ["id"] = "fractured.stat_2056107438", ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", ["type"] = "fractured", }, - [1017] = { + { ["id"] = "fractured.stat_3936121440", ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", ["type"] = "fractured", }, - [1018] = { + { ["id"] = "fractured.stat_4180952808", ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", ["type"] = "fractured", }, - [1019] = { + { ["id"] = "fractured.stat_412709880", ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", ["type"] = "fractured", }, - [1020] = { + { ["id"] = "fractured.stat_2709646369", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", ["type"] = "fractured", }, - [1021] = { + { ["id"] = "fractured.stat_3669820740", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", ["type"] = "fractured", }, - [1022] = { + { ["id"] = "fractured.stat_3386297724", ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", ["type"] = "fractured", }, - [1023] = { + { ["id"] = "fractured.stat_3243034867", ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", ["type"] = "fractured", }, - [1024] = { + { ["id"] = "fractured.stat_3173882956", ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", ["type"] = "fractured", }, - [1025] = { + { ["id"] = "fractured.stat_2256120736", ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", ["type"] = "fractured", }, - [1026] = { + { ["id"] = "fractured.stat_2969557004", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "fractured", }, - [1027] = { + { ["id"] = "fractured.stat_2131720304", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", ["type"] = "fractured", }, - [1028] = { + { ["id"] = "fractured.stat_2849546516", ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", ["type"] = "fractured", }, - [1029] = { + { ["id"] = "fractured.stat_2534359663", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", ["type"] = "fractured", }, - [1030] = { + { ["id"] = "fractured.stat_3106718406", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", ["type"] = "fractured", }, - [1031] = { + { ["id"] = "fractured.stat_593241812", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", ["type"] = "fractured", }, - [1032] = { + { ["id"] = "fractured.stat_3628935286", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", ["type"] = "fractured", }, - [1033] = { + { ["id"] = "fractured.stat_2374711847", ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", ["type"] = "fractured", }, - [1034] = { + { ["id"] = "fractured.stat_4258720395", ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "fractured", }, - [1035] = { + { ["id"] = "fractured.stat_2334956771", ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "fractured", }, - [1036] = { + { ["id"] = "fractured.stat_2726713579", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "fractured", }, - [1037] = { + { ["id"] = "fractured.stat_525523040", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "fractured", }, - [1038] = { + { ["id"] = "fractured.stat_2957407601", ["text"] = "Offering Skills have #% increased Duration", ["type"] = "fractured", }, - [1039] = { + { ["id"] = "fractured.stat_3787460122", ["text"] = "Offerings have #% increased Maximum Life", ["type"] = "fractured", }, - [1040] = { + { ["id"] = "fractured.stat_4215035940", ["text"] = "On Corruption, Item gains two Enchantments", ["type"] = "fractured", }, - [1041] = { + { ["id"] = "fractured.stat_554690751", ["text"] = "Players are periodically Cursed with Elemental Weakness", ["type"] = "fractured", }, - [1042] = { + { ["id"] = "fractured.stat_2029171424", ["text"] = "Players are periodically Cursed with Enfeeble", ["type"] = "fractured", }, - [1043] = { + { ["id"] = "fractured.stat_1629357380", ["text"] = "Players are periodically Cursed with Temporal Chains", ["type"] = "fractured", }, - [1044] = { + { ["id"] = "fractured.stat_2549889921", ["text"] = "Players gain #% reduced Flask Charges", ["type"] = "fractured", }, - [1045] = { + { ["id"] = "fractured.stat_4181072906", ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", ["type"] = "fractured", }, - [1046] = { + { ["id"] = "fractured.stat_941368244", ["text"] = "Players have #% more Cooldown Recovery Rate", ["type"] = "fractured", }, - [1047] = { + { ["id"] = "fractured.stat_3003542304", ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "fractured", }, - [1048] = { + { ["id"] = "fractured.stat_4081947835", ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "fractured", }, - [1049] = { + { ["id"] = "fractured.stat_2550456553", ["text"] = "Rare Monsters have # additional Modifier", ["type"] = "fractured", }, - [1050] = { + { ["id"] = "fractured.stat_2023107756", ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "fractured", }, - [1051] = { + { ["id"] = "fractured.stat_1604736568", ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "fractured", }, - [1052] = { + { ["id"] = "fractured.stat_3482326075", ["text"] = "Remnants can be collected from #% further away", ["type"] = "fractured", }, - [1053] = { + { ["id"] = "fractured.stat_2942439603", ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", ["type"] = "fractured", }, - [1054] = { + { ["id"] = "fractured.stat_2610562860", ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", ["type"] = "fractured", }, - [1055] = { + { ["id"] = "fractured.stat_2840989393", ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", ["type"] = "fractured", }, - [1056] = { + { ["id"] = "fractured.stat_944643028", ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", ["type"] = "fractured", }, - [1057] = { + { ["id"] = "fractured.stat_533892981", ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", ["type"] = "fractured", }, - [1058] = { + { ["id"] = "fractured.stat_1285594161", ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", ["type"] = "fractured", }, - [1059] = { + { ["id"] = "fractured.stat_3858398337", ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "fractured", }, - [1060] = { + { ["id"] = "fractured.stat_1426522529", ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "fractured", }, - [1061] = { + { ["id"] = "fractured.stat_1309799717", ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "fractured", }, - [1062] = { + { ["id"] = "fractured.stat_3088348485", ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", ["type"] = "fractured", }, - [1063] = { + { ["id"] = "fractured.stat_2442527254", ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "fractured", }, - [1064] = { + { ["id"] = "fractured.stat_1087108135", ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", ["type"] = "fractured", }, - [1065] = { + { ["id"] = "fractured.stat_1834658952", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", ["type"] = "fractured", }, - [1066] = { + { ["id"] = "fractured.stat_1892122971", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", ["type"] = "fractured", }, - [1067] = { + { ["id"] = "fractured.stat_266564538", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", ["type"] = "fractured", }, - [1068] = { + { ["id"] = "fractured.stat_3752589831", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", ["type"] = "fractured", }, - [1069] = { + { ["id"] = "fractured.stat_945774314", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", ["type"] = "fractured", }, - [1070] = { + { ["id"] = "fractured.stat_517664839", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", ["type"] = "fractured", }, - [1071] = { + { ["id"] = "fractured.stat_147764878", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "fractured", }, - [1072] = { + { ["id"] = "fractured.stat_1852184471", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", ["type"] = "fractured", }, - [1073] = { + { ["id"] = "fractured.stat_1590846356", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", ["type"] = "fractured", }, - [1074] = { + { ["id"] = "fractured.stat_821948283", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", ["type"] = "fractured", }, - [1075] = { + { ["id"] = "fractured.stat_2809428780", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", ["type"] = "fractured", }, - [1076] = { + { ["id"] = "fractured.stat_1160637284", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", ["type"] = "fractured", }, - [1077] = { + { ["id"] = "fractured.stat_3409275777", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", ["type"] = "fractured", }, - [1078] = { + { ["id"] = "fractured.stat_3222402650", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "fractured", }, - [1079] = { + { ["id"] = "fractured.stat_1552666713", ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", ["type"] = "fractured", }, - [1080] = { + { ["id"] = "fractured.stat_1994296038", ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "fractured", }, - [1081] = { + { ["id"] = "fractured.stat_139889694", ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "fractured", }, - [1082] = { + { ["id"] = "fractured.stat_394473632", ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", ["type"] = "fractured", }, - [1083] = { + { ["id"] = "fractured.stat_1773308808", ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", ["type"] = "fractured", }, - [1084] = { + { ["id"] = "fractured.stat_830345042", ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", ["type"] = "fractured", }, - [1085] = { + { ["id"] = "fractured.stat_1417267954", ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "fractured", }, - [1086] = { + { ["id"] = "fractured.stat_255840549", ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", ["type"] = "fractured", }, - [1087] = { + { ["id"] = "fractured.stat_980177976", ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", ["type"] = "fractured", }, - [1088] = { + { ["id"] = "fractured.stat_2768899959", ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "fractured", }, - [1089] = { + { ["id"] = "fractured.stat_3774951878", ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", ["type"] = "fractured", }, - [1090] = { + { ["id"] = "fractured.stat_3256879910", ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", ["type"] = "fractured", }, - [1091] = { + { ["id"] = "fractured.stat_1337740333", ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", ["type"] = "fractured", }, - [1092] = { + { ["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", }, - [1093] = { + { ["id"] = "fractured.stat_793875384", ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", ["type"] = "fractured", }, - [1094] = { + { ["id"] = "fractured.stat_1007380041", ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", ["type"] = "fractured", }, - [1095] = { + { ["id"] = "fractured.stat_455816363", ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", ["type"] = "fractured", }, - [1096] = { + { ["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", }, - [1097] = { + { ["id"] = "fractured.stat_3513818125", ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", ["type"] = "fractured", }, - [1098] = { + { ["id"] = "fractured.stat_1137305356", ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "fractured", }, - [1099] = { + { ["id"] = "fractured.stat_484792219", ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", ["type"] = "fractured", }, - [1100] = { + { ["id"] = "fractured.stat_654207792", ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "fractured", }, - [1101] = { + { ["id"] = "fractured.stat_1320662475", ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", ["type"] = "fractured", }, - [1102] = { + { ["id"] = "fractured.stat_2108821127", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", ["type"] = "fractured", }, - [1103] = { + { ["id"] = "fractured.stat_442393998", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", ["type"] = "fractured", }, - [1104] = { + { ["id"] = "fractured.stat_1145481685", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", ["type"] = "fractured", }, - [1105] = { + { ["id"] = "fractured.stat_1602294220", ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", ["type"] = "fractured", }, - [1106] = { + { ["id"] = "fractured.stat_1129429646", ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", ["type"] = "fractured", }, - [1107] = { + { ["id"] = "fractured.stat_3666476747", ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", ["type"] = "fractured", }, - [1108] = { + { ["id"] = "fractured.stat_3700202631", ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", ["type"] = "fractured", }, - [1109] = { + { ["id"] = "fractured.stat_1039268420", ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", ["type"] = "fractured", }, - [1110] = { + { ["id"] = "fractured.stat_3665922113", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "fractured", }, - [1111] = { + { ["id"] = "fractured.stat_318092306", ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", ["type"] = "fractured", }, - [1112] = { + { ["id"] = "fractured.stat_4142814612", ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", ["type"] = "fractured", }, - [1113] = { + { ["id"] = "fractured.stat_2690740379", ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", ["type"] = "fractured", }, - [1114] = { + { ["id"] = "fractured.stat_4089835882", ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", ["type"] = "fractured", }, - [1115] = { + { ["id"] = "fractured.stat_1494950893", ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", ["type"] = "fractured", }, - [1116] = { + { ["id"] = "fractured.stat_2638756573", ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", ["type"] = "fractured", }, - [1117] = { + { ["id"] = "fractured.stat_1896066427", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", ["type"] = "fractured", }, - [1118] = { + { ["id"] = "fractured.stat_1432756708", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", ["type"] = "fractured", }, - [1119] = { + { ["id"] = "fractured.stat_868556494", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", ["type"] = "fractured", }, - [1120] = { + { ["id"] = "fractured.stat_4258000627", ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", ["type"] = "fractured", }, - [1121] = { + { ["id"] = "fractured.stat_3395186672", ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", ["type"] = "fractured", }, - [1122] = { + { ["id"] = "fractured.stat_693237939", ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "fractured", }, - [1123] = { + { ["id"] = "fractured.stat_1653682082", ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "fractured", }, - [1124] = { + { ["id"] = "fractured.stat_3065378291", ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", ["type"] = "fractured", }, - [1125] = { + { ["id"] = "fractured.stat_4162678661", ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", ["type"] = "fractured", }, - [1126] = { + { ["id"] = "fractured.stat_2202308025", ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", ["type"] = "fractured", }, - [1127] = { + { ["id"] = "fractured.stat_2954360902", ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", ["type"] = "fractured", }, - [1128] = { + { ["id"] = "fractured.stat_30438393", ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", ["type"] = "fractured", }, - [1129] = { + { ["id"] = "fractured.stat_378796798", ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", ["type"] = "fractured", }, - [1130] = { + { ["id"] = "fractured.stat_1756380435", ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "fractured", }, - [1131] = { + { ["id"] = "fractured.stat_3225608889", ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", ["type"] = "fractured", }, - [1132] = { + { ["id"] = "fractured.stat_2107703111", ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", ["type"] = "fractured", }, - [1133] = { + { ["id"] = "fractured.stat_473917671", ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", ["type"] = "fractured", }, - [1134] = { + { ["id"] = "fractured.stat_1967040409", ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "fractured", }, - [1135] = { + { ["id"] = "fractured.stat_555706343", ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", ["type"] = "fractured", }, - [1136] = { + { ["id"] = "fractured.stat_1493485657", ["text"] = "Spells have #% increased Cooldown Recovery Rate", ["type"] = "fractured", }, - [1137] = { + { + ["id"] = "fractured.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["type"] = "fractured", + }, + { ["id"] = "fractured.stat_3067892458", ["text"] = "Triggered Spells deal #% increased Spell Damage", ["type"] = "fractured", }, - [1138] = { + { ["id"] = "fractured.stat_3891355829|2", ["text"] = "Upgrades Radius to Large", ["type"] = "fractured", }, - [1139] = { + { ["id"] = "fractured.stat_3891355829|1", ["text"] = "Upgrades Radius to Medium", ["type"] = "fractured", }, - [1140] = { + { ["id"] = "fractured.stat_3891355829|3", ["text"] = "Upgrades Radius to Very Large", ["type"] = "fractured", @@ -22042,3634 +22197,4559 @@ return { ["id"] = "fractured", ["label"] = "Fractured", }, - [5] = { + { ["entries"] = { - [1] = { + { ["id"] = "crafted.stat_3182714256", ["text"] = "# Prefix Modifier allowed", ["type"] = "crafted", }, - [2] = { + { ["id"] = "crafted.stat_718638445", ["text"] = "# Suffix Modifier allowed", ["type"] = "crafted", }, - [3] = { + { ["id"] = "crafted.stat_2881298780", ["text"] = "# to # Physical Thorns damage", ["type"] = "crafted", }, - [4] = { + { ["id"] = "crafted.stat_803737631", ["text"] = "# to Accuracy Rating", ["type"] = "crafted", }, - [5] = { + { ["id"] = "crafted.stat_691932474", ["text"] = "# to Accuracy Rating (Local)", ["type"] = "crafted", }, - [6] = { + { ["id"] = "crafted.stat_3261801346", ["text"] = "# to Dexterity", ["type"] = "crafted", }, - [7] = { + { ["id"] = "crafted.stat_328541901", ["text"] = "# to Intelligence", ["type"] = "crafted", }, - [8] = { + { ["id"] = "crafted.stat_3035140377", ["text"] = "# to Level of all Attack Skills", ["type"] = "crafted", }, - [9] = { + { ["id"] = "crafted.stat_2162097452", ["text"] = "# to Level of all Minion Skills", ["type"] = "crafted", }, - [10] = { + { ["id"] = "crafted.stat_124131830", ["text"] = "# to Level of all Spell Skills", ["type"] = "crafted", }, - [11] = { + { ["id"] = "crafted.stat_1713927892", ["text"] = "# to Limit for Elemental Skills", ["type"] = "crafted", }, - [12] = { + { ["id"] = "crafted.stat_1181501418", ["text"] = "# to Maximum Rage", ["type"] = "crafted", }, - [13] = { + { ["id"] = "crafted.stat_3981240776", ["text"] = "# to Spirit", ["type"] = "crafted", }, - [14] = { + { ["id"] = "crafted.stat_4080418644", ["text"] = "# to Strength", ["type"] = "crafted", }, - [15] = { + { ["id"] = "crafted.stat_915769802", ["text"] = "# to Stun Threshold", ["type"] = "crafted", }, - [16] = { + { ["id"] = "crafted.stat_350598685", ["text"] = "# to Weapon Range", ["type"] = "crafted", }, - [17] = { + { ["id"] = "crafted.stat_2897413282", ["text"] = "# to all Attributes", ["type"] = "crafted", }, - [18] = { + { ["id"] = "crafted.stat_3299347043", ["text"] = "# to maximum Life", ["type"] = "crafted", }, - [19] = { + { ["id"] = "crafted.stat_1050105434", ["text"] = "# to maximum Mana", ["type"] = "crafted", }, - [20] = { + { ["id"] = "crafted.stat_3336230913", ["text"] = "# to maximum Runic Ward", ["type"] = "crafted", }, - [21] = { + { ["id"] = "crafted.stat_4097212302", ["text"] = "# to maximum number of Elemental Infusions", ["type"] = "crafted", }, - [22] = { + { ["id"] = "crafted.stat_1823942939", ["text"] = "# to maximum number of Summoned Ballista Totems", ["type"] = "crafted", }, - [23] = { + { ["id"] = "crafted.stat_2840930496", ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", ["type"] = "crafted", }, - [24] = { + { ["id"] = "crafted.stat_2749595652", ["text"] = "#% chance for Skills to retain 40% of Glory on use", ["type"] = "crafted", }, - [25] = { + { ["id"] = "crafted.stat_1028592286", ["text"] = "#% chance to Chain an additional time", ["type"] = "crafted", }, - [26] = { + { ["id"] = "crafted.stat_3518449420", ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", ["type"] = "crafted", }, - [27] = { + { ["id"] = "crafted.stat_1881230714", ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", ["type"] = "crafted", }, - [28] = { + { ["id"] = "crafted.stat_2158617060", ["text"] = "#% increased Archon Buff duration", ["type"] = "crafted", }, - [29] = { + { ["id"] = "crafted.stat_280731498", ["text"] = "#% increased Area of Effect", ["type"] = "crafted", }, - [30] = { + { ["id"] = "crafted.stat_1840985759", ["text"] = "#% increased Area of Effect for Attacks", ["type"] = "crafted", }, - [31] = { + { ["id"] = "crafted.stat_2866361420", ["text"] = "#% increased Armour", ["type"] = "crafted", }, - [32] = { + { ["id"] = "crafted.stat_1062208444", ["text"] = "#% increased Armour (Local)", ["type"] = "crafted", }, - [33] = { + { ["id"] = "crafted.stat_3321629045", ["text"] = "#% increased Armour and Energy Shield", ["type"] = "crafted", }, - [34] = { + { ["id"] = "crafted.stat_2451402625", ["text"] = "#% increased Armour and Evasion", ["type"] = "crafted", }, - [35] = { + { ["id"] = "crafted.stat_2843214518", ["text"] = "#% increased Attack Damage", ["type"] = "crafted", }, - [36] = { + { ["id"] = "crafted.stat_681332047", ["text"] = "#% increased Attack Speed", ["type"] = "crafted", }, - [37] = { + { ["id"] = "crafted.stat_210067635", ["text"] = "#% increased Attack Speed (Local)", ["type"] = "crafted", }, - [38] = { + { ["id"] = "crafted.stat_325171970", ["text"] = "#% increased Attack Speed while missing Runic Ward", ["type"] = "crafted", }, - [39] = { + { ["id"] = "crafted.stat_2481353198", ["text"] = "#% increased Block chance (Local)", ["type"] = "crafted", }, - [40] = { + { ["id"] = "crafted.stat_2891184298", ["text"] = "#% increased Cast Speed", ["type"] = "crafted", }, - [41] = { + { ["id"] = "crafted.stat_736967255", ["text"] = "#% increased Chaos Damage", ["type"] = "crafted", }, - [42] = { + { ["id"] = "crafted.stat_3291658075", ["text"] = "#% increased Cold Damage", ["type"] = "crafted", }, - [43] = { + { ["id"] = "crafted.stat_1002535626", ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", ["type"] = "crafted", }, - [44] = { + { ["id"] = "crafted.stat_1004011302", ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "crafted", }, - [45] = { + { ["id"] = "crafted.stat_3556824919", ["text"] = "#% increased Critical Damage Bonus", ["type"] = "crafted", }, - [46] = { + { ["id"] = "crafted.stat_3714003708", ["text"] = "#% increased Critical Damage Bonus for Attack Damage", ["type"] = "crafted", }, - [47] = { + { ["id"] = "crafted.stat_2194114101", ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "crafted", }, - [48] = { + { ["id"] = "crafted.stat_737908626", ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "crafted", }, - [49] = { + { ["id"] = "crafted.stat_274716455", ["text"] = "#% increased Critical Spell Damage Bonus", ["type"] = "crafted", }, - [50] = { + { ["id"] = "crafted.stat_1241625305", ["text"] = "#% increased Damage with Bow Skills", ["type"] = "crafted", }, - [51] = { + { ["id"] = "crafted.stat_4139681126", ["text"] = "#% increased Dexterity", ["type"] = "crafted", }, - [52] = { + { ["id"] = "crafted.stat_1829102168", ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "crafted", }, - [53] = { + { ["id"] = "crafted.stat_1443502073", ["text"] = "#% increased Effect of Prefixes", ["type"] = "crafted", }, - [54] = { + { ["id"] = "crafted.stat_2475221757", ["text"] = "#% increased Effect of Suffixes", ["type"] = "crafted", }, - [55] = { + { ["id"] = "crafted.stat_712554801", ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "crafted", }, - [56] = { + { ["id"] = "crafted.stat_3141070085", ["text"] = "#% increased Elemental Damage", ["type"] = "crafted", }, - [57] = { + { ["id"] = "crafted.stat_4015621042", ["text"] = "#% increased Energy Shield", ["type"] = "crafted", }, - [58] = { + { ["id"] = "crafted.stat_2339757871", ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "crafted", }, - [59] = { + { ["id"] = "crafted.stat_2106365538", ["text"] = "#% increased Evasion Rating", ["type"] = "crafted", }, - [60] = { + { ["id"] = "crafted.stat_124859000", ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "crafted", }, - [61] = { + { ["id"] = "crafted.stat_1999113824", ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "crafted", }, - [62] = { + { ["id"] = "crafted.stat_1972391381", ["text"] = "#% increased Explicit Resistance Modifier magnitudes", ["type"] = "crafted", }, - [63] = { + { ["id"] = "crafted.stat_2074866941", ["text"] = "#% increased Exposure Effect", ["type"] = "crafted", }, - [64] = { + { ["id"] = "crafted.stat_3962278098", ["text"] = "#% increased Fire Damage", ["type"] = "crafted", }, - [65] = { + { ["id"] = "crafted.stat_3858572996", ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", ["type"] = "crafted", }, - [66] = { + { ["id"] = "crafted.stat_1177404658", ["text"] = "#% increased Global Armour, Evasion and Energy Shield", ["type"] = "crafted", }, - [67] = { + { ["id"] = "crafted.stat_1310194496", ["text"] = "#% increased Global Physical Damage", ["type"] = "crafted", }, - [68] = { + { ["id"] = "crafted.stat_656461285", ["text"] = "#% increased Intelligence", ["type"] = "crafted", }, - [69] = { + { ["id"] = "crafted.stat_44972811", ["text"] = "#% increased Life Regeneration rate", ["type"] = "crafted", }, - [70] = { + { ["id"] = "crafted.stat_2231156303", ["text"] = "#% increased Lightning Damage", ["type"] = "crafted", }, - [71] = { + { ["id"] = "crafted.stat_797289402", ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", ["type"] = "crafted", }, - [72] = { + { ["id"] = "crafted.stat_1303248024", ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "crafted", }, - [73] = { + { ["id"] = "crafted.stat_3621874554", ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", ["type"] = "crafted", }, - [74] = { + { ["id"] = "crafted.stat_4259875040", ["text"] = "#% increased Magnitude of Impales inflicted with Spells", ["type"] = "crafted", }, - [75] = { + { ["id"] = "crafted.stat_4101445926", ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "crafted", }, - [76] = { + { ["id"] = "crafted.stat_789117908", ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "crafted", }, - [77] = { + { ["id"] = "crafted.stat_3526763442", ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", ["type"] = "crafted", }, - [78] = { + { ["id"] = "crafted.stat_999511066", ["text"] = "#% increased Minion Duration", ["type"] = "crafted", }, - [79] = { + { ["id"] = "crafted.stat_2250533757", ["text"] = "#% increased Movement Speed", ["type"] = "crafted", }, - [80] = { + { ["id"] = "crafted.stat_1509134228", ["text"] = "#% increased Physical Damage", ["type"] = "crafted", }, - [81] = { + { ["id"] = "crafted.stat_101878827", ["text"] = "#% increased Presence Area of Effect", ["type"] = "crafted", }, - [82] = { + { ["id"] = "crafted.stat_3175163625", ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "crafted", }, - [83] = { + { ["id"] = "crafted.stat_3917489142", ["text"] = "#% increased Rarity of Items found", ["type"] = "crafted", }, - [84] = { + { ["id"] = "crafted.stat_1805633363", ["text"] = "#% increased Reservation Efficiency of Minion Skills", ["type"] = "crafted", }, - [85] = { + { ["id"] = "crafted.stat_830161081", ["text"] = "#% increased Runic Ward", ["type"] = "crafted", }, - [86] = { + { ["id"] = "crafted.stat_2392260628", ["text"] = "#% increased Runic Ward Regeneration Rate", ["type"] = "crafted", }, - [87] = { + { ["id"] = "crafted.stat_3377888098", ["text"] = "#% increased Skill Effect Duration", ["type"] = "crafted", }, - [88] = { + { ["id"] = "crafted.stat_924253255", ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "crafted", }, - [89] = { + { ["id"] = "crafted.stat_2974417149", ["text"] = "#% increased Spell Damage", ["type"] = "crafted", }, - [90] = { + { ["id"] = "crafted.stat_734614379", ["text"] = "#% increased Strength", ["type"] = "crafted", }, - [91] = { + { ["id"] = "crafted.stat_1316278494", ["text"] = "#% increased Warcry Speed", ["type"] = "crafted", }, - [92] = { + { ["id"] = "crafted.stat_1180552088", ["text"] = "#% increased effect of Archon Buffs on you", ["type"] = "crafted", }, - [93] = { + { ["id"] = "crafted.stat_2081918629", ["text"] = "#% increased effect of Socketed Augment Items", ["type"] = "crafted", }, - [94] = { + { ["id"] = "crafted.stat_2482852589", ["text"] = "#% increased maximum Energy Shield", ["type"] = "crafted", }, - [95] = { + { ["id"] = "crafted.stat_983749596", ["text"] = "#% increased maximum Life", ["type"] = "crafted", }, - [96] = { + { ["id"] = "crafted.stat_2748665614", ["text"] = "#% increased maximum Mana", ["type"] = "crafted", }, - [97] = { + { ["id"] = "crafted.stat_4273473110", ["text"] = "#% increased maximum Runic Ward", ["type"] = "crafted", }, - [98] = { + { ["id"] = "crafted.stat_3679418014", ["text"] = "#% of Cold Damage taken Recouped as Life", ["type"] = "crafted", }, - [99] = { + { ["id"] = "crafted.stat_54812069", ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", ["type"] = "crafted", }, - [100] = { + { ["id"] = "crafted.stat_458438597", ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "crafted", }, - [101] = { + { ["id"] = "crafted.stat_1444556985", ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "crafted", }, - [102] = { + { ["id"] = "crafted.stat_1742651309", ["text"] = "#% of Fire Damage taken Recouped as Life", ["type"] = "crafted", }, - [103] = { + { ["id"] = "crafted.stat_2970621759", ["text"] = "#% of Lightning Damage taken Recouped as Life", ["type"] = "crafted", }, - [104] = { + { ["id"] = "crafted.stat_4129825612", ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "crafted", }, - [105] = { + { ["id"] = "crafted.stat_2480498143", ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "crafted", }, - [106] = { + { ["id"] = "crafted.stat_2923486259", ["text"] = "#% to Chaos Resistance", ["type"] = "crafted", }, - [107] = { + { ["id"] = "crafted.stat_4220027924", ["text"] = "#% to Cold Resistance", ["type"] = "crafted", }, - [108] = { + { ["id"] = "crafted.stat_518292764", ["text"] = "#% to Critical Hit Chance", ["type"] = "crafted", }, - [109] = { + { ["id"] = "crafted.stat_3372524247", ["text"] = "#% to Fire Resistance", ["type"] = "crafted", }, - [110] = { + { ["id"] = "crafted.stat_3399401168", ["text"] = "#% to Fire Spell Critical Hit Chance", ["type"] = "crafted", }, - [111] = { + { ["id"] = "crafted.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "crafted", }, - [112] = { + { + ["id"] = "crafted.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_4095671657", ["text"] = "#% to Maximum Fire Resistance", ["type"] = "crafted", }, - [113] = { + { ["id"] = "crafted.stat_2039822488", ["text"] = "#% to Maximum Quality", ["type"] = "crafted", }, - [114] = { + { ["id"] = "crafted.stat_933355817", ["text"] = "#% to gain Archon of Undeath when you create an Offering", ["type"] = "crafted", }, - [115] = { + { ["id"] = "crafted.stat_1484026495", ["text"] = "+# maximum stacks of Puppet Master", ["type"] = "crafted", }, - [116] = { + { ["id"] = "crafted.stat_2223678961", ["text"] = "Adds # to # Chaos damage", ["type"] = "crafted", }, - [117] = { + { ["id"] = "crafted.stat_1037193709", ["text"] = "Adds # to # Cold Damage", ["type"] = "crafted", }, - [118] = { + { ["id"] = "crafted.stat_709508406", ["text"] = "Adds # to # Fire Damage", ["type"] = "crafted", }, - [119] = { + { ["id"] = "crafted.stat_3336890334", ["text"] = "Adds # to # Lightning Damage", ["type"] = "crafted", }, - [120] = { + { ["id"] = "crafted.stat_1940865751", ["text"] = "Adds # to # Physical Damage", ["type"] = "crafted", }, - [121] = { + { ["id"] = "crafted.stat_1798257884", ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "crafted", }, - [122] = { + { ["id"] = "crafted.stat_2954116742|7338", ["text"] = "Allocates Abasement", ["type"] = "crafted", }, - [123] = { + { ["id"] = "crafted.stat_2954116742|43082", ["text"] = "Allocates Acceleration", ["type"] = "crafted", }, - [124] = { + { ["id"] = "crafted.stat_2954116742|12822", ["text"] = "Allocates Adaptable Assault", ["type"] = "crafted", }, - [125] = { + { + ["id"] = "crafted.stat_2954116742|35876", + ["text"] = "Allocates Admonisher", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|17340", ["text"] = "Allocates Adrenaline Rush", ["type"] = "crafted", }, - [126] = { + { ["id"] = "crafted.stat_2954116742|43829", ["text"] = "Allocates Advanced Munitions", ["type"] = "crafted", }, - [127] = { + { ["id"] = "crafted.stat_2954116742|4295", ["text"] = "Allocates Adverse Growth", ["type"] = "crafted", }, - [128] = { + { + ["id"] = "crafted.stat_2954116742|4716", + ["text"] = "Allocates Afterimage", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|50253", ["text"] = "Allocates Aftershocks", ["type"] = "crafted", }, - [129] = { + { ["id"] = "crafted.stat_2954116742|59938", ["text"] = "Allocates Against the Elements", ["type"] = "crafted", }, - [130] = { + { + ["id"] = "crafted.stat_2954116742|8896", + ["text"] = "Allocates Agile Sprinter", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|56493", ["text"] = "Allocates Agile Succession", ["type"] = "crafted", }, - [131] = { + { + ["id"] = "crafted.stat_2954116742|55817", + ["text"] = "Allocates Alchemical Oil", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|43854", + ["text"] = "Allocates All For One", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|58016", ["text"] = "Allocates All Natural", ["type"] = "crafted", }, - [132] = { + { ["id"] = "crafted.stat_2954116742|48974", ["text"] = "Allocates Altered Brain Chemistry", ["type"] = "crafted", }, - [133] = { + { ["id"] = "crafted.stat_2954116742|23764", ["text"] = "Allocates Alternating Current", ["type"] = "crafted", }, - [134] = { + { ["id"] = "crafted.stat_2954116742|20558", ["text"] = "Allocates Among the Hordes", ["type"] = "crafted", }, - [135] = { + { ["id"] = "crafted.stat_2954116742|26339", ["text"] = "Allocates Ancestral Artifice", ["type"] = "crafted", }, - [136] = { + { ["id"] = "crafted.stat_2954116742|51820", ["text"] = "Allocates Ancestral Conduits", ["type"] = "crafted", }, - [137] = { + { ["id"] = "crafted.stat_2954116742|18419", ["text"] = "Allocates Ancestral Mending", ["type"] = "crafted", }, - [138] = { + { ["id"] = "crafted.stat_2954116742|62609", ["text"] = "Allocates Ancestral Unity", ["type"] = "crafted", }, - [139] = { + { ["id"] = "crafted.stat_2954116742|5728", ["text"] = "Allocates Ancient Aegis", ["type"] = "crafted", }, - [140] = { + { ["id"] = "crafted.stat_2954116742|62431", ["text"] = "Allocates Anticipation", ["type"] = "crafted", }, - [141] = { + { ["id"] = "crafted.stat_2954116742|38398", ["text"] = "Allocates Apocalypse", ["type"] = "crafted", }, - [142] = { + { + ["id"] = "crafted.stat_2954116742|46224", + ["text"] = "Allocates Arcane Alchemy", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|14324", ["text"] = "Allocates Arcane Blossom", ["type"] = "crafted", }, - [143] = { + { ["id"] = "crafted.stat_2954116742|19044", ["text"] = "Allocates Arcane Intensity", ["type"] = "crafted", }, - [144] = { + { + ["id"] = "crafted.stat_2954116742|46972", + ["text"] = "Allocates Arcane Mixtures", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|16940", ["text"] = "Allocates Arcane Nature", ["type"] = "crafted", }, - [145] = { + { ["id"] = "crafted.stat_2954116742|26926", ["text"] = "Allocates Archon of Undeath", ["type"] = "crafted", }, - [146] = { + { ["id"] = "crafted.stat_2954116742|42045", ["text"] = "Allocates Archon of the Blizzard", ["type"] = "crafted", }, - [147] = { + { ["id"] = "crafted.stat_2954116742|27434", ["text"] = "Allocates Archon of the Storm", ["type"] = "crafted", }, - [148] = { + { + ["id"] = "crafted.stat_2954116742|12245", + ["text"] = "Allocates Arsonist", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|58817", ["text"] = "Allocates Artillery Strike", ["type"] = "crafted", }, - [149] = { + { ["id"] = "crafted.stat_2954116742|12661", ["text"] = "Allocates Asceticism", ["type"] = "crafted", }, - [150] = { + { ["id"] = "crafted.stat_2954116742|27388", ["text"] = "Allocates Aspiring Genius", ["type"] = "crafted", }, - [151] = { + { ["id"] = "crafted.stat_2954116742|35560", ["text"] = "Allocates At your Command", ["type"] = "crafted", }, - [152] = { + { + ["id"] = "crafted.stat_2954116742|17696", + ["text"] = "Allocates Augmented Flesh", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|20397", + ["text"] = "Allocates Authority", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|50673", ["text"] = "Allocates Avoiding Deflection", ["type"] = "crafted", }, - [153] = { + { ["id"] = "crafted.stat_2954116742|33059", ["text"] = "Allocates Back in Action", ["type"] = "crafted", }, - [154] = { + { ["id"] = "crafted.stat_2954116742|53853", ["text"] = "Allocates Backup Plan", ["type"] = "crafted", }, - [155] = { + { + ["id"] = "crafted.stat_2954116742|62455", + ["text"] = "Allocates Bannerman", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|50562", ["text"] = "Allocates Barbaric Strength", ["type"] = "crafted", }, - [156] = { + { ["id"] = "crafted.stat_2954116742|50062", ["text"] = "Allocates Barrier of Venarius", ["type"] = "crafted", }, - [157] = { + { + ["id"] = "crafted.stat_2954116742|8916", + ["text"] = "Allocates Bashing Beast", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|37846", ["text"] = "Allocates Bastion of Light", ["type"] = "crafted", }, - [158] = { + { ["id"] = "crafted.stat_2954116742|64240", ["text"] = "Allocates Battle Fever", ["type"] = "crafted", }, - [159] = { + { ["id"] = "crafted.stat_2954116742|37276", ["text"] = "Allocates Battle Trance", ["type"] = "crafted", }, - [160] = { + { ["id"] = "crafted.stat_2954116742|41620", ["text"] = "Allocates Bear's Roar", ["type"] = "crafted", }, - [161] = { + { + ["id"] = "crafted.stat_2954116742|59720", + ["text"] = "Allocates Beastial Skin", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|25482", ["text"] = "Allocates Beef", ["type"] = "crafted", }, - [162] = { + { + ["id"] = "crafted.stat_2954116742|5642", + ["text"] = "Allocates Behemoth", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|10873", ["text"] = "Allocates Bestial Rage", ["type"] = "crafted", }, - [163] = { + { ["id"] = "crafted.stat_2954116742|15825", ["text"] = "Allocates Bhatair's Storm", ["type"] = "crafted", }, - [164] = { + { + ["id"] = "crafted.stat_2954116742|17029", + ["text"] = "Allocates Blade Catcher", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|25753", ["text"] = "Allocates Blazing Arms", ["type"] = "crafted", }, - [165] = { + { ["id"] = "crafted.stat_2954116742|42354", ["text"] = "Allocates Blinding Flash", ["type"] = "crafted", }, - [166] = { + { + ["id"] = "crafted.stat_2954116742|20916", + ["text"] = "Allocates Blinding Strike", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|39083", ["text"] = "Allocates Blood Rush", ["type"] = "crafted", }, - [167] = { + { ["id"] = "crafted.stat_2954116742|48524", ["text"] = "Allocates Blood Transfusion", ["type"] = "crafted", }, - [168] = { + { ["id"] = "crafted.stat_2954116742|54990", ["text"] = "Allocates Bloodletting", ["type"] = "crafted", }, - [169] = { + { ["id"] = "crafted.stat_2954116742|42177", ["text"] = "Allocates Blurred Motion", ["type"] = "crafted", }, - [170] = { + { + ["id"] = "crafted.stat_2954116742|26070", + ["text"] = "Allocates Bolstering Yell", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|712", ["text"] = "Allocates Bond of the Ape", ["type"] = "crafted", }, - [171] = { + { ["id"] = "crafted.stat_2954116742|52568", ["text"] = "Allocates Bond of the Owl", ["type"] = "crafted", }, - [172] = { + { ["id"] = "crafted.stat_2954116742|34478", ["text"] = "Allocates Bond of the Viper", ["type"] = "crafted", }, - [173] = { + { + ["id"] = "crafted.stat_2954116742|17725", + ["text"] = "Allocates Bonded Precision", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|52618", ["text"] = "Allocates Boon of the Beast", ["type"] = "crafted", }, - [174] = { + { ["id"] = "crafted.stat_2954116742|15114", ["text"] = "Allocates Boundless Growth", ["type"] = "crafted", }, - [175] = { + { + ["id"] = "crafted.stat_2954116742|23244", + ["text"] = "Allocates Bounty Hunter", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|24721", ["text"] = "Allocates Brain Freeze", ["type"] = "crafted", }, - [176] = { + { + ["id"] = "crafted.stat_2954116742|50498", + ["text"] = "Allocates Brain Storm", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|21453", ["text"] = "Allocates Breakage", ["type"] = "crafted", }, - [177] = { + { + ["id"] = "crafted.stat_2954116742|39347", + ["text"] = "Allocates Breaking Blows", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|7777", ["text"] = "Allocates Breaking Point", ["type"] = "crafted", }, - [178] = { + { ["id"] = "crafted.stat_2954116742|24655", ["text"] = "Allocates Breath of Fire", ["type"] = "crafted", }, - [179] = { + { ["id"] = "crafted.stat_2954116742|61338", ["text"] = "Allocates Breath of Lightning", ["type"] = "crafted", }, - [180] = { + { ["id"] = "crafted.stat_2954116742|9535", ["text"] = "Allocates Brinerot Ferocity", ["type"] = "crafted", }, - [181] = { + { ["id"] = "crafted.stat_2954116742|48565", ["text"] = "Allocates Bringer of Order", ["type"] = "crafted", }, - [182] = { + { ["id"] = "crafted.stat_2954116742|53935", ["text"] = "Allocates Briny Carapace", ["type"] = "crafted", }, - [183] = { + { + ["id"] = "crafted.stat_2954116742|63541", + ["text"] = "Allocates Brush Off", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|50392", ["text"] = "Allocates Brute Strength", ["type"] = "crafted", }, - [184] = { + { + ["id"] = "crafted.stat_2954116742|15986", + ["text"] = "Allocates Building Toxins", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|53294", + ["text"] = "Allocates Burn Away", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|35324", ["text"] = "Allocates Burnout", ["type"] = "crafted", }, - [185] = { + { + ["id"] = "crafted.stat_2954116742|6514", + ["text"] = "Allocates Cacophony", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|50795", ["text"] = "Allocates Careful Aim", ["type"] = "crafted", }, - [186] = { + { + ["id"] = "crafted.stat_2954116742|46197", + ["text"] = "Allocates Careful Assassin", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|17955", ["text"] = "Allocates Careful Consideration", ["type"] = "crafted", }, - [187] = { + { ["id"] = "crafted.stat_2954116742|52348", ["text"] = "Allocates Carved Earth", ["type"] = "crafted", }, - [188] = { + { ["id"] = "crafted.stat_2954116742|44005", ["text"] = "Allocates Casting Cascade", ["type"] = "crafted", }, - [189] = { + { ["id"] = "crafted.stat_2954116742|9472", ["text"] = "Allocates Catapult", ["type"] = "crafted", }, - [190] = { + { ["id"] = "crafted.stat_2954116742|63400", ["text"] = "Allocates Chakra of Elements", ["type"] = "crafted", }, - [191] = { + { ["id"] = "crafted.stat_2954116742|35031", ["text"] = "Allocates Chakra of Life", ["type"] = "crafted", }, - [192] = { + { ["id"] = "crafted.stat_2954116742|28963", ["text"] = "Allocates Chakra of Rhythm", ["type"] = "crafted", }, - [193] = { + { + ["id"] = "crafted.stat_2954116742|42347", + ["text"] = "Allocates Chakra of Sight", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|42760", + ["text"] = "Allocates Chakra of Stability", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|29306", ["text"] = "Allocates Chakra of Thought", ["type"] = "crafted", }, - [194] = { + { ["id"] = "crafted.stat_2954116742|5410", ["text"] = "Allocates Channelled Heritage", ["type"] = "crafted", }, - [195] = { + { ["id"] = "crafted.stat_2954116742|23427", ["text"] = "Allocates Chilled to the Bone", ["type"] = "crafted", }, - [196] = { + { ["id"] = "crafted.stat_2954116742|5686", ["text"] = "Allocates Chillproof", ["type"] = "crafted", }, - [197] = { + { + ["id"] = "crafted.stat_2954116742|39990", + ["text"] = "Allocates Chronomancy", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|21213", ["text"] = "Allocates Cirel of Tarth's Light", ["type"] = "crafted", }, - [198] = { + { ["id"] = "crafted.stat_2954116742|57805", ["text"] = "Allocates Clear Space", ["type"] = "crafted", }, - [199] = { + { ["id"] = "crafted.stat_2954116742|4627", ["text"] = "Allocates Climate Change", ["type"] = "crafted", }, - [200] = { + { ["id"] = "crafted.stat_2954116742|29514", ["text"] = "Allocates Cluster Bombs", ["type"] = "crafted", }, - [201] = { + { ["id"] = "crafted.stat_2954116742|44330", ["text"] = "Allocates Coated Arms", ["type"] = "crafted", }, - [202] = { + { + ["id"] = "crafted.stat_2954116742|35618", + ["text"] = "Allocates Cold Coat", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|26518", ["text"] = "Allocates Cold Nature", ["type"] = "crafted", }, - [203] = { + { ["id"] = "crafted.stat_2954116742|47363", ["text"] = "Allocates Colossal Weapon", ["type"] = "crafted", }, - [204] = { + { ["id"] = "crafted.stat_2954116742|28044", ["text"] = "Allocates Coming Calamity", ["type"] = "crafted", }, - [205] = { + { ["id"] = "crafted.stat_2954116742|42660", ["text"] = "Allocates Commanding Rage", ["type"] = "crafted", }, - [206] = { + { + ["id"] = "crafted.stat_2954116742|34617", + ["text"] = "Allocates Conall the Hunted", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|36931", + ["text"] = "Allocates Concussive Attack", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|52257", + ["text"] = "Allocates Conductive Embrace", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|34300", ["text"] = "Allocates Conservative Casting", ["type"] = "crafted", }, - [207] = { + { ["id"] = "crafted.stat_2954116742|54640", ["text"] = "Allocates Constricting", ["type"] = "crafted", }, - [208] = { + { ["id"] = "crafted.stat_2954116742|13823", ["text"] = "Allocates Controlling Magic", ["type"] = "crafted", }, - [209] = { - ["id"] = "crafted.stat_2954116742|6133", + { + ["id"] = "crafted.stat_2954116742|36623", + ["text"] = "Allocates Convalescence", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|6133", ["text"] = "Allocates Core of the Guardian", ["type"] = "crafted", }, - [210] = { + { ["id"] = "crafted.stat_2954116742|27761", ["text"] = "Allocates Counterstancing", ["type"] = "crafted", }, - [211] = { + { ["id"] = "crafted.stat_2954116742|50687", ["text"] = "Allocates Coursing Energy", ["type"] = "crafted", }, - [212] = { + { ["id"] = "crafted.stat_2954116742|63451", ["text"] = "Allocates Cranial Impact", ["type"] = "crafted", }, - [213] = { + { + ["id"] = "crafted.stat_2954116742|9323", + ["text"] = "Allocates Craving Slaughter", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|20511", ["text"] = "Allocates Cremating Cries", ["type"] = "crafted", }, - [214] = { + { ["id"] = "crafted.stat_2954116742|19715", ["text"] = "Allocates Cremation", ["type"] = "crafted", }, - [215] = { + { ["id"] = "crafted.stat_2954116742|43677", ["text"] = "Allocates Crippling Toxins", ["type"] = "crafted", }, - [216] = { + { ["id"] = "crafted.stat_2954116742|57204", ["text"] = "Allocates Critical Exploit", ["type"] = "crafted", }, - [217] = { + { + ["id"] = "crafted.stat_2954116742|45488", + ["text"] = "Allocates Cross Strike", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|35739", ["text"] = "Allocates Crushing Judgement", ["type"] = "crafted", }, - [218] = { + { ["id"] = "crafted.stat_2954116742|18505", ["text"] = "Allocates Crushing Verdict", ["type"] = "crafted", }, - [219] = { + { ["id"] = "crafted.stat_2954116742|61026", ["text"] = "Allocates Crystalline Flesh", ["type"] = "crafted", }, - [220] = { + { ["id"] = "crafted.stat_2954116742|32151", ["text"] = "Allocates Crystalline Resistance", ["type"] = "crafted", }, - [221] = { + { + ["id"] = "crafted.stat_2954116742|5332", + ["text"] = "Allocates Crystallised Immunities", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|36341", + ["text"] = "Allocates Cull the Hordes", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|13708", ["text"] = "Allocates Curved Weapon", ["type"] = "crafted", }, - [222] = { + { + ["id"] = "crafted.stat_2954116742|32507", + ["text"] = "Allocates Cut to the Bone", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|7128", ["text"] = "Allocates Dangerous Blossom", ["type"] = "crafted", }, - [223] = { + { ["id"] = "crafted.stat_2954116742|63074", ["text"] = "Allocates Dark Entries", ["type"] = "crafted", }, - [224] = { + { ["id"] = "crafted.stat_2954116742|20495", ["text"] = "Allocates Dark Entropy", ["type"] = "crafted", }, - [225] = { + { ["id"] = "crafted.stat_2954116742|10500", ["text"] = "Allocates Dazing Blocks", ["type"] = "crafted", }, - [226] = { + { ["id"] = "crafted.stat_2954116742|30523", ["text"] = "Allocates Dead can Dance", ["type"] = "crafted", }, - [227] = { + { + ["id"] = "crafted.stat_2954116742|49618", + ["text"] = "Allocates Deadly Flourish", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|13724", ["text"] = "Allocates Deadly Force", ["type"] = "crafted", }, - [228] = { + { ["id"] = "crafted.stat_2954116742|29288", ["text"] = "Allocates Deadly Invocations", ["type"] = "crafted", }, - [229] = { + { + ["id"] = "crafted.stat_2954116742|38053", + ["text"] = "Allocates Deafening Cries", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|8904", ["text"] = "Allocates Death from Afar", ["type"] = "crafted", }, - [230] = { + { + ["id"] = "crafted.stat_2954116742|17664", + ["text"] = "Allocates Decisive Retreat", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|16142", ["text"] = "Allocates Deep Freeze", ["type"] = "crafted", }, - [231] = { + { ["id"] = "crafted.stat_2954116742|40166", ["text"] = "Allocates Deep Trance", ["type"] = "crafted", }, - [232] = { + { ["id"] = "crafted.stat_2954116742|33216", ["text"] = "Allocates Deep Wounds", ["type"] = "crafted", }, - [233] = { + { ["id"] = "crafted.stat_2954116742|45612", ["text"] = "Allocates Defensive Reflexes", ["type"] = "crafted", }, - [234] = { + { ["id"] = "crafted.stat_2954116742|10681", ["text"] = "Allocates Defensive Stance", ["type"] = "crafted", }, - [235] = { + { ["id"] = "crafted.stat_2954116742|32354", ["text"] = "Allocates Defiance", ["type"] = "crafted", }, - [236] = { + { ["id"] = "crafted.stat_2954116742|45329", ["text"] = "Allocates Delayed Danger", ["type"] = "crafted", }, - [237] = { + { + ["id"] = "crafted.stat_2954116742|38570", + ["text"] = "Allocates Demolitionist", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|28267", ["text"] = "Allocates Desensitisation", ["type"] = "crafted", }, - [238] = { + { ["id"] = "crafted.stat_2954116742|37967", ["text"] = "Allocates Desert's Scorn", ["type"] = "crafted", }, - [239] = { + { ["id"] = "crafted.stat_2954116742|56616", ["text"] = "Allocates Desperate Times", ["type"] = "crafted", }, - [240] = { + { + ["id"] = "crafted.stat_2954116742|14343", + ["text"] = "Allocates Deterioration", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|24753", + ["text"] = "Allocates Determined Precision", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|48006", + ["text"] = "Allocates Devastation", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|2344", ["text"] = "Allocates Dimensional Weakspot", ["type"] = "crafted", }, - [241] = { + { + ["id"] = "crafted.stat_2954116742|24483", + ["text"] = "Allocates Direct Approach", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|44573", ["text"] = "Allocates Disciplined Training", ["type"] = "crafted", }, - [242] = { + { + ["id"] = "crafted.stat_2954116742|38459", + ["text"] = "Allocates Disorientation", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|58939", ["text"] = "Allocates Dispatch Foes", ["type"] = "crafted", }, - [243] = { + { ["id"] = "crafted.stat_2954116742|52245", ["text"] = "Allocates Distant Dreamer", ["type"] = "crafted", }, - [244] = { + { ["id"] = "crafted.stat_2954116742|32721", ["text"] = "Allocates Distracted Target", ["type"] = "crafted", }, - [245] = { + { ["id"] = "crafted.stat_2954116742|47514", ["text"] = "Allocates Dizzying Hits", ["type"] = "crafted", }, - [246] = { + { ["id"] = "crafted.stat_2954116742|1420", ["text"] = "Allocates Dizzying Sweep", ["type"] = "crafted", }, - [247] = { + { ["id"] = "crafted.stat_2954116742|26214", ["text"] = "Allocates Dominion", ["type"] = "crafted", }, - [248] = { + { + ["id"] = "crafted.stat_2954116742|58894", + ["text"] = "Allocates Dominus' Providence", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|57190", + ["text"] = "Allocates Doomsayer", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|1502", ["text"] = "Allocates Draiocht Cleansing", ["type"] = "crafted", }, - [249] = { + { ["id"] = "crafted.stat_2954116742|32858", ["text"] = "Allocates Dread Engineer's Concoction", ["type"] = "crafted", }, - [250] = { + { ["id"] = "crafted.stat_2954116742|11838", ["text"] = "Allocates Dreamcatcher", ["type"] = "crafted", }, - [251] = { + { + ["id"] = "crafted.stat_2954116742|3688", + ["text"] = "Allocates Dynamism", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|10315", ["text"] = "Allocates Easy Going", ["type"] = "crafted", }, - [252] = { + { ["id"] = "crafted.stat_2954116742|64525", ["text"] = "Allocates Easy Target", ["type"] = "crafted", }, - [253] = { + { ["id"] = "crafted.stat_2954116742|5257", ["text"] = "Allocates Echoing Frost", ["type"] = "crafted", }, - [254] = { + { ["id"] = "crafted.stat_2954116742|7302", ["text"] = "Allocates Echoing Pulse", ["type"] = "crafted", }, - [255] = { + { ["id"] = "crafted.stat_2954116742|5703", ["text"] = "Allocates Echoing Thunder", ["type"] = "crafted", }, - [256] = { + { ["id"] = "crafted.stat_2954116742|33093", ["text"] = "Allocates Effervescent", ["type"] = "crafted", }, - [257] = { + { + ["id"] = "crafted.stat_2954116742|46692", + ["text"] = "Allocates Efficient Alchemy", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|30408", + ["text"] = "Allocates Efficient Contraptions", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|42245", ["text"] = "Allocates Efficient Inscriptions", ["type"] = "crafted", }, - [258] = { + { ["id"] = "crafted.stat_2954116742|53683", ["text"] = "Allocates Efficient Loading", ["type"] = "crafted", }, - [259] = { + { ["id"] = "crafted.stat_2954116742|3894", ["text"] = "Allocates Eldritch Will", ["type"] = "crafted", }, - [260] = { + { + ["id"] = "crafted.stat_2954116742|55708", + ["text"] = "Allocates Electric Amplification", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|56988", ["text"] = "Allocates Electric Blood", ["type"] = "crafted", }, - [261] = { + { ["id"] = "crafted.stat_2954116742|56767", ["text"] = "Allocates Electrifying Daze", ["type"] = "crafted", }, - [262] = { + { + ["id"] = "crafted.stat_2954116742|26291", + ["text"] = "Allocates Electrifying Nature", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|36364", ["text"] = "Allocates Electrocution", ["type"] = "crafted", }, - [263] = { + { ["id"] = "crafted.stat_2954116742|43090", ["text"] = "Allocates Electrotherapy", ["type"] = "crafted", }, - [264] = { + { ["id"] = "crafted.stat_2954116742|59781", ["text"] = "Allocates Embodiment of Death", ["type"] = "crafted", }, - [265] = { + { ["id"] = "crafted.stat_2954116742|10612", ["text"] = "Allocates Embodiment of Frost", ["type"] = "crafted", }, - [266] = { + { ["id"] = "crafted.stat_2954116742|15991", ["text"] = "Allocates Embodiment of Lightning", ["type"] = "crafted", }, - [267] = { + { ["id"] = "crafted.stat_2954116742|43423", ["text"] = "Allocates Emboldened Avatar", ["type"] = "crafted", }, - [268] = { + { + ["id"] = "crafted.stat_2954116742|10727", + ["text"] = "Allocates Emboldening Casts", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|9928", ["text"] = "Allocates Embracing Frost", ["type"] = "crafted", }, - [269] = { + { + ["id"] = "crafted.stat_2954116742|8782", + ["text"] = "Allocates Empowering Infusions", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|8397", ["text"] = "Allocates Empowering Remains", ["type"] = "crafted", }, - [270] = { + { ["id"] = "crafted.stat_2954116742|7542", ["text"] = "Allocates Encompassing Domain", ["type"] = "crafted", }, - [271] = { + { ["id"] = "crafted.stat_2954116742|19955", ["text"] = "Allocates Endless Blizzard", ["type"] = "crafted", }, - [272] = { + { ["id"] = "crafted.stat_2954116742|8273", ["text"] = "Allocates Endless Circuit", ["type"] = "crafted", }, - [273] = { + { ["id"] = "crafted.stat_2954116742|5663", ["text"] = "Allocates Endurance", ["type"] = "crafted", }, - [274] = { + { ["id"] = "crafted.stat_2954116742|15443", ["text"] = "Allocates Endured Suffering", ["type"] = "crafted", }, - [275] = { + { ["id"] = "crafted.stat_2954116742|59070", ["text"] = "Allocates Enduring Archon", ["type"] = "crafted", }, - [276] = { + { ["id"] = "crafted.stat_2954116742|42103", ["text"] = "Allocates Enduring Deflection", ["type"] = "crafted", }, - [277] = { + { + ["id"] = "crafted.stat_2954116742|40399", + ["text"] = "Allocates Energise", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|43633", ["text"] = "Allocates Energising Archon", ["type"] = "crafted", }, - [278] = { + { + ["id"] = "crafted.stat_2954116742|34541", + ["text"] = "Allocates Energising Deflection", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|2814", ["text"] = "Allocates Engineered Blaze", ["type"] = "crafted", }, - [279] = { + { ["id"] = "crafted.stat_2954116742|44299", ["text"] = "Allocates Enhanced Barrier", ["type"] = "crafted", }, - [280] = { + { ["id"] = "crafted.stat_2954116742|51707", ["text"] = "Allocates Enhanced Reflexes", ["type"] = "crafted", }, - [281] = { + { + ["id"] = "crafted.stat_2954116742|56237", + ["text"] = "Allocates Enhancing Attacks", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|30720", + ["text"] = "Allocates Entropic Incarnation", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|65243", + ["text"] = "Allocates Enveloping Presence", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|61404", + ["text"] = "Allocates Equilibrium", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|20032", + ["text"] = "Allocates Erraticism", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|9187", ["text"] = "Allocates Escalation", ["type"] = "crafted", }, - [282] = { + { ["id"] = "crafted.stat_2954116742|5227", ["text"] = "Allocates Escape Strategy", ["type"] = "crafted", }, - [283] = { + { ["id"] = "crafted.stat_2954116742|17854", ["text"] = "Allocates Escape Velocity", ["type"] = "crafted", }, - [284] = { + { ["id"] = "crafted.stat_2954116742|42077", ["text"] = "Allocates Essence Infusion", ["type"] = "crafted", }, - [285] = { + { ["id"] = "crafted.stat_2954116742|16256", ["text"] = "Allocates Ether Flow", ["type"] = "crafted", }, - [286] = { + { ["id"] = "crafted.stat_2954116742|52191", ["text"] = "Allocates Event Horizon", ["type"] = "crafted", }, - [287] = { + { ["id"] = "crafted.stat_2954116742|24087", ["text"] = "Allocates Everlasting Infusions", ["type"] = "crafted", }, - [288] = { + { ["id"] = "crafted.stat_2954116742|41753", ["text"] = "Allocates Evocational Practitioner", ["type"] = "crafted", }, - [289] = { + { ["id"] = "crafted.stat_2954116742|48581", ["text"] = "Allocates Exploit the Elements", ["type"] = "crafted", }, - [290] = { + { + ["id"] = "crafted.stat_2954116742|21206", + ["text"] = "Allocates Explosive Impact", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|10423", ["text"] = "Allocates Exposed to the Inferno", ["type"] = "crafted", }, - [291] = { + { ["id"] = "crafted.stat_2954116742|40990", ["text"] = "Allocates Exposed to the Storm", ["type"] = "crafted", }, - [292] = { + { ["id"] = "crafted.stat_2954116742|56112", ["text"] = "Allocates Extinguishing Exhalation", ["type"] = "crafted", }, - [293] = { + { ["id"] = "crafted.stat_2954116742|60034", ["text"] = "Allocates Falcon Dive", ["type"] = "crafted", }, - [294] = { + { ["id"] = "crafted.stat_2954116742|60464", ["text"] = "Allocates Fan the Flames", ["type"] = "crafted", }, - [295] = { + { + ["id"] = "crafted.stat_2954116742|55", + ["text"] = "Allocates Fast Acting Toxins", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|3921", ["text"] = "Allocates Fate Finding", ["type"] = "crafted", }, - [296] = { + { ["id"] = "crafted.stat_2954116742|19546", ["text"] = "Allocates Favourable Odds", ["type"] = "crafted", }, - [297] = { + { ["id"] = "crafted.stat_2954116742|60764", ["text"] = "Allocates Feathered Fletching", ["type"] = "crafted", }, - [298] = { + { + ["id"] = "crafted.stat_2954116742|9968", + ["text"] = "Allocates Feel the Earth", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|21537", ["text"] = "Allocates Fervour", ["type"] = "crafted", }, - [299] = { + { ["id"] = "crafted.stat_2954116742|2999", ["text"] = "Allocates Final Barrage", ["type"] = "crafted", }, - [300] = { + { ["id"] = "crafted.stat_2954116742|51867", ["text"] = "Allocates Finality", ["type"] = "crafted", }, - [301] = { + { ["id"] = "crafted.stat_2954116742|38969", ["text"] = "Allocates Finesse", ["type"] = "crafted", }, - [302] = { + { ["id"] = "crafted.stat_2954116742|29899", ["text"] = "Allocates Finish Them", ["type"] = "crafted", }, - [303] = { + { ["id"] = "crafted.stat_2954116742|45013", ["text"] = "Allocates Finishing Blows", ["type"] = "crafted", }, - [304] = { + { + ["id"] = "crafted.stat_2954116742|54911", + ["text"] = "Allocates Firestarter", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|29527", ["text"] = "Allocates First Approach", ["type"] = "crafted", }, - [305] = { + { ["id"] = "crafted.stat_2954116742|49356", ["text"] = "Allocates First Principle of the Hollow", ["type"] = "crafted", }, - [306] = { + { ["id"] = "crafted.stat_2954116742|59657", ["text"] = "Allocates First Teachings of the Keeper", ["type"] = "crafted", }, - [307] = { + { ["id"] = "crafted.stat_2954116742|62963", ["text"] = "Allocates Flamewalker", ["type"] = "crafted", }, - [308] = { + { ["id"] = "crafted.stat_2954116742|43584", ["text"] = "Allocates Flare", ["type"] = "crafted", }, - [309] = { + { ["id"] = "crafted.stat_2954116742|64851", ["text"] = "Allocates Flashy Parrying", ["type"] = "crafted", }, - [310] = { + { + ["id"] = "crafted.stat_2954116742|21164", + ["text"] = "Allocates Fleshcrafting", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|4985", ["text"] = "Allocates Flip the Script", ["type"] = "crafted", }, - [311] = { + { ["id"] = "crafted.stat_2954116742|59438", ["text"] = "Allocates Flow of Life", ["type"] = "crafted", }, - [312] = { + { ["id"] = "crafted.stat_2954116742|32128", ["text"] = "Allocates Flow of Time", ["type"] = "crafted", }, - [313] = { + { ["id"] = "crafted.stat_2954116742|33852", ["text"] = "Allocates Flurry", ["type"] = "crafted", }, - [314] = { + { + ["id"] = "crafted.stat_2954116742|9227", + ["text"] = "Allocates Focused Thrust", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|20677", ["text"] = "Allocates For the Jugular", ["type"] = "crafted", }, - [315] = { + { + ["id"] = "crafted.stat_2954116742|3985", + ["text"] = "Allocates Forces of Nature", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|48103", ["text"] = "Allocates Forcewave", ["type"] = "crafted", }, - [316] = { + { ["id"] = "crafted.stat_2954116742|55568", ["text"] = "Allocates Forthcoming", ["type"] = "crafted", }, - [317] = { + { ["id"] = "crafted.stat_2954116742|23940", ["text"] = "Allocates Fortified Aegis", ["type"] = "crafted", }, - [318] = { + { ["id"] = "crafted.stat_2954116742|35855", ["text"] = "Allocates Fortifying Blood", ["type"] = "crafted", }, - [319] = { + { + ["id"] = "crafted.stat_2954116742|59208", + ["text"] = "Allocates Frantic Fighter", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|39911", + ["text"] = "Allocates Frantic Reach", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|28441", ["text"] = "Allocates Frantic Swings", ["type"] = "crafted", }, - [320] = { + { ["id"] = "crafted.stat_2954116742|32301", ["text"] = "Allocates Frazzled", ["type"] = "crafted", }, - [321] = { + { + ["id"] = "crafted.stat_2954116742|51606", + ["text"] = "Allocates Freedom of Movement", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|40270", + ["text"] = "Allocates Frenetic", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|48699", ["text"] = "Allocates Frostwalker", ["type"] = "crafted", }, - [322] = { + { ["id"] = "crafted.stat_2954116742|50715", ["text"] = "Allocates Frozen Limit", ["type"] = "crafted", }, - [323] = { + { ["id"] = "crafted.stat_2954116742|37543", ["text"] = "Allocates Full Recovery", ["type"] = "crafted", }, - [324] = { + { ["id"] = "crafted.stat_2954116742|24630", ["text"] = "Allocates Fulmination", ["type"] = "crafted", }, - [325] = { + { ["id"] = "crafted.stat_2954116742|32976", ["text"] = "Allocates Gem Enthusiast", ["type"] = "crafted", }, - [326] = { + { ["id"] = "crafted.stat_2954116742|27875", ["text"] = "Allocates General Electric", ["type"] = "crafted", }, - [327] = { + { ["id"] = "crafted.stat_2954116742|17150", ["text"] = "Allocates General's Bindings", ["type"] = "crafted", }, - [328] = { + { ["id"] = "crafted.stat_2954116742|9020", ["text"] = "Allocates Giantslayer", ["type"] = "crafted", }, - [329] = { + { ["id"] = "crafted.stat_2954116742|46365", ["text"] = "Allocates Gigantic Following", ["type"] = "crafted", }, - [330] = { + { ["id"] = "crafted.stat_2954116742|56488", ["text"] = "Allocates Glancing Deflection", ["type"] = "crafted", }, - [331] = { + { ["id"] = "crafted.stat_2954116742|23939", ["text"] = "Allocates Glazed Flesh", ["type"] = "crafted", }, - [332] = { + { ["id"] = "crafted.stat_2954116742|63031", ["text"] = "Allocates Glorious Anticipation", ["type"] = "crafted", }, - [333] = { + { ["id"] = "crafted.stat_2954116742|47316", ["text"] = "Allocates Goring", ["type"] = "crafted", }, - [334] = { + { ["id"] = "crafted.stat_2954116742|27704", ["text"] = "Allocates Grace of the Ancestors", ["type"] = "crafted", }, - [335] = { + { ["id"] = "crafted.stat_2954116742|41905", ["text"] = "Allocates Gravedigger", ["type"] = "crafted", }, - [336] = { + { ["id"] = "crafted.stat_2954116742|27687", ["text"] = "Allocates Greatest Defence", ["type"] = "crafted", }, - [337] = { + { ["id"] = "crafted.stat_2954116742|58714", ["text"] = "Allocates Grenadier", ["type"] = "crafted", }, - [338] = { + { ["id"] = "crafted.stat_2954116742|31175", ["text"] = "Allocates Grip of Evil", ["type"] = "crafted", }, - [339] = { + { ["id"] = "crafted.stat_2954116742|20416", ["text"] = "Allocates Grit", ["type"] = "crafted", }, - [340] = { + { ["id"] = "crafted.stat_2954116742|13844", ["text"] = "Allocates Growing Peril", ["type"] = "crafted", }, - [341] = { + { ["id"] = "crafted.stat_2954116742|14945", ["text"] = "Allocates Growing Swarm", ["type"] = "crafted", }, - [342] = { + { ["id"] = "crafted.stat_2954116742|46499", ["text"] = "Allocates Guts", ["type"] = "crafted", }, - [343] = { + { + ["id"] = "crafted.stat_2954116742|29762", + ["text"] = "Allocates Guttural Roar", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|33229", ["text"] = "Allocates Haemorrhaging Cuts", ["type"] = "crafted", }, - [344] = { + { + ["id"] = "crafted.stat_2954116742|44974", + ["text"] = "Allocates Hail", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|15374", + ["text"] = "Allocates Hale Heart", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|52803", ["text"] = "Allocates Hale Traveller", ["type"] = "crafted", }, - [345] = { + { ["id"] = "crafted.stat_2954116742|34531", ["text"] = "Allocates Hallowed", ["type"] = "crafted", }, - [346] = { + { ["id"] = "crafted.stat_2954116742|40480", ["text"] = "Allocates Harmonic Generator", ["type"] = "crafted", }, - [347] = { + { ["id"] = "crafted.stat_2954116742|12611", ["text"] = "Allocates Harness the Elements", ["type"] = "crafted", }, - [348] = { + { ["id"] = "crafted.stat_2954116742|44293", ["text"] = "Allocates Hastening Barrier", ["type"] = "crafted", }, - [349] = { + { ["id"] = "crafted.stat_2954116742|35966", ["text"] = "Allocates Heart Tissue", ["type"] = "crafted", }, - [350] = { + { ["id"] = "crafted.stat_2954116742|13407", ["text"] = "Allocates Heartbreaking", ["type"] = "crafted", }, - [351] = { + { ["id"] = "crafted.stat_2954116742|38537", ["text"] = "Allocates Heartstopping", ["type"] = "crafted", }, - [352] = { + { + ["id"] = "crafted.stat_2954116742|9896", + ["text"] = "Allocates Heartstopping Presence", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|372", ["text"] = "Allocates Heatproof", ["type"] = "crafted", }, - [353] = { + { ["id"] = "crafted.stat_2954116742|11826", ["text"] = "Allocates Heavy Ammunition", ["type"] = "crafted", }, - [354] = { + { ["id"] = "crafted.stat_2954116742|27491", ["text"] = "Allocates Heavy Buffer", ["type"] = "crafted", }, - [355] = { + { ["id"] = "crafted.stat_2954116742|15617", ["text"] = "Allocates Heavy Drinker", ["type"] = "crafted", }, - [356] = { + { ["id"] = "crafted.stat_2954116742|4959", ["text"] = "Allocates Heavy Frost", ["type"] = "crafted", }, - [357] = { + { ["id"] = "crafted.stat_2954116742|41512", ["text"] = "Allocates Heavy Weaponry", ["type"] = "crafted", }, - [358] = { + { ["id"] = "crafted.stat_2954116742|45777", ["text"] = "Allocates Hidden Barb", ["type"] = "crafted", }, - [359] = { + { + ["id"] = "crafted.stat_2954116742|41935", + ["text"] = "Allocates Hide of the Bear", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|54805", + ["text"] = "Allocates Hindered Capabilities", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|23078", ["text"] = "Allocates Holy Protector", ["type"] = "crafted", }, - [360] = { + { + ["id"] = "crafted.stat_2954116742|48014", + ["text"] = "Allocates Honourless", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|30395", ["text"] = "Allocates Howling Beast", ["type"] = "crafted", }, - [361] = { + { ["id"] = "crafted.stat_2954116742|4673", ["text"] = "Allocates Hulking Smash", ["type"] = "crafted", }, - [362] = { + { + ["id"] = "crafted.stat_2954116742|57471", + ["text"] = "Allocates Hunker Down", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|48617", ["text"] = "Allocates Hunter", ["type"] = "crafted", }, - [363] = { + { + ["id"] = "crafted.stat_2954116742|33099", + ["text"] = "Allocates Hunter's Talisman", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|32655", ["text"] = "Allocates Hunting Companion", ["type"] = "crafted", }, - [364] = { + { + ["id"] = "crafted.stat_2954116742|32932", + ["text"] = "Allocates Ichlotl's Inferno", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|1823", ["text"] = "Allocates Illuminated Crown", ["type"] = "crafted", }, - [365] = { + { + ["id"] = "crafted.stat_2954116742|53030", + ["text"] = "Allocates Immolation", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|24062", ["text"] = "Allocates Immortal Infamy", ["type"] = "crafted", }, - [366] = { + { ["id"] = "crafted.stat_2954116742|16626", ["text"] = "Allocates Impact Area", ["type"] = "crafted", }, - [367] = { + { ["id"] = "crafted.stat_2954116742|64443", ["text"] = "Allocates Impact Force", ["type"] = "crafted", }, - [368] = { + { + ["id"] = "crafted.stat_2954116742|46696", + ["text"] = "Allocates Impair", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|21748", ["text"] = "Allocates Impending Doom", ["type"] = "crafted", }, - [369] = { + { ["id"] = "crafted.stat_2954116742|62310", ["text"] = "Allocates Incendiary", ["type"] = "crafted", }, - [370] = { + { + ["id"] = "crafted.stat_2954116742|47270", + ["text"] = "Allocates Inescapable Cold", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|22817", ["text"] = "Allocates Inevitable Rupture", ["type"] = "crafted", }, - [371] = { + { ["id"] = "crafted.stat_2954116742|61354", ["text"] = "Allocates Infernal Limit", ["type"] = "crafted", }, - [372] = { + { ["id"] = "crafted.stat_2954116742|57110", ["text"] = "Allocates Infused Flesh", ["type"] = "crafted", }, - [373] = { + { ["id"] = "crafted.stat_2954116742|24764", ["text"] = "Allocates Infusing Power", ["type"] = "crafted", }, - [374] = { + { ["id"] = "crafted.stat_2954116742|59387", ["text"] = "Allocates Infusion of Power", ["type"] = "crafted", }, - [375] = { + { ["id"] = "crafted.stat_2954116742|39567", ["text"] = "Allocates Ingenuity", ["type"] = "crafted", }, - [376] = { + { ["id"] = "crafted.stat_2954116742|46683", ["text"] = "Allocates Inherited Strength ", ["type"] = "crafted", }, - [377] = { + { + ["id"] = "crafted.stat_2954116742|23227", + ["text"] = "Allocates Initiative", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|30562", ["text"] = "Allocates Inner Faith", ["type"] = "crafted", }, - [378] = { + { + ["id"] = "crafted.stat_2954116742|116", + ["text"] = "Allocates Insightfulness", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|16150", ["text"] = "Allocates Inspiring Ally", ["type"] = "crafted", }, - [379] = { + { ["id"] = "crafted.stat_2954116742|4661", ["text"] = "Allocates Inspiring Leader", ["type"] = "crafted", }, - [380] = { + { ["id"] = "crafted.stat_2954116742|43944", ["text"] = "Allocates Instability", ["type"] = "crafted", }, - [381] = { + { ["id"] = "crafted.stat_2954116742|9736", ["text"] = "Allocates Insulated Treads", ["type"] = "crafted", }, - [382] = { + { ["id"] = "crafted.stat_2954116742|48649", ["text"] = "Allocates Insulating Hide", ["type"] = "crafted", }, - [383] = { + { ["id"] = "crafted.stat_2954116742|46182", ["text"] = "Allocates Intense Dose", ["type"] = "crafted", }, - [384] = { + { ["id"] = "crafted.stat_2954116742|65016", ["text"] = "Allocates Intense Flames", ["type"] = "crafted", }, - [385] = { + { ["id"] = "crafted.stat_2954116742|7668", ["text"] = "Allocates Internal Bleeding", ["type"] = "crafted", }, - [386] = { + { ["id"] = "crafted.stat_2954116742|41394", ["text"] = "Allocates Invigorating Archon", ["type"] = "crafted", }, - [387] = { + { ["id"] = "crafted.stat_2954116742|51934", ["text"] = "Allocates Invocated Efficiency", ["type"] = "crafted", }, - [388] = { + { + ["id"] = "crafted.stat_2954116742|338", + ["text"] = "Allocates Invocated Limit", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|31724", + ["text"] = "Allocates Iron Slippers", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|22626", + ["text"] = "Allocates Irreparable", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|16618", ["text"] = "Allocates Jack of all Trades", ["type"] = "crafted", }, - [389] = { + { ["id"] = "crafted.stat_2954116742|10265", ["text"] = "Allocates Javelin", ["type"] = "crafted", }, - [390] = { + { ["id"] = "crafted.stat_2954116742|3663", ["text"] = "Allocates Kaom's Blessing", ["type"] = "crafted", }, - [391] = { + { ["id"] = "crafted.stat_2954116742|37302", ["text"] = "Allocates Kept at Bay", ["type"] = "crafted", }, - [392] = { + { + ["id"] = "crafted.stat_2954116742|56453", + ["text"] = "Allocates Killer Instinct", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|26107", + ["text"] = "Allocates Kite Runner", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|24736", ["text"] = "Allocates Knight of Chitus", ["type"] = "crafted", }, - [393] = { + { + ["id"] = "crafted.stat_2954116742|9863", + ["text"] = "Allocates Knight of Izaro", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|2397", ["text"] = "Allocates Last Stand", ["type"] = "crafted", }, - [394] = { + { ["id"] = "crafted.stat_2954116742|64659", ["text"] = "Allocates Lasting Boons", ["type"] = "crafted", }, - [395] = { + { + ["id"] = "crafted.stat_2954116742|61741", + ["text"] = "Allocates Lasting Toxins", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|18496", ["text"] = "Allocates Lasting Trauma", ["type"] = "crafted", }, - [396] = { + { ["id"] = "crafted.stat_2954116742|8607", ["text"] = "Allocates Lavianga's Brew", ["type"] = "crafted", }, - [397] = { + { ["id"] = "crafted.stat_2954116742|45599", ["text"] = "Allocates Lay Siege", ["type"] = "crafted", }, - [398] = { + { + ["id"] = "crafted.stat_2954116742|40687", + ["text"] = "Allocates Lead by Example", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|8531", + ["text"] = "Allocates Leaping Ambush", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|51446", + ["text"] = "Allocates Leather Bound Gauntlets", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|63431", ["text"] = "Allocates Leeching Toxins", ["type"] = "crafted", }, - [399] = { + { ["id"] = "crafted.stat_2954116742|19644", ["text"] = "Allocates Left Hand of Darkness", ["type"] = "crafted", }, - [400] = { + { + ["id"] = "crafted.stat_2954116742|4091", + ["text"] = "Allocates Left Ventricle", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|31129", + ["text"] = "Allocates Lifelong Friend", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|55131", + ["text"] = "Allocates Light on your Feet", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|13738", ["text"] = "Allocates Lightning Quick", ["type"] = "crafted", }, - [401] = { + { + ["id"] = "crafted.stat_2954116742|56063", + ["text"] = "Allocates Lingering Horror", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|16499", ["text"] = "Allocates Lingering Whispers", ["type"] = "crafted", }, - [402] = { + { ["id"] = "crafted.stat_2954116742|62887", ["text"] = "Allocates Living Death", ["type"] = "crafted", }, - [403] = { + { ["id"] = "crafted.stat_2954116742|31745", ["text"] = "Allocates Lockdown", ["type"] = "crafted", }, - [404] = { + { ["id"] = "crafted.stat_2954116742|56999", ["text"] = "Allocates Locked On", ["type"] = "crafted", }, - [405] = { + { ["id"] = "crafted.stat_2954116742|12964", ["text"] = "Allocates Lone Warrior", ["type"] = "crafted", }, - [406] = { + { ["id"] = "crafted.stat_2954116742|31826", ["text"] = "Allocates Long Distance Relationship", ["type"] = "crafted", }, - [407] = { + { ["id"] = "crafted.stat_2954116742|13542", ["text"] = "Allocates Loose Flesh", ["type"] = "crafted", }, - [408] = { + { ["id"] = "crafted.stat_2954116742|33240", ["text"] = "Allocates Lord of Horrors", ["type"] = "crafted", }, - [409] = { + { + ["id"] = "crafted.stat_2954116742|27779", + ["text"] = "Allocates Lord of the Squall", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|42959", ["text"] = "Allocates Low Tolerance", ["type"] = "crafted", }, - [410] = { + { ["id"] = "crafted.stat_2954116742|51891", ["text"] = "Allocates Lucidity", ["type"] = "crafted", }, - [411] = { + { ["id"] = "crafted.stat_2954116742|59303", ["text"] = "Allocates Lucky Rabbit Foot", ["type"] = "crafted", }, - [412] = { + { + ["id"] = "crafted.stat_2954116742|27009", + ["text"] = "Allocates Lust for Sacrifice", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|44952", ["text"] = "Allocates Made to Last", ["type"] = "crafted", }, - [413] = { + { ["id"] = "crafted.stat_2954116742|23738", ["text"] = "Allocates Madness in the Bones", ["type"] = "crafted", }, - [414] = { + { ["id"] = "crafted.stat_2954116742|39568", ["text"] = "Allocates Magnum Opus", ["type"] = "crafted", }, - [415] = { + { ["id"] = "crafted.stat_2954116742|41580", ["text"] = "Allocates Maiming Strike", ["type"] = "crafted", }, - [416] = { + { ["id"] = "crafted.stat_2954116742|37742", ["text"] = "Allocates Manifold Method", ["type"] = "crafted", }, - [417] = { + { ["id"] = "crafted.stat_2954116742|64050", ["text"] = "Allocates Marathon Runner", ["type"] = "crafted", }, - [418] = { + { ["id"] = "crafted.stat_2954116742|44756", ["text"] = "Allocates Marked Agility", ["type"] = "crafted", }, - [419] = { + { ["id"] = "crafted.stat_2954116742|63830", ["text"] = "Allocates Marked for Sickness", ["type"] = "crafted", }, - [420] = { + { ["id"] = "crafted.stat_2954116742|2113", ["text"] = "Allocates Martial Artistry", ["type"] = "crafted", }, - [421] = { + { ["id"] = "crafted.stat_2954116742|27108", ["text"] = "Allocates Mass Hysteria", ["type"] = "crafted", }, - [422] = { + { ["id"] = "crafted.stat_2954116742|34340", ["text"] = "Allocates Mass Rejuvenation", ["type"] = "crafted", }, - [423] = { + { ["id"] = "crafted.stat_2954116742|30341", ["text"] = "Allocates Master Fletching", ["type"] = "crafted", }, - [424] = { + { ["id"] = "crafted.stat_2954116742|40345", ["text"] = "Allocates Master of Hexes", ["type"] = "crafted", }, - [425] = { + { + ["id"] = "crafted.stat_2954116742|27513", + ["text"] = "Allocates Material Solidification", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|11886", ["text"] = "Allocates Mauling Stuns", ["type"] = "crafted", }, - [426] = { + { + ["id"] = "crafted.stat_2954116742|25620", + ["text"] = "Allocates Meat Recycling", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|3215", ["text"] = "Allocates Melding", ["type"] = "crafted", }, - [427] = { + { + ["id"] = "crafted.stat_2954116742|16466", + ["text"] = "Allocates Mental Alacrity", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|9226", ["text"] = "Allocates Mental Perseverance", ["type"] = "crafted", }, - [428] = { + { ["id"] = "crafted.stat_2954116742|24120", ["text"] = "Allocates Mental Toughness", ["type"] = "crafted", }, - [429] = { + { ["id"] = "crafted.stat_2954116742|45632", ["text"] = "Allocates Mind Eraser", ["type"] = "crafted", }, - [430] = { + { ["id"] = "crafted.stat_2954116742|11392", ["text"] = "Allocates Molten Being", ["type"] = "crafted", }, - [431] = { + { ["id"] = "crafted.stat_2954116742|51868", ["text"] = "Allocates Molten Carapace", ["type"] = "crafted", }, - [432] = { + { ["id"] = "crafted.stat_2954116742|36100", ["text"] = "Allocates Molten Claw", ["type"] = "crafted", }, - [433] = { + { ["id"] = "crafted.stat_2954116742|17548", ["text"] = "Allocates Moment of Truth", ["type"] = "crafted", }, - [434] = { + { + ["id"] = "crafted.stat_2954116742|63579", + ["text"] = "Allocates Momentum", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|64770", ["text"] = "Allocates Morgana, the Storm Seer", ["type"] = "crafted", }, - [435] = { + { ["id"] = "crafted.stat_2954116742|47560", ["text"] = "Allocates Multi Shot", ["type"] = "crafted", }, - [436] = { + { + ["id"] = "crafted.stat_2954116742|8810", + ["text"] = "Allocates Multitasking", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|35046", ["text"] = "Allocates Mystic Avalanche", ["type"] = "crafted", }, - [437] = { + { ["id"] = "crafted.stat_2954116742|52764", ["text"] = "Allocates Mystical Rage", ["type"] = "crafted", }, - [438] = { + { + ["id"] = "crafted.stat_2954116742|53265", + ["text"] = "Allocates Nature's Bite", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|4709", ["text"] = "Allocates Near Sighted", ["type"] = "crafted", }, - [439] = { + { ["id"] = "crafted.stat_2954116742|10499", ["text"] = "Allocates Necromantic Ward", ["type"] = "crafted", }, - [440] = { + { ["id"] = "crafted.stat_2954116742|11376", ["text"] = "Allocates Necrotic Touch", ["type"] = "crafted", }, - [441] = { + { ["id"] = "crafted.stat_2954116742|59541", ["text"] = "Allocates Necrotised Flesh", ["type"] = "crafted", }, - [442] = { + { + ["id"] = "crafted.stat_2954116742|40292", + ["text"] = "Allocates Nimble Strength", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|37266", + ["text"] = "Allocates Nourishing Ally", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|60992", ["text"] = "Allocates Nurturing Guardian", ["type"] = "crafted", }, - [443] = { + { ["id"] = "crafted.stat_2954116742|42036", ["text"] = "Allocates Off-Balancing Retort", ["type"] = "crafted", }, - [444] = { + { + ["id"] = "crafted.stat_2954116742|44753", + ["text"] = "Allocates One With Flame", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|34316", + ["text"] = "Allocates One with the River", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|9444", + ["text"] = "Allocates One with the Storm", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|52199", ["text"] = "Allocates Overexposure", ["type"] = "crafted", }, - [445] = { + { ["id"] = "crafted.stat_2954116742|65204", ["text"] = "Allocates Overflowing Power", ["type"] = "crafted", }, - [446] = { + { + ["id"] = "crafted.stat_2954116742|47635", + ["text"] = "Allocates Overload", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|25513", ["text"] = "Allocates Overwhelm", ["type"] = "crafted", }, - [447] = { + { ["id"] = "crafted.stat_2954116742|57388", ["text"] = "Allocates Overwhelming Strike", ["type"] = "crafted", }, - [448] = { + { ["id"] = "crafted.stat_2954116742|21784", ["text"] = "Allocates Pack Encouragement", ["type"] = "crafted", }, - [449] = { + { ["id"] = "crafted.stat_2954116742|20686", ["text"] = "Allocates Paragon", ["type"] = "crafted", }, - [450] = { + { + ["id"] = "crafted.stat_2954116742|24766", + ["text"] = "Allocates Paranoia", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|56016", ["text"] = "Allocates Passthrough Rounds", ["type"] = "crafted", }, - [451] = { + { ["id"] = "crafted.stat_2954116742|62230", ["text"] = "Allocates Patient Barrier", ["type"] = "crafted", }, - [452] = { + { ["id"] = "crafted.stat_2954116742|60404", ["text"] = "Allocates Perfect Opportunity", ["type"] = "crafted", }, - [453] = { + { ["id"] = "crafted.stat_2954116742|49661", ["text"] = "Allocates Perfectly Placed Knife", ["type"] = "crafted", }, - [454] = { + { ["id"] = "crafted.stat_2954116742|2863", ["text"] = "Allocates Perpetual Freeze", ["type"] = "crafted", }, - [455] = { + { ["id"] = "crafted.stat_2954116742|34308", ["text"] = "Allocates Personal Touch", ["type"] = "crafted", }, - [456] = { + { ["id"] = "crafted.stat_2954116742|7651", ["text"] = "Allocates Pierce the Heart", ["type"] = "crafted", }, - [457] = { + { ["id"] = "crafted.stat_2954116742|17260", ["text"] = "Allocates Piercing Claw", ["type"] = "crafted", }, - [458] = { + { ["id"] = "crafted.stat_2954116742|4534", ["text"] = "Allocates Piercing Shot", ["type"] = "crafted", }, - [459] = { + { ["id"] = "crafted.stat_2954116742|60083", ["text"] = "Allocates Pin and Run", ["type"] = "crafted", }, - [460] = { + { + ["id"] = "crafted.stat_2954116742|4447", + ["text"] = "Allocates Pin their Motivation", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|16816", ["text"] = "Allocates Pinpoint Shot", ["type"] = "crafted", }, - [461] = { + { ["id"] = "crafted.stat_2954116742|38111", ["text"] = "Allocates Pliable Flesh", ["type"] = "crafted", }, - [462] = { + { ["id"] = "crafted.stat_2954116742|58426", ["text"] = "Allocates Pocket Sand", ["type"] = "crafted", }, - [463] = { + { + ["id"] = "crafted.stat_2954116742|57047", + ["text"] = "Allocates Polymathy", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|19125", ["text"] = "Allocates Potent Incantation", ["type"] = "crafted", }, - [464] = { + { ["id"] = "crafted.stat_2954116742|15083", ["text"] = "Allocates Power Conduction", ["type"] = "crafted", }, - [465] = { + { ["id"] = "crafted.stat_2954116742|6178", ["text"] = "Allocates Power Shots", ["type"] = "crafted", }, - [466] = { + { + ["id"] = "crafted.stat_2954116742|13895", + ["text"] = "Allocates Precise Point", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|34425", + ["text"] = "Allocates Precise Volatility", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|19337", + ["text"] = "Allocates Precision Salvo", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|21380", ["text"] = "Allocates Preemptive Strike", ["type"] = "crafted", }, - [467] = { + { ["id"] = "crafted.stat_2954116742|37872", ["text"] = "Allocates Presence Present", ["type"] = "crafted", }, - [468] = { + { ["id"] = "crafted.stat_2954116742|32951", ["text"] = "Allocates Preservation", ["type"] = "crafted", }, - [469] = { + { ["id"] = "crafted.stat_2954116742|28329", ["text"] = "Allocates Pressure Points", ["type"] = "crafted", }, - [470] = { + { + ["id"] = "crafted.stat_2954116742|9908", + ["text"] = "Allocates Price of Freedom", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|32071", + ["text"] = "Allocates Primal Growth", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|31364", ["text"] = "Allocates Primal Protection", ["type"] = "crafted", }, - [471] = { + { + ["id"] = "crafted.stat_2954116742|28892", + ["text"] = "Allocates Primal Rage", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|50884", ["text"] = "Allocates Primal Sundering", ["type"] = "crafted", }, - [472] = { + { ["id"] = "crafted.stat_2954116742|54814", ["text"] = "Allocates Profane Commander", ["type"] = "crafted", }, - [473] = { + { + ["id"] = "crafted.stat_2954116742|58397", + ["text"] = "Allocates Proficiency", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|45874", + ["text"] = "Allocates Proliferating Weeds", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|19442", ["text"] = "Allocates Prolonged Assault", ["type"] = "crafted", }, - [474] = { + { ["id"] = "crafted.stat_2954116742|49550", ["text"] = "Allocates Prolonged Fury", ["type"] = "crafted", }, - [475] = { + { ["id"] = "crafted.stat_2954116742|54998", ["text"] = "Allocates Protraction", ["type"] = "crafted", }, - [476] = { + { ["id"] = "crafted.stat_2954116742|38614", ["text"] = "Allocates Psychic Fragmentation", ["type"] = "crafted", }, - [477] = { + { ["id"] = "crafted.stat_2954116742|13482", ["text"] = "Allocates Punctured Lung", ["type"] = "crafted", }, - [478] = { + { ["id"] = "crafted.stat_2954116742|62210", ["text"] = "Allocates Puppet Master chance", ["type"] = "crafted", }, - [479] = { + { + ["id"] = "crafted.stat_2954116742|14258", + ["text"] = "Allocates Puppet Master chance", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|55149", ["text"] = "Allocates Pure Chaos", ["type"] = "crafted", }, - [480] = { + { ["id"] = "crafted.stat_2954116742|28975", ["text"] = "Allocates Pure Power", ["type"] = "crafted", }, - [481] = { + { ["id"] = "crafted.stat_2954116742|6229", ["text"] = "Allocates Push the Advantage", ["type"] = "crafted", }, - [482] = { + { + ["id"] = "crafted.stat_2954116742|48240", + ["text"] = "Allocates Quick Recovery", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|43791", ["text"] = "Allocates Rallying Icon", ["type"] = "crafted", }, - [483] = { + { + ["id"] = "crafted.stat_2954116742|64119", + ["text"] = "Allocates Rapid Reload", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|7604", ["text"] = "Allocates Rapid Strike", ["type"] = "crafted", }, - [484] = { + { ["id"] = "crafted.stat_2954116742|62185", ["text"] = "Allocates Rattled", ["type"] = "crafted", }, - [485] = { + { ["id"] = "crafted.stat_2954116742|3567", ["text"] = "Allocates Raw Mana", ["type"] = "crafted", }, - [486] = { + { ["id"] = "crafted.stat_2954116742|17372", ["text"] = "Allocates Reaching Strike", ["type"] = "crafted", }, - [487] = { + { ["id"] = "crafted.stat_2954116742|61309", ["text"] = "Allocates Redblade Discipline", ["type"] = "crafted", }, - [488] = { + { + ["id"] = "crafted.stat_2954116742|45244", + ["text"] = "Allocates Refills", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|26447", ["text"] = "Allocates Refocus", ["type"] = "crafted", }, - [489] = { + { ["id"] = "crafted.stat_2954116742|35809", ["text"] = "Allocates Reinvigoration", ["type"] = "crafted", }, - [490] = { + { ["id"] = "crafted.stat_2954116742|1506", ["text"] = "Allocates Remnant Attraction", ["type"] = "crafted", }, - [491] = { + { ["id"] = "crafted.stat_2954116742|65468", ["text"] = "Allocates Repeating Explosives", ["type"] = "crafted", }, - [492] = { + { ["id"] = "crafted.stat_2954116742|20414", ["text"] = "Allocates Reprisal", ["type"] = "crafted", }, - [493] = { + { ["id"] = "crafted.stat_2954116742|10029", ["text"] = "Allocates Repulsion", ["type"] = "crafted", }, - [494] = { + { ["id"] = "crafted.stat_2954116742|25361", ["text"] = "Allocates Resolute Reach", ["type"] = "crafted", }, - [495] = { + { ["id"] = "crafted.stat_2954116742|56860", ["text"] = "Allocates Resolute Reprisal", ["type"] = "crafted", }, - [496] = { + { + ["id"] = "crafted.stat_2954116742|40325", + ["text"] = "Allocates Resolution", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|38972", ["text"] = "Allocates Restless Dead", ["type"] = "crafted", }, - [497] = { + { + ["id"] = "crafted.stat_2954116742|31773", + ["text"] = "Allocates Resurging Archon", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|7395", ["text"] = "Allocates Retaliation", ["type"] = "crafted", }, - [498] = { + { ["id"] = "crafted.stat_2954116742|9009", ["text"] = "Allocates Return to Nature", ["type"] = "crafted", }, - [499] = { + { + ["id"] = "crafted.stat_2954116742|7062", + ["text"] = "Allocates Reusable Ammunition", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|3188", + ["text"] = "Allocates Revenge", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|8660", ["text"] = "Allocates Reverberation", ["type"] = "crafted", }, - [500] = { + { + ["id"] = "crafted.stat_2954116742|37619", + ["text"] = "Allocates Rhythm of Fire", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|13693", ["text"] = "Allocates Rhythm of Ice", ["type"] = "crafted", }, - [501] = { + { + ["id"] = "crafted.stat_2954116742|8957", + ["text"] = "Allocates Right Hand of Darkness", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|28613", ["text"] = "Allocates Roaring Cries", ["type"] = "crafted", }, - [502] = { + { + ["id"] = "crafted.stat_2954116742|60269", + ["text"] = "Allocates Roil", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|61112", ["text"] = "Allocates Roll and Strike", ["type"] = "crafted", }, - [503] = { + { ["id"] = "crafted.stat_2954116742|8483", ["text"] = "Allocates Ruin", ["type"] = "crafted", }, - [504] = { + { + ["id"] = "crafted.stat_2954116742|18959", + ["text"] = "Allocates Ruinic Helm", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|53566", ["text"] = "Allocates Run and Gun", ["type"] = "crafted", }, - [505] = { + { ["id"] = "crafted.stat_2954116742|7782", ["text"] = "Allocates Rupturing Pins", ["type"] = "crafted", }, - [506] = { + { ["id"] = "crafted.stat_2954116742|9290", ["text"] = "Allocates Rusted Pins", ["type"] = "crafted", }, - [507] = { + { ["id"] = "crafted.stat_2954116742|14294", ["text"] = "Allocates Sacrificial Blood", ["type"] = "crafted", }, - [508] = { + { + ["id"] = "crafted.stat_2954116742|25619", + ["text"] = "Allocates Sand in the Eyes", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|58215", + ["text"] = "Allocates Sanguimantic Rituals", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|4810", ["text"] = "Allocates Sanguine Tolerance", ["type"] = "crafted", }, - [509] = { + { ["id"] = "crafted.stat_2954116742|42070", ["text"] = "Allocates Saqawal's Guidance", ["type"] = "crafted", }, - [510] = { + { ["id"] = "crafted.stat_2954116742|62237", ["text"] = "Allocates Saqawal's Talon", ["type"] = "crafted", }, - [511] = { + { + ["id"] = "crafted.stat_2954116742|63255", + ["text"] = "Allocates Savagery", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|45713", + ["text"] = "Allocates Savouring", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|60619", ["text"] = "Allocates Scales of the Wyvern", ["type"] = "crafted", }, - [512] = { + { ["id"] = "crafted.stat_2954116742|52229", ["text"] = "Allocates Secrets of the Orb", ["type"] = "crafted", }, - [513] = { + { ["id"] = "crafted.stat_2954116742|5009", ["text"] = "Allocates Seeing Stars", ["type"] = "crafted", }, - [514] = { + { + ["id"] = "crafted.stat_2954116742|23630", + ["text"] = "Allocates Self Immolation", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|44917", + ["text"] = "Allocates Self Mortification", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|36085", ["text"] = "Allocates Serrated Edges", ["type"] = "crafted", }, - [515] = { + { ["id"] = "crafted.stat_2954116742|53150", ["text"] = "Allocates Sharp Sight", ["type"] = "crafted", }, - [516] = { + { ["id"] = "crafted.stat_2954116742|61703", ["text"] = "Allocates Sharpened Claw", ["type"] = "crafted", }, - [517] = { + { ["id"] = "crafted.stat_2954116742|49740", ["text"] = "Allocates Shattered Crystal", ["type"] = "crafted", }, - [518] = { + { + ["id"] = "crafted.stat_2954116742|64415", + ["text"] = "Allocates Shattering Daze", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|57617", ["text"] = "Allocates Shifted Strikes", ["type"] = "crafted", }, - [519] = { + { ["id"] = "crafted.stat_2954116742|53941", ["text"] = "Allocates Shimmering", ["type"] = "crafted", }, - [520] = { + { ["id"] = "crafted.stat_2954116742|5335", ["text"] = "Allocates Shimmering Mirage", ["type"] = "crafted", }, - [521] = { + { ["id"] = "crafted.stat_2954116742|29800", ["text"] = "Allocates Shocking Limit", ["type"] = "crafted", }, - [522] = { + { ["id"] = "crafted.stat_2954116742|1087", ["text"] = "Allocates Shockwaves", ["type"] = "crafted", }, - [523] = { + { ["id"] = "crafted.stat_2954116742|46296", ["text"] = "Allocates Short Shot", ["type"] = "crafted", }, - [524] = { + { ["id"] = "crafted.stat_2954116742|55060", ["text"] = "Allocates Shrapnel", ["type"] = "crafted", }, - [525] = { + { ["id"] = "crafted.stat_2954116742|14211", ["text"] = "Allocates Shredding Contraptions", ["type"] = "crafted", }, - [526] = { + { + ["id"] = "crafted.stat_2954116742|5284", + ["text"] = "Allocates Shredding Force", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|47088", ["text"] = "Allocates Sic 'Em", ["type"] = "crafted", }, - [527] = { + { + ["id"] = "crafted.stat_2954116742|63037", + ["text"] = "Allocates Sigil of Fire", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|40803", + ["text"] = "Allocates Sigil of Ice", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|46024", ["text"] = "Allocates Sigil of Lightning", ["type"] = "crafted", }, - [528] = { + { ["id"] = "crafted.stat_2954116742|17229", ["text"] = "Allocates Silent Guardian", ["type"] = "crafted", }, - [529] = { + { ["id"] = "crafted.stat_2954116742|52392", ["text"] = "Allocates Singular Purpose", ["type"] = "crafted", }, - [530] = { + { ["id"] = "crafted.stat_2954116742|15829", ["text"] = "Allocates Siphon", ["type"] = "crafted", }, - [531] = { + { ["id"] = "crafted.stat_2954116742|12906", ["text"] = "Allocates Sitting Duck", ["type"] = "crafted", }, - [532] = { + { ["id"] = "crafted.stat_2954116742|55308", ["text"] = "Allocates Sling Shots", ["type"] = "crafted", }, - [533] = { + { ["id"] = "crafted.stat_2954116742|23362", ["text"] = "Allocates Slippery Ice", ["type"] = "crafted", }, - [534] = { + { ["id"] = "crafted.stat_2954116742|31326", ["text"] = "Allocates Slow Burn", ["type"] = "crafted", }, - [535] = { + { ["id"] = "crafted.stat_2954116742|11526", ["text"] = "Allocates Sniper", ["type"] = "crafted", }, - [536] = { + { ["id"] = "crafted.stat_2954116742|9421", ["text"] = "Allocates Snowpiercer", ["type"] = "crafted", }, - [537] = { + { + ["id"] = "crafted.stat_2954116742|34473", + ["text"] = "Allocates Spaghettification", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|14602", ["text"] = "Allocates Specialised Shots", ["type"] = "crafted", }, - [538] = { + { ["id"] = "crafted.stat_2954116742|34324", ["text"] = "Allocates Spectral Ward", ["type"] = "crafted", }, - [539] = { + { ["id"] = "crafted.stat_2954116742|17254", ["text"] = "Allocates Spell Haste", ["type"] = "crafted", }, - [540] = { + { + ["id"] = "crafted.stat_2954116742|49984", + ["text"] = "Allocates Spellblade", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|40117", + ["text"] = "Allocates Spiked Armour", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|36808", ["text"] = "Allocates Spiked Shield", ["type"] = "crafted", }, - [541] = { + { + ["id"] = "crafted.stat_2954116742|1546", + ["text"] = "Allocates Spiral into Depression", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|9328", ["text"] = "Allocates Spirit of the Bear", ["type"] = "crafted", }, - [542] = { + { ["id"] = "crafted.stat_2954116742|3348", ["text"] = "Allocates Spirit of the Wolf", ["type"] = "crafted", }, - [543] = { + { ["id"] = "crafted.stat_2954116742|26104", ["text"] = "Allocates Spirit of the Wyvern", ["type"] = "crafted", }, - [544] = { + { ["id"] = "crafted.stat_2954116742|49088", ["text"] = "Allocates Splintering Force", ["type"] = "crafted", }, - [545] = { + { ["id"] = "crafted.stat_2954116742|7449", ["text"] = "Allocates Splinters", ["type"] = "crafted", }, - [546] = { + { ["id"] = "crafted.stat_2954116742|13980", ["text"] = "Allocates Split the Earth", ["type"] = "crafted", }, - [547] = { + { ["id"] = "crafted.stat_2954116742|11578", ["text"] = "Allocates Spreading Shocks", ["type"] = "crafted", }, - [548] = { + { ["id"] = "crafted.stat_2954116742|63759", ["text"] = "Allocates Stacking Toxins", ["type"] = "crafted", }, - [549] = { + { ["id"] = "crafted.stat_2954116742|39881", ["text"] = "Allocates Staggering Palm", ["type"] = "crafted", }, - [550] = { + { ["id"] = "crafted.stat_2954116742|61104", ["text"] = "Allocates Staggering Wounds", ["type"] = "crafted", }, - [551] = { + { ["id"] = "crafted.stat_2954116742|6304", ["text"] = "Allocates Stand Ground", ["type"] = "crafted", }, - [552] = { + { + ["id"] = "crafted.stat_2954116742|5802", + ["text"] = "Allocates Stand and Deliver", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|2486", ["text"] = "Allocates Stars Aligned", ["type"] = "crafted", }, - [553] = { + { ["id"] = "crafted.stat_2954116742|34908", ["text"] = "Allocates Staunch Deflection", ["type"] = "crafted", }, - [554] = { + { + ["id"] = "crafted.stat_2954116742|26479", + ["text"] = "Allocates Steadfast Resolve", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|47782", ["text"] = "Allocates Steady Footing", ["type"] = "crafted", }, - [555] = { + { + ["id"] = "crafted.stat_2954116742|47441", + ["text"] = "Allocates Stigmata", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|7163", ["text"] = "Allocates Stimulants", ["type"] = "crafted", }, - [556] = { + { ["id"] = "crafted.stat_2954116742|1603", ["text"] = "Allocates Storm Driven", ["type"] = "crafted", }, - [557] = { + { ["id"] = "crafted.stat_2954116742|61921", ["text"] = "Allocates Storm Surge", ["type"] = "crafted", }, - [558] = { + { ["id"] = "crafted.stat_2954116742|336", ["text"] = "Allocates Storm Swell", ["type"] = "crafted", }, - [559] = { + { ["id"] = "crafted.stat_2954116742|22726", ["text"] = "Allocates Storm's Rebuke", ["type"] = "crafted", }, - [560] = { + { + ["id"] = "crafted.stat_2954116742|43139", + ["text"] = "Allocates Stormbreaker", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|38535", ["text"] = "Allocates Stormcharged", ["type"] = "crafted", }, - [561] = { + { + ["id"] = "crafted.stat_2954116742|47387", + ["text"] = "Allocates Stormkeeper", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|13515", ["text"] = "Allocates Stormwalker", ["type"] = "crafted", }, - [562] = { + { ["id"] = "crafted.stat_2954116742|45177", ["text"] = "Allocates Strike True", ["type"] = "crafted", }, - [563] = { + { + ["id"] = "crafted.stat_2954116742|33922", + ["text"] = "Allocates Stripped Defences", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|10998", ["text"] = "Allocates Strong Chin", ["type"] = "crafted", }, - [564] = { + { ["id"] = "crafted.stat_2954116742|39369", ["text"] = "Allocates Struck Through", ["type"] = "crafted", }, - [565] = { + { + ["id"] = "crafted.stat_2954116742|38342", + ["text"] = "Allocates Stupefy", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|60138", + ["text"] = "Allocates Stylebender", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|55193", ["text"] = "Allocates Subterfuge Mask", ["type"] = "crafted", }, - [566] = { + { + ["id"] = "crafted.stat_2954116742|10398", + ["text"] = "Allocates Sudden Escalation", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|29372", + ["text"] = "Allocates Sudden Infuriation", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|14383", ["text"] = "Allocates Suffusion", ["type"] = "crafted", }, - [567] = { + { ["id"] = "crafted.stat_2954116742|2511", ["text"] = "Allocates Sundering", ["type"] = "crafted", }, - [568] = { + { + ["id"] = "crafted.stat_2954116742|19249", + ["text"] = "Allocates Supportive Ancestors", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|29881", ["text"] = "Allocates Surging Beast", ["type"] = "crafted", }, - [569] = { + { ["id"] = "crafted.stat_2954116742|42065", ["text"] = "Allocates Surging Currents", ["type"] = "crafted", }, - [570] = { + { ["id"] = "crafted.stat_2954116742|56806", ["text"] = "Allocates Swift Blocking", ["type"] = "crafted", }, - [571] = { + { ["id"] = "crafted.stat_2954116742|32353", ["text"] = "Allocates Swift Claw", ["type"] = "crafted", }, - [572] = { + { + ["id"] = "crafted.stat_2954116742|65265", + ["text"] = "Allocates Swift Interruption", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|53367", ["text"] = "Allocates Symbol of Defiance", ["type"] = "crafted", }, - [573] = { + { ["id"] = "crafted.stat_2954116742|48774", ["text"] = "Allocates Taut Flesh", ["type"] = "crafted", }, - [574] = { + { ["id"] = "crafted.stat_2954116742|18157", ["text"] = "Allocates Tempered Defences", ["type"] = "crafted", }, - [575] = { + { ["id"] = "crafted.stat_2954116742|8831", ["text"] = "Allocates Tempered Mind", ["type"] = "crafted", }, - [576] = { + { ["id"] = "crafted.stat_2954116742|12412", ["text"] = "Allocates Temporal Mastery", ["type"] = "crafted", }, - [577] = { + { + ["id"] = "crafted.stat_2954116742|25971", + ["text"] = "Allocates Tenfold Attacks", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|56666", ["text"] = "Allocates Thaumaturgic Generator", ["type"] = "crafted", }, - [578] = { + { ["id"] = "crafted.stat_2954116742|4544", ["text"] = "Allocates The Ancient Serpent", ["type"] = "crafted", }, - [579] = { + { ["id"] = "crafted.stat_2954116742|7847", ["text"] = "Allocates The Fabled Stag", ["type"] = "crafted", }, - [580] = { + { ["id"] = "crafted.stat_2954116742|34543", ["text"] = "Allocates The Frenzied Bear", ["type"] = "crafted", }, - [581] = { + { ["id"] = "crafted.stat_2954116742|54031", ["text"] = "Allocates The Great Boar", ["type"] = "crafted", }, - [582] = { + { ["id"] = "crafted.stat_2954116742|28542", ["text"] = "Allocates The Molten One's Gift", ["type"] = "crafted", }, - [583] = { + { ["id"] = "crafted.stat_2954116742|2745", ["text"] = "Allocates The Noble Wolf", ["type"] = "crafted", }, - [584] = { + { ["id"] = "crafted.stat_2954116742|27176", ["text"] = "Allocates The Power Within", ["type"] = "crafted", }, - [585] = { + { ["id"] = "crafted.stat_2954116742|21349", ["text"] = "Allocates The Quick Fox", ["type"] = "crafted", }, - [586] = { + { ["id"] = "crafted.stat_2954116742|45370", ["text"] = "Allocates The Raging Ox", ["type"] = "crafted", }, - [587] = { + { ["id"] = "crafted.stat_2954116742|52971", ["text"] = "Allocates The Soul Meridian", ["type"] = "crafted", }, - [588] = { + { ["id"] = "crafted.stat_2954116742|11774", ["text"] = "Allocates The Spring Hare", ["type"] = "crafted", }, - [589] = { + { ["id"] = "crafted.stat_2954116742|22811", ["text"] = "Allocates The Wild Cat", ["type"] = "crafted", }, - [590] = { + { ["id"] = "crafted.stat_2954116742|35849", ["text"] = "Allocates Thickened Arteries", ["type"] = "crafted", }, - [591] = { + { + ["id"] = "crafted.stat_2954116742|56893", + ["text"] = "Allocates Thicket Warding", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|19722", ["text"] = "Allocates Thin Ice", ["type"] = "crafted", }, - [592] = { + { + ["id"] = "crafted.stat_2954116742|59433", + ["text"] = "Allocates Thirst for Endurance", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|38532", ["text"] = "Allocates Thirst for Power", ["type"] = "crafted", }, - [593] = { + { ["id"] = "crafted.stat_2954116742|17600", ["text"] = "Allocates Thirsting Ally", ["type"] = "crafted", }, - [594] = { + { + ["id"] = "crafted.stat_2954116742|43711", + ["text"] = "Allocates Thornhide", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|42714", ["text"] = "Allocates Thousand Cuts", ["type"] = "crafted", }, - [595] = { + { ["id"] = "crafted.stat_2954116742|25711", ["text"] = "Allocates Thrill of Battle", ["type"] = "crafted", }, - [596] = { + { ["id"] = "crafted.stat_2954116742|15606", ["text"] = "Allocates Thrill of the Fight", ["type"] = "crafted", }, - [597] = { + { ["id"] = "crafted.stat_2954116742|56265", ["text"] = "Allocates Throatseeker", ["type"] = "crafted", }, - [598] = { + { ["id"] = "crafted.stat_2954116742|63585", ["text"] = "Allocates Thunderstruck", ["type"] = "crafted", }, - [599] = { + { ["id"] = "crafted.stat_2954116742|42813", ["text"] = "Allocates Tides of Change", ["type"] = "crafted", }, - [600] = { + { ["id"] = "crafted.stat_2954116742|24240", ["text"] = "Allocates Time Manipulation", ["type"] = "crafted", }, - [601] = { + { ["id"] = "crafted.stat_2954116742|65160", ["text"] = "Allocates Titanic", ["type"] = "crafted", }, - [602] = { + { ["id"] = "crafted.stat_2954116742|2843", ["text"] = "Allocates Tolerant Equipment", ["type"] = "crafted", }, - [603] = { + { ["id"] = "crafted.stat_2954116742|28482", ["text"] = "Allocates Total Incineration", ["type"] = "crafted", }, - [604] = { + { + ["id"] = "crafted.stat_2954116742|27626", + ["text"] = "Allocates Touch the Arcane", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|261", ["text"] = "Allocates Toxic Sludge", ["type"] = "crafted", }, - [605] = { + { ["id"] = "crafted.stat_2954116742|2134", ["text"] = "Allocates Toxic Tolerance", ["type"] = "crafted", }, - [606] = { + { ["id"] = "crafted.stat_2954116742|52180", ["text"] = "Allocates Trained Deflection", ["type"] = "crafted", }, - [607] = { + { ["id"] = "crafted.stat_2954116742|57785", ["text"] = "Allocates Trained Turrets", ["type"] = "crafted", }, - [608] = { + { ["id"] = "crafted.stat_2954116742|750", ["text"] = "Allocates Tribal Fury", ["type"] = "crafted", }, - [609] = { + { ["id"] = "crafted.stat_2954116742|61601", ["text"] = "Allocates True Strike", ["type"] = "crafted", }, - [610] = { + { + ["id"] = "crafted.stat_2954116742|53131", + ["text"] = "Allocates Tukohama's Brew", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|2335", ["text"] = "Allocates Turn the Clock Forward", ["type"] = "crafted", }, - [611] = { + { + ["id"] = "crafted.stat_2954116742|1352", + ["text"] = "Allocates Unbending", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|4579", ["text"] = "Allocates Unbothering Cold", ["type"] = "crafted", }, - [612] = { + { ["id"] = "crafted.stat_2954116742|64543", ["text"] = "Allocates Unbound Forces", ["type"] = "crafted", }, - [613] = { + { + ["id"] = "crafted.stat_2954116742|13489", + ["text"] = "Allocates Unbreakable", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|53921", ["text"] = "Allocates Unbreaking", ["type"] = "crafted", }, - [614] = { + { ["id"] = "crafted.stat_2954116742|38888", ["text"] = "Allocates Unerring Impact", ["type"] = "crafted", }, - [615] = { + { ["id"] = "crafted.stat_2954116742|31189", ["text"] = "Allocates Unexpected Finesse", ["type"] = "crafted", }, - [616] = { + { ["id"] = "crafted.stat_2954116742|8881", ["text"] = "Allocates Unforgiving", ["type"] = "crafted", }, - [617] = { + { + ["id"] = "crafted.stat_2954116742|51394", + ["text"] = "Allocates Unimpeded", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|20008", ["text"] = "Allocates Unleash Fire", ["type"] = "crafted", }, - [618] = { + { ["id"] = "crafted.stat_2954116742|4547", ["text"] = "Allocates Unnatural Resilience", ["type"] = "crafted", }, - [619] = { + { ["id"] = "crafted.stat_2954116742|51602", ["text"] = "Allocates Unsight", ["type"] = "crafted", }, - [620] = { + { ["id"] = "crafted.stat_2954116742|33585", ["text"] = "Allocates Unspoken Bond", ["type"] = "crafted", }, - [621] = { + { ["id"] = "crafted.stat_2954116742|1169", ["text"] = "Allocates Urgent Call", ["type"] = "crafted", }, - [622] = { + { + ["id"] = "crafted.stat_2954116742|17303", + ["text"] = "Allocates Utility Ordnance", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|41033", ["text"] = "Allocates Utmost Offering", ["type"] = "crafted", }, - [623] = { + { ["id"] = "crafted.stat_2954116742|12750", ["text"] = "Allocates Vale Shelter", ["type"] = "crafted", }, - [624] = { + { ["id"] = "crafted.stat_2954116742|17762", ["text"] = "Allocates Vengeance", ["type"] = "crafted", }, - [625] = { + { ["id"] = "crafted.stat_2954116742|4238", ["text"] = "Allocates Versatile Arms", ["type"] = "crafted", }, - [626] = { + { ["id"] = "crafted.stat_2954116742|65193", ["text"] = "Allocates Viciousness", ["type"] = "crafted", }, - [627] = { + { ["id"] = "crafted.stat_2954116742|63739", ["text"] = "Allocates Vigorous Remnants", ["type"] = "crafted", }, - [628] = { + { ["id"] = "crafted.stat_2954116742|36507", ["text"] = "Allocates Vile Mending", ["type"] = "crafted", }, - [629] = { + { ["id"] = "crafted.stat_2954116742|31373", ["text"] = "Allocates Vocal Empowerment", ["type"] = "crafted", }, - [630] = { + { ["id"] = "crafted.stat_2954116742|3492", ["text"] = "Allocates Void", ["type"] = "crafted", }, - [631] = { + { ["id"] = "crafted.stat_2954116742|11366", ["text"] = "Allocates Volcanic Skin", ["type"] = "crafted", }, - [632] = { + { ["id"] = "crafted.stat_2954116742|31955", ["text"] = "Allocates Voll's Protection", ["type"] = "crafted", }, - [633] = { + { + ["id"] = "crafted.stat_2954116742|46060", + ["text"] = "Allocates Voracious", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|27303", + ["text"] = "Allocates Vulgar Methods", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|31925", ["text"] = "Allocates Warding Fetish", ["type"] = "crafted", }, - [634] = { + { ["id"] = "crafted.stat_2954116742|47418", ["text"] = "Allocates Warding Potions", ["type"] = "crafted", }, - [635] = { + { + ["id"] = "crafted.stat_2954116742|53187", + ["text"] = "Allocates Warlord Berserker", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|14761", ["text"] = "Allocates Warlord Leader", ["type"] = "crafted", }, - [636] = { + { ["id"] = "crafted.stat_2954116742|12998", ["text"] = "Allocates Warm the Heart", ["type"] = "crafted", }, - [637] = { + { ["id"] = "crafted.stat_2954116742|51213", ["text"] = "Allocates Wasting", ["type"] = "crafted", }, - [638] = { + { ["id"] = "crafted.stat_2954116742|61444", ["text"] = "Allocates Wasting Casts", ["type"] = "crafted", }, - [639] = { + { ["id"] = "crafted.stat_2954116742|5580", ["text"] = "Allocates Watchtowers", ["type"] = "crafted", }, - [640] = { + { ["id"] = "crafted.stat_2954116742|51509", ["text"] = "Allocates Waters of Life", ["type"] = "crafted", }, - [641] = { + { ["id"] = "crafted.stat_2954116742|58198", ["text"] = "Allocates Well of Power", ["type"] = "crafted", }, - [642] = { + { ["id"] = "crafted.stat_2954116742|2021", ["text"] = "Allocates Wellspring", ["type"] = "crafted", }, - [643] = { + { ["id"] = "crafted.stat_2954116742|37514", ["text"] = "Allocates Whirling Assault", ["type"] = "crafted", }, - [644] = { + { ["id"] = "crafted.stat_2954116742|65256", ["text"] = "Allocates Widespread Coverage", ["type"] = "crafted", }, - [645] = { + { ["id"] = "crafted.stat_2954116742|7809", ["text"] = "Allocates Wild Storm", ["type"] = "crafted", }, - [646] = { + { + ["id"] = "crafted.stat_2954116742|44373", + ["text"] = "Allocates Wither Away", + ["type"] = "crafted", + }, + { + ["id"] = "crafted.stat_2954116742|57921", + ["text"] = "Allocates Wolf's Howl", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_2954116742|62803", ["text"] = "Allocates Woodland Aspect", ["type"] = "crafted", }, - [647] = { + { ["id"] = "crafted.stat_2954116742|30132", ["text"] = "Allocates Wrapped Quiver", ["type"] = "crafted", }, - [648] = { + { ["id"] = "crafted.stat_2954116742|35417", ["text"] = "Allocates Wyvern's Breath", ["type"] = "crafted", }, - [649] = { + { ["id"] = "crafted.stat_2954116742|11184", ["text"] = "Allocates Zarokh's Gift", ["type"] = "crafted", }, - [650] = { + { + ["id"] = "crafted.stat_2954116742|50485", + ["text"] = "Allocates Zone of Control", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_315791320", ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "crafted", }, - [651] = { + { ["id"] = "crafted.stat_335885735", ["text"] = "Bears the Mark of the Abyssal Lord", ["type"] = "crafted", }, - [652] = { + { ["id"] = "crafted.stat_3587953142", ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", ["type"] = "crafted", }, - [653] = { + { ["id"] = "crafted.stat_2101383955", ["text"] = "Damage Penetrates #% Elemental Resistances", ["type"] = "crafted", }, - [654] = { + { ["id"] = "crafted.stat_541021467", ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", ["type"] = "crafted", }, - [655] = { + { ["id"] = "crafted.stat_2709367754", ["text"] = "Gain # Rage on Melee Hit", ["type"] = "crafted", }, - [656] = { + { ["id"] = "crafted.stat_3398787959", ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "crafted", }, - [657] = { + { ["id"] = "crafted.stat_2505884597", ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "crafted", }, - [658] = { + { ["id"] = "crafted.stat_2888350852", ["text"] = "Gain #% of Damage as Extra Cold Damage while you are missing Runic Ward", ["type"] = "crafted", }, - [659] = { + { ["id"] = "crafted.stat_825116955", ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", ["type"] = "crafted", }, - [660] = { + { ["id"] = "crafted.stat_3015669065", ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "crafted", }, - [661] = { + { ["id"] = "crafted.stat_589361270", ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", ["type"] = "crafted", }, - [662] = { + { ["id"] = "crafted.stat_1321054058", ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", ["type"] = "crafted", }, - [663] = { + { ["id"] = "crafted.stat_3278136794", ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "crafted", }, - [664] = { + { ["id"] = "crafted.stat_323800555", ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", ["type"] = "crafted", }, - [665] = { + { ["id"] = "crafted.stat_4019237939", ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "crafted", }, - [666] = { + { ["id"] = "crafted.stat_1158842087", ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", ["type"] = "crafted", }, - [667] = { + { ["id"] = "crafted.stat_758893621", ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "crafted", }, - [668] = { + { ["id"] = "crafted.stat_3855016469", ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "crafted", }, - [669] = { + { ["id"] = "crafted.stat_895564377", ["text"] = "Increases and Reductions to Cold and Fire Damage in Radius are transformed to apply to Lightning Damage", ["type"] = "crafted", }, - [670] = { + { + ["id"] = "crafted.stat_1400313697", + ["text"] = "Increases and Reductions to Cold and Lightning Damage in Radius are transformed to apply to Fire Damage", + ["type"] = "crafted", + }, + { ["id"] = "crafted.stat_3368921525", ["text"] = "Increases and Reductions to Fire and Lightning Damage in Radius are transformed to apply to Cold Damage", ["type"] = "crafted", }, - [671] = { + { ["id"] = "crafted.stat_971590056", ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", ["type"] = "crafted", }, - [672] = { + { ["id"] = "crafted.stat_2951965588", ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", ["type"] = "crafted", }, - [673] = { + { ["id"] = "crafted.stat_1615901249", ["text"] = "Invocated skills have #% increased Maximum Energy", ["type"] = "crafted", }, - [674] = { + { ["id"] = "crafted.stat_3121133045", ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", ["type"] = "crafted", }, - [675] = { + { ["id"] = "crafted.stat_195270549", ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", ["type"] = "crafted", }, - [676] = { + { ["id"] = "crafted.stat_1797815732", ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", ["type"] = "crafted", }, - [677] = { + { ["id"] = "crafted.stat_1691403182", ["text"] = "Minions have #% increased Cooldown Recovery Rate", ["type"] = "crafted", }, - [678] = { + { ["id"] = "crafted.stat_953593695", ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", ["type"] = "crafted", }, - [679] = { + { ["id"] = "crafted.stat_73032170", ["text"] = "Minions have #% increased Skill Speed with Command Skills", ["type"] = "crafted", }, - [680] = { + { ["id"] = "crafted.stat_3249412463", ["text"] = "Minions' Strikes have Melee Splash", ["type"] = "crafted", }, - [681] = { + { ["id"] = "crafted.stat_1846980580", ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "crafted", }, - [682] = { + { ["id"] = "crafted.stat_3391917254", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "crafted", }, - [683] = { + { ["id"] = "crafted.stat_2822644689", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "crafted", }, - [684] = { + { ["id"] = "crafted.stat_1022759479", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "crafted", }, - [685] = { + { ["id"] = "crafted.stat_2149603090", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "crafted", }, - [686] = { + { ["id"] = "crafted.stat_1352561456", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "crafted", }, - [687] = { + { ["id"] = "crafted.stat_3865605585", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "crafted", }, - [688] = { + { ["id"] = "crafted.stat_2704905000", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "crafted", }, - [689] = { + { ["id"] = "crafted.stat_2466785537", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "crafted", }, - [690] = { + { ["id"] = "crafted.stat_1185341308", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "crafted", }, - [691] = { + { ["id"] = "crafted.stat_844449513", ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "crafted", }, - [692] = { + { ["id"] = "crafted.stat_3386297724", ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", ["type"] = "crafted", }, - [693] = { + { ["id"] = "crafted.stat_248192092", ["text"] = "Notable Passive Skills in Radius also grant #% to Chaos Resistance", ["type"] = "crafted", }, - [694] = { + { ["id"] = "crafted.stat_3946450303", ["text"] = "Notable Passive Skills in Radius also grant #% to Cold Resistance", ["type"] = "crafted", }, - [695] = { + { ["id"] = "crafted.stat_2670212285", ["text"] = "Notable Passive Skills in Radius also grant #% to Fire Resistance", ["type"] = "crafted", }, - [696] = { + { ["id"] = "crafted.stat_1687542781", ["text"] = "Notable Passive Skills in Radius also grant #% to Lightning Resistance", ["type"] = "crafted", }, - [697] = { + { ["id"] = "crafted.stat_2969557004", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "crafted", }, - [698] = { + { ["id"] = "crafted.stat_2726713579", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "crafted", }, - [699] = { + { ["id"] = "crafted.stat_525523040", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "crafted", }, - [700] = { + { ["id"] = "crafted.stat_3191479793", ["text"] = "Offering Skills have #% increased Buff effect", ["type"] = "crafted", }, - [701] = { + { ["id"] = "crafted.stat_4215035940", ["text"] = "On Corruption, Item gains two Enchantments", ["type"] = "crafted", }, - [702] = { + { ["id"] = "crafted.stat_554145967", ["text"] = "Recover # Runic Ward when a Charm is used", ["type"] = "crafted", }, - [703] = { + { ["id"] = "crafted.stat_1568848828", ["text"] = "Recover # Runic Ward when you Block", ["type"] = "crafted", }, - [704] = { + { ["id"] = "crafted.stat_2023107756", ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "crafted", }, - [705] = { + { ["id"] = "crafted.stat_1604736568", ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "crafted", }, - [706] = { + { ["id"] = "crafted.stat_3482326075", ["text"] = "Remnants can be collected from #% further away", ["type"] = "crafted", }, - [707] = { + { ["id"] = "crafted.stat_4147510958", ["text"] = "Sealed Skills have # to maximum Seals", ["type"] = "crafted", }, - [708] = { + { ["id"] = "crafted.stat_3384867265", ["text"] = "Sealed Skills have #% increased Seal gain frequency", ["type"] = "crafted", }, - [709] = { + { ["id"] = "crafted.stat_3858398337", ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "crafted", }, - [710] = { + { ["id"] = "crafted.stat_1426522529", ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "crafted", }, - [711] = { + { ["id"] = "crafted.stat_1309799717", ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "crafted", }, - [712] = { + { ["id"] = "crafted.stat_2442527254", ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "crafted", }, - [713] = { + { ["id"] = "crafted.stat_3222402650", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "crafted", }, - [714] = { + { ["id"] = "crafted.stat_1994296038", ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "crafted", }, - [715] = { + { ["id"] = "crafted.stat_139889694", ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "crafted", }, - [716] = { + { ["id"] = "crafted.stat_1417267954", ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "crafted", }, - [717] = { + { ["id"] = "crafted.stat_2768899959", ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "crafted", }, - [718] = { + { ["id"] = "crafted.stat_1137305356", ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "crafted", }, - [719] = { + { ["id"] = "crafted.stat_1602294220", ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", ["type"] = "crafted", }, - [720] = { + { ["id"] = "crafted.stat_3665922113", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "crafted", }, - [721] = { + { ["id"] = "crafted.stat_1967040409", ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "crafted", }, - [722] = { + { ["id"] = "crafted.stat_555706343", ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", ["type"] = "crafted", }, - [723] = { + { ["id"] = "crafted.stat_3984146263", ["text"] = "Tempest Bells are destroyed after an additional # Hits", ["type"] = "crafted", }, - [724] = { + { ["id"] = "crafted.stat_1058934731", ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "crafted", }, - [725] = { + { ["id"] = "crafted.stat_3891355829|3", ["text"] = "Upgrades Radius to Very Large", ["type"] = "crafted", }, - [726] = { + { ["id"] = "crafted.stat_1265767008", ["text"] = "Your Minions are Gigantic if they have Revived Recently", ["type"] = "crafted", @@ -25678,4999 +26758,4999 @@ return { ["id"] = "crafted", ["label"] = "Crafted", }, - [6] = { + { ["entries"] = { - [1] = { + { ["id"] = "enchant.stat_762600725", ["text"] = "# Life gained when you Block", ["type"] = "enchant", }, - [2] = { + { ["id"] = "enchant.stat_2122183138", ["text"] = "# Mana gained when you Block", ["type"] = "enchant", }, - [3] = { + { ["id"] = "enchant.stat_803737631", ["text"] = "# to Accuracy Rating", ["type"] = "enchant", }, - [4] = { + { ["id"] = "enchant.stat_3261801346", ["text"] = "# to Dexterity", ["type"] = "enchant", }, - [5] = { + { ["id"] = "enchant.stat_328541901", ["text"] = "# to Intelligence", ["type"] = "enchant", }, - [6] = { + { ["id"] = "enchant.stat_4226189338", ["text"] = "# to Level of all Chaos Spell Skills", ["type"] = "enchant", }, - [7] = { + { ["id"] = "enchant.stat_2254480358", ["text"] = "# to Level of all Cold Spell Skills", ["type"] = "enchant", }, - [8] = { + { ["id"] = "enchant.stat_591105508", ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "enchant", }, - [9] = { + { ["id"] = "enchant.stat_1545858329", ["text"] = "# to Level of all Lightning Spell Skills", ["type"] = "enchant", }, - [10] = { + { ["id"] = "enchant.stat_9187492", ["text"] = "# to Level of all Melee Skills", ["type"] = "enchant", }, - [11] = { + { ["id"] = "enchant.stat_2162097452", ["text"] = "# to Level of all Minion Skills", ["type"] = "enchant", }, - [12] = { + { ["id"] = "enchant.stat_1600707273", ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "enchant", }, - [13] = { + { ["id"] = "enchant.stat_4283407333", ["text"] = "# to Level of all Skills", ["type"] = "enchant", }, - [14] = { + { ["id"] = "enchant.stat_1515657623", ["text"] = "# to Maximum Endurance Charges", ["type"] = "enchant", }, - [15] = { + { ["id"] = "enchant.stat_4078695", ["text"] = "# to Maximum Frenzy Charges", ["type"] = "enchant", }, - [16] = { + { ["id"] = "enchant.stat_227523295", ["text"] = "# to Maximum Power Charges", ["type"] = "enchant", }, - [17] = { + { ["id"] = "enchant.stat_3981240776", ["text"] = "# to Spirit", ["type"] = "enchant", }, - [18] = { + { ["id"] = "enchant.stat_4080418644", ["text"] = "# to Strength", ["type"] = "enchant", }, - [19] = { + { ["id"] = "enchant.stat_3299347043", ["text"] = "# to maximum Life", ["type"] = "enchant", }, - [20] = { + { ["id"] = "enchant.stat_1050105434", ["text"] = "# to maximum Mana", ["type"] = "enchant", }, - [21] = { + { ["id"] = "enchant.stat_3771516363", ["text"] = "#% additional Physical Damage Reduction", ["type"] = "enchant", }, - [22] = { + { ["id"] = "enchant.stat_2301191210", ["text"] = "#% chance to Blind Enemies on hit", ["type"] = "enchant", }, - [23] = { + { ["id"] = "enchant.stat_2763429652", ["text"] = "#% chance to Maim on Hit", ["type"] = "enchant", }, - [24] = { + { ["id"] = "enchant.stat_2321178454", ["text"] = "#% chance to Pierce an Enemy", ["type"] = "enchant", }, - [25] = { + { ["id"] = "enchant.stat_3885634897", ["text"] = "#% chance to Poison on Hit with this weapon", ["type"] = "enchant", }, - [26] = { + { ["id"] = "enchant.stat_1519615863", ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "enchant", }, - [27] = { + { ["id"] = "enchant.stat_1782086450", ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "enchant", }, - [28] = { + { ["id"] = "enchant.stat_280731498", ["text"] = "#% increased Area of Effect", ["type"] = "enchant", }, - [29] = { + { ["id"] = "enchant.stat_2866361420", ["text"] = "#% increased Armour", ["type"] = "enchant", }, - [30] = { + { ["id"] = "enchant.stat_1062208444", ["text"] = "#% increased Armour (Local)", ["type"] = "enchant", }, - [31] = { + { ["id"] = "enchant.stat_3321629045", ["text"] = "#% increased Armour and Energy Shield", ["type"] = "enchant", }, - [32] = { + { ["id"] = "enchant.stat_2451402625", ["text"] = "#% increased Armour and Evasion", ["type"] = "enchant", }, - [33] = { + { ["id"] = "enchant.stat_210067635", ["text"] = "#% increased Attack Speed (Local)", ["type"] = "enchant", }, - [34] = { + { ["id"] = "enchant.stat_3639275092", ["text"] = "#% increased Attribute Requirements", ["type"] = "enchant", }, - [35] = { + { ["id"] = "enchant.stat_2481353198", ["text"] = "#% increased Block chance (Local)", ["type"] = "enchant", }, - [36] = { + { ["id"] = "enchant.stat_2891184298", ["text"] = "#% increased Cast Speed", ["type"] = "enchant", }, - [37] = { + { ["id"] = "enchant.stat_1004011302", ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "enchant", }, - [38] = { + { ["id"] = "enchant.stat_3556824919", ["text"] = "#% increased Critical Damage Bonus", ["type"] = "enchant", }, - [39] = { + { ["id"] = "enchant.stat_737908626", ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "enchant", }, - [40] = { + { ["id"] = "enchant.stat_2353576063", ["text"] = "#% increased Curse Magnitudes", ["type"] = "enchant", }, - [41] = { + { ["id"] = "enchant.stat_2154246560", ["text"] = "#% increased Damage", ["type"] = "enchant", }, - [42] = { + { ["id"] = "enchant.stat_387439868", ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "enchant", }, - [43] = { + { ["id"] = "enchant.stat_4015621042", ["text"] = "#% increased Energy Shield", ["type"] = "enchant", }, - [44] = { + { ["id"] = "enchant.stat_2106365538", ["text"] = "#% increased Evasion Rating", ["type"] = "enchant", }, - [45] = { + { ["id"] = "enchant.stat_124859000", ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "enchant", }, - [46] = { + { ["id"] = "enchant.stat_1999113824", ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "enchant", }, - [47] = { + { ["id"] = "enchant.stat_2968503605", ["text"] = "#% increased Flammability Magnitude", ["type"] = "enchant", }, - [48] = { + { ["id"] = "enchant.stat_473429811", ["text"] = "#% increased Freeze Buildup", ["type"] = "enchant", }, - [49] = { + { ["id"] = "enchant.stat_3780644166", ["text"] = "#% increased Freeze Threshold", ["type"] = "enchant", }, - [50] = { + { ["id"] = "enchant.stat_44972811", ["text"] = "#% increased Life Regeneration rate", ["type"] = "enchant", }, - [51] = { + { ["id"] = "enchant.stat_789117908", ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "enchant", }, - [52] = { + { ["id"] = "enchant.stat_548198834", ["text"] = "#% increased Melee Strike Range with this weapon", ["type"] = "enchant", }, - [53] = { + { ["id"] = "enchant.stat_2250533757", ["text"] = "#% increased Movement Speed", ["type"] = "enchant", }, - [54] = { + { ["id"] = "enchant.stat_2017682521", ["text"] = "#% increased Pack Size in Map", ["type"] = "enchant", }, - [55] = { + { ["id"] = "enchant.stat_1509134228", ["text"] = "#% increased Physical Damage", ["type"] = "enchant", }, - [56] = { + { ["id"] = "enchant.stat_101878827", ["text"] = "#% increased Presence Area of Effect", ["type"] = "enchant", }, - [57] = { + { ["id"] = "enchant.stat_3175163625", ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "enchant", }, - [58] = { + { ["id"] = "enchant.stat_3917489142", ["text"] = "#% increased Rarity of Items found", ["type"] = "enchant", }, - [59] = { + { ["id"] = "enchant.stat_2306002879", ["text"] = "#% increased Rarity of Items found in Map", ["type"] = "enchant", }, - [60] = { + { ["id"] = "enchant.stat_3377888098", ["text"] = "#% increased Skill Effect Duration", ["type"] = "enchant", }, - [61] = { + { ["id"] = "enchant.stat_970213192", ["text"] = "#% increased Skill Speed", ["type"] = "enchant", }, - [62] = { + { ["id"] = "enchant.stat_924253255", ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "enchant", }, - [63] = { + { ["id"] = "enchant.stat_2974417149", ["text"] = "#% increased Spell Damage", ["type"] = "enchant", }, - [64] = { + { ["id"] = "enchant.stat_3984865854", ["text"] = "#% increased Spirit", ["type"] = "enchant", }, - [65] = { + { ["id"] = "enchant.stat_3836551197", ["text"] = "#% increased Stack size of Simulacrum Splinters found in Area", ["type"] = "enchant", }, - [66] = { + { ["id"] = "enchant.stat_3836551197", ["text"] = "#% increased Stack size of Simulacrum Splinters found in Map", ["type"] = "enchant", }, - [67] = { + { ["id"] = "enchant.stat_680068163", ["text"] = "#% increased Stun Threshold", ["type"] = "enchant", }, - [68] = { + { ["id"] = "enchant.stat_3138466258", ["text"] = "#% increased Tablets found in Area", ["type"] = "enchant", }, - [69] = { + { ["id"] = "enchant.stat_1315743832", ["text"] = "#% increased Thorns damage", ["type"] = "enchant", }, - [70] = { + { ["id"] = "enchant.stat_1316278494", ["text"] = "#% increased Warcry Speed", ["type"] = "enchant", }, - [71] = { + { ["id"] = "enchant.stat_3233599707", ["text"] = "#% increased Weapon Swap Speed", ["type"] = "enchant", }, - [72] = { + { ["id"] = "enchant.stat_293638271", ["text"] = "#% increased chance to Shock", ["type"] = "enchant", }, - [73] = { + { ["id"] = "enchant.stat_2482852589", ["text"] = "#% increased maximum Energy Shield", ["type"] = "enchant", }, - [74] = { + { ["id"] = "enchant.stat_1444556985", ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "enchant", }, - [75] = { + { ["id"] = "enchant.stat_472520716", ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "enchant", }, - [76] = { + { ["id"] = "enchant.stat_2923486259", ["text"] = "#% to Chaos Resistance", ["type"] = "enchant", }, - [77] = { + { ["id"] = "enchant.stat_4220027924", ["text"] = "#% to Cold Resistance", ["type"] = "enchant", }, - [78] = { + { ["id"] = "enchant.stat_2694482655", ["text"] = "#% to Critical Damage Bonus", ["type"] = "enchant", }, - [79] = { + { ["id"] = "enchant.stat_3372524247", ["text"] = "#% to Fire Resistance", ["type"] = "enchant", }, - [80] = { + { ["id"] = "enchant.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "enchant", }, - [81] = { + { ["id"] = "enchant.stat_3676141501", ["text"] = "#% to Maximum Cold Resistance", ["type"] = "enchant", }, - [82] = { + { ["id"] = "enchant.stat_4095671657", ["text"] = "#% to Maximum Fire Resistance", ["type"] = "enchant", }, - [83] = { + { ["id"] = "enchant.stat_1011760251", ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "enchant", }, - [84] = { + { ["id"] = "enchant.stat_2901986750", ["text"] = "#% to all Elemental Resistances", ["type"] = "enchant", }, - [85] = { + { ["id"] = "enchant.stat_1978899297", ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "enchant", }, - [86] = { + { ["id"] = "enchant.stat_480796730", ["text"] = "#% to maximum Block chance", ["type"] = "enchant", }, - [87] = { + { ["id"] = "enchant.stat_2223678961", ["text"] = "Adds # to # Chaos damage", ["type"] = "enchant", }, - [88] = { + { ["id"] = "enchant.stat_1037193709", ["text"] = "Adds # to # Cold Damage", ["type"] = "enchant", }, - [89] = { + { ["id"] = "enchant.stat_709508406", ["text"] = "Adds # to # Fire Damage", ["type"] = "enchant", }, - [90] = { + { ["id"] = "enchant.stat_3336890334", ["text"] = "Adds # to # Lightning Damage", ["type"] = "enchant", }, - [91] = { + { ["id"] = "enchant.stat_1798257884", ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "enchant", }, - [92] = { + { ["id"] = "enchant.stat_1998951374", ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "enchant", }, - [93] = { + { ["id"] = "enchant.stat_289128254", ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "enchant", }, - [94] = { + { ["id"] = "enchant.stat_3057012405", ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "enchant", }, - [95] = { + { ["id"] = "enchant.stat_2954116742|7338", ["text"] = "Allocates Abasement", ["type"] = "enchant", }, - [96] = { + { ["id"] = "enchant.stat_2954116742|43082", ["text"] = "Allocates Acceleration", ["type"] = "enchant", }, - [97] = { + { ["id"] = "enchant.stat_2954116742|12822", ["text"] = "Allocates Adaptable Assault", ["type"] = "enchant", }, - [98] = { + { ["id"] = "enchant.stat_2954116742|43250", ["text"] = "Allocates Adaptive Skin", ["type"] = "enchant", }, - [99] = { + { ["id"] = "enchant.stat_2954116742|35876", ["text"] = "Allocates Admonisher", ["type"] = "enchant", }, - [100] = { + { ["id"] = "enchant.stat_2954116742|17340", ["text"] = "Allocates Adrenaline Rush", ["type"] = "enchant", }, - [101] = { + { ["id"] = "enchant.stat_2954116742|43829", ["text"] = "Allocates Advanced Munitions", ["type"] = "enchant", }, - [102] = { + { ["id"] = "enchant.stat_2954116742|4295", ["text"] = "Allocates Adverse Growth", ["type"] = "enchant", }, - [103] = { + { ["id"] = "enchant.stat_2954116742|4716", ["text"] = "Allocates Afterimage", ["type"] = "enchant", }, - [104] = { + { ["id"] = "enchant.stat_2954116742|50253", ["text"] = "Allocates Aftershocks", ["type"] = "enchant", }, - [105] = { + { ["id"] = "enchant.stat_2954116742|59938", ["text"] = "Allocates Against the Elements", ["type"] = "enchant", }, - [106] = { + { ["id"] = "enchant.stat_2954116742|6655", ["text"] = "Allocates Aggravation", ["type"] = "enchant", }, - [107] = { + { ["id"] = "enchant.stat_2954116742|8896", ["text"] = "Allocates Agile Sprinter", ["type"] = "enchant", }, - [108] = { + { ["id"] = "enchant.stat_2954116742|56493", ["text"] = "Allocates Agile Succession", ["type"] = "enchant", }, - [109] = { + { ["id"] = "enchant.stat_2954116742|43088", ["text"] = "Allocates Agonising Calamity", ["type"] = "enchant", }, - [110] = { + { ["id"] = "enchant.stat_2954116742|55817", ["text"] = "Allocates Alchemical Oil", ["type"] = "enchant", }, - [111] = { + { ["id"] = "enchant.stat_2954116742|43854", ["text"] = "Allocates All For One", ["type"] = "enchant", }, - [112] = { + { ["id"] = "enchant.stat_2954116742|58016", ["text"] = "Allocates All Natural", ["type"] = "enchant", }, - [113] = { + { ["id"] = "enchant.stat_2954116742|48974", ["text"] = "Allocates Altered Brain Chemistry", ["type"] = "enchant", }, - [114] = { + { ["id"] = "enchant.stat_2954116742|23764", ["text"] = "Allocates Alternating Current", ["type"] = "enchant", }, - [115] = { + { ["id"] = "enchant.stat_2954116742|20558", ["text"] = "Allocates Among the Hordes", ["type"] = "enchant", }, - [116] = { + { ["id"] = "enchant.stat_2954116742|2575", ["text"] = "Allocates Ancestral Alacrity", ["type"] = "enchant", }, - [117] = { + { ["id"] = "enchant.stat_2954116742|26339", ["text"] = "Allocates Ancestral Artifice", ["type"] = "enchant", }, - [118] = { + { ["id"] = "enchant.stat_2954116742|51820", ["text"] = "Allocates Ancestral Conduits", ["type"] = "enchant", }, - [119] = { + { ["id"] = "enchant.stat_2954116742|18419", ["text"] = "Allocates Ancestral Mending", ["type"] = "enchant", }, - [120] = { + { ["id"] = "enchant.stat_2954116742|43396", ["text"] = "Allocates Ancestral Reach", ["type"] = "enchant", }, - [121] = { + { ["id"] = "enchant.stat_2954116742|62609", ["text"] = "Allocates Ancestral Unity", ["type"] = "enchant", }, - [122] = { + { ["id"] = "enchant.stat_2954116742|5728", ["text"] = "Allocates Ancient Aegis", ["type"] = "enchant", }, - [123] = { + { ["id"] = "enchant.stat_2954116742|62431", ["text"] = "Allocates Anticipation", ["type"] = "enchant", }, - [124] = { + { ["id"] = "enchant.stat_2954116742|38398", ["text"] = "Allocates Apocalypse", ["type"] = "enchant", }, - [125] = { + { ["id"] = "enchant.stat_2954116742|46224", ["text"] = "Allocates Arcane Alchemy", ["type"] = "enchant", }, - [126] = { + { ["id"] = "enchant.stat_2954116742|14324", ["text"] = "Allocates Arcane Blossom", ["type"] = "enchant", }, - [127] = { + { ["id"] = "enchant.stat_2954116742|19044", ["text"] = "Allocates Arcane Intensity", ["type"] = "enchant", }, - [128] = { + { ["id"] = "enchant.stat_2954116742|46972", ["text"] = "Allocates Arcane Mixtures", ["type"] = "enchant", }, - [129] = { + { ["id"] = "enchant.stat_2954116742|16940", ["text"] = "Allocates Arcane Nature", ["type"] = "enchant", }, - [130] = { + { ["id"] = "enchant.stat_2954116742|46124", ["text"] = "Allocates Arcane Remnants", ["type"] = "enchant", }, - [131] = { + { ["id"] = "enchant.stat_2954116742|26926", ["text"] = "Allocates Archon of Undeath", ["type"] = "enchant", }, - [132] = { + { ["id"] = "enchant.stat_2954116742|42045", ["text"] = "Allocates Archon of the Blizzard", ["type"] = "enchant", }, - [133] = { + { ["id"] = "enchant.stat_2954116742|27434", ["text"] = "Allocates Archon of the Storm", ["type"] = "enchant", }, - [134] = { + { ["id"] = "enchant.stat_2954116742|12245", ["text"] = "Allocates Arsonist", ["type"] = "enchant", }, - [135] = { + { ["id"] = "enchant.stat_2954116742|14265", ["text"] = "Allocates Arsonist", ["type"] = "enchant", }, - [136] = { + { ["id"] = "enchant.stat_2954116742|58817", ["text"] = "Allocates Artillery Strike", ["type"] = "enchant", }, - [137] = { + { ["id"] = "enchant.stat_2954116742|12661", ["text"] = "Allocates Asceticism", ["type"] = "enchant", }, - [138] = { + { ["id"] = "enchant.stat_2954116742|27388", ["text"] = "Allocates Aspiring Genius", ["type"] = "enchant", }, - [139] = { + { ["id"] = "enchant.stat_2954116742|35560", ["text"] = "Allocates At your Command", ["type"] = "enchant", }, - [140] = { + { ["id"] = "enchant.stat_2954116742|17696", ["text"] = "Allocates Augmented Flesh", ["type"] = "enchant", }, - [141] = { + { ["id"] = "enchant.stat_2954116742|20397", ["text"] = "Allocates Authority", ["type"] = "enchant", }, - [142] = { + { ["id"] = "enchant.stat_2954116742|50673", ["text"] = "Allocates Avoiding Deflection", ["type"] = "enchant", }, - [143] = { + { ["id"] = "enchant.stat_2954116742|33059", ["text"] = "Allocates Back in Action", ["type"] = "enchant", }, - [144] = { + { ["id"] = "enchant.stat_2954116742|53853", ["text"] = "Allocates Backup Plan", ["type"] = "enchant", }, - [145] = { + { ["id"] = "enchant.stat_2954116742|62455", ["text"] = "Allocates Bannerman", ["type"] = "enchant", }, - [146] = { + { ["id"] = "enchant.stat_2954116742|50562", ["text"] = "Allocates Barbaric Strength", ["type"] = "enchant", }, - [147] = { + { ["id"] = "enchant.stat_2954116742|50062", ["text"] = "Allocates Barrier of Venarius", ["type"] = "enchant", }, - [148] = { + { ["id"] = "enchant.stat_2954116742|8916", ["text"] = "Allocates Bashing Beast", ["type"] = "enchant", }, - [149] = { + { ["id"] = "enchant.stat_2954116742|37846", ["text"] = "Allocates Bastion of Light", ["type"] = "enchant", }, - [150] = { + { ["id"] = "enchant.stat_2954116742|64240", ["text"] = "Allocates Battle Fever", ["type"] = "enchant", }, - [151] = { + { ["id"] = "enchant.stat_2954116742|37276", ["text"] = "Allocates Battle Trance", ["type"] = "enchant", }, - [152] = { + { ["id"] = "enchant.stat_2954116742|41620", ["text"] = "Allocates Bear's Roar", ["type"] = "enchant", }, - [153] = { + { ["id"] = "enchant.stat_2954116742|59720", ["text"] = "Allocates Beastial Skin", ["type"] = "enchant", }, - [154] = { + { ["id"] = "enchant.stat_2954116742|25482", ["text"] = "Allocates Beef", ["type"] = "enchant", }, - [155] = { + { ["id"] = "enchant.stat_2954116742|5642", ["text"] = "Allocates Behemoth", ["type"] = "enchant", }, - [156] = { + { ["id"] = "enchant.stat_2954116742|10873", ["text"] = "Allocates Bestial Rage", ["type"] = "enchant", }, - [157] = { + { ["id"] = "enchant.stat_2954116742|15825", ["text"] = "Allocates Bhatair's Storm", ["type"] = "enchant", }, - [158] = { + { ["id"] = "enchant.stat_2954116742|38329", ["text"] = "Allocates Biting Frost", ["type"] = "enchant", }, - [159] = { + { ["id"] = "enchant.stat_2954116742|17029", ["text"] = "Allocates Blade Catcher", ["type"] = "enchant", }, - [160] = { + { ["id"] = "enchant.stat_2954116742|2394", ["text"] = "Allocates Blade Flurry", ["type"] = "enchant", }, - [161] = { + { ["id"] = "enchant.stat_2954116742|25753", ["text"] = "Allocates Blazing Arms", ["type"] = "enchant", }, - [162] = { + { ["id"] = "enchant.stat_2954116742|18308", ["text"] = "Allocates Bleeding Out", ["type"] = "enchant", }, - [163] = { + { ["id"] = "enchant.stat_2954116742|48925", ["text"] = "Allocates Blessing of the Moon", ["type"] = "enchant", }, - [164] = { + { ["id"] = "enchant.stat_2954116742|42354", ["text"] = "Allocates Blinding Flash", ["type"] = "enchant", }, - [165] = { + { ["id"] = "enchant.stat_2954116742|20916", ["text"] = "Allocates Blinding Strike", ["type"] = "enchant", }, - [166] = { + { ["id"] = "enchant.stat_2954116742|39083", ["text"] = "Allocates Blood Rush", ["type"] = "enchant", }, - [167] = { + { ["id"] = "enchant.stat_2954116742|58183", ["text"] = "Allocates Blood Tearing", ["type"] = "enchant", }, - [168] = { + { ["id"] = "enchant.stat_2954116742|48524", ["text"] = "Allocates Blood Transfusion", ["type"] = "enchant", }, - [169] = { + { ["id"] = "enchant.stat_2954116742|35792", ["text"] = "Allocates Blood of Rage", ["type"] = "enchant", }, - [170] = { + { ["id"] = "enchant.stat_2954116742|49214", ["text"] = "Allocates Blood of the Wolf", ["type"] = "enchant", }, - [171] = { + { ["id"] = "enchant.stat_2954116742|54990", ["text"] = "Allocates Bloodletting", ["type"] = "enchant", }, - [172] = { + { ["id"] = "enchant.stat_2954116742|10772", ["text"] = "Allocates Bloodthirsty", ["type"] = "enchant", }, - [173] = { + { ["id"] = "enchant.stat_2954116742|42177", ["text"] = "Allocates Blurred Motion", ["type"] = "enchant", }, - [174] = { + { ["id"] = "enchant.stat_2954116742|26070", ["text"] = "Allocates Bolstering Yell", ["type"] = "enchant", }, - [175] = { + { ["id"] = "enchant.stat_2954116742|712", ["text"] = "Allocates Bond of the Ape", ["type"] = "enchant", }, - [176] = { + { ["id"] = "enchant.stat_2954116742|1448", ["text"] = "Allocates Bond of the Cat", ["type"] = "enchant", }, - [177] = { + { ["id"] = "enchant.stat_2954116742|47853", ["text"] = "Allocates Bond of the Mamba", ["type"] = "enchant", }, - [178] = { + { ["id"] = "enchant.stat_2954116742|52568", ["text"] = "Allocates Bond of the Owl", ["type"] = "enchant", }, - [179] = { + { ["id"] = "enchant.stat_2954116742|34478", ["text"] = "Allocates Bond of the Viper", ["type"] = "enchant", }, - [180] = { + { ["id"] = "enchant.stat_2954116742|5191", ["text"] = "Allocates Bond of the Wolf", ["type"] = "enchant", }, - [181] = { + { ["id"] = "enchant.stat_2954116742|17725", ["text"] = "Allocates Bonded Precision", ["type"] = "enchant", }, - [182] = { + { ["id"] = "enchant.stat_2954116742|26563", ["text"] = "Allocates Bone Chains", ["type"] = "enchant", }, - [183] = { + { ["id"] = "enchant.stat_2954116742|52618", ["text"] = "Allocates Boon of the Beast", ["type"] = "enchant", }, - [184] = { + { ["id"] = "enchant.stat_2954116742|15114", ["text"] = "Allocates Boundless Growth", ["type"] = "enchant", }, - [185] = { + { ["id"] = "enchant.stat_2954116742|23244", ["text"] = "Allocates Bounty Hunter", ["type"] = "enchant", }, - [186] = { + { ["id"] = "enchant.stat_2954116742|24721", ["text"] = "Allocates Brain Freeze", ["type"] = "enchant", }, - [187] = { + { ["id"] = "enchant.stat_2954116742|50498", ["text"] = "Allocates Brain Storm", ["type"] = "enchant", }, - [188] = { + { ["id"] = "enchant.stat_2954116742|37806", ["text"] = "Allocates Branching Bolts", ["type"] = "enchant", }, - [189] = { + { ["id"] = "enchant.stat_2954116742|14777", ["text"] = "Allocates Bravado", ["type"] = "enchant", }, - [190] = { + { ["id"] = "enchant.stat_2954116742|21453", ["text"] = "Allocates Breakage", ["type"] = "enchant", }, - [191] = { + { ["id"] = "enchant.stat_2954116742|39347", ["text"] = "Allocates Breaking Blows", ["type"] = "enchant", }, - [192] = { + { ["id"] = "enchant.stat_2954116742|7777", ["text"] = "Allocates Breaking Point", ["type"] = "enchant", }, - [193] = { + { ["id"] = "enchant.stat_2954116742|24655", ["text"] = "Allocates Breath of Fire", ["type"] = "enchant", }, - [194] = { + { ["id"] = "enchant.stat_2954116742|18086", ["text"] = "Allocates Breath of Ice", ["type"] = "enchant", }, - [195] = { + { ["id"] = "enchant.stat_2954116742|61338", ["text"] = "Allocates Breath of Lightning", ["type"] = "enchant", }, - [196] = { + { ["id"] = "enchant.stat_2954116742|9535", ["text"] = "Allocates Brinerot Ferocity", ["type"] = "enchant", }, - [197] = { + { ["id"] = "enchant.stat_2954116742|48565", ["text"] = "Allocates Bringer of Order", ["type"] = "enchant", }, - [198] = { + { ["id"] = "enchant.stat_2954116742|53935", ["text"] = "Allocates Briny Carapace", ["type"] = "enchant", }, - [199] = { + { ["id"] = "enchant.stat_2954116742|63541", ["text"] = "Allocates Brush Off", ["type"] = "enchant", }, - [200] = { + { ["id"] = "enchant.stat_2954116742|50392", ["text"] = "Allocates Brute Strength", ["type"] = "enchant", }, - [201] = { + { ["id"] = "enchant.stat_2954116742|15986", ["text"] = "Allocates Building Toxins", ["type"] = "enchant", }, - [202] = { + { ["id"] = "enchant.stat_2954116742|53294", ["text"] = "Allocates Burn Away", ["type"] = "enchant", }, - [203] = { + { ["id"] = "enchant.stat_2954116742|8554", ["text"] = "Allocates Burning Nature", ["type"] = "enchant", }, - [204] = { + { ["id"] = "enchant.stat_2954116742|6544", ["text"] = "Allocates Burning Strikes", ["type"] = "enchant", }, - [205] = { + { ["id"] = "enchant.stat_2954116742|35324", ["text"] = "Allocates Burnout", ["type"] = "enchant", }, - [206] = { + { ["id"] = "enchant.stat_2954116742|6514", ["text"] = "Allocates Cacophony", ["type"] = "enchant", }, - [207] = { + { ["id"] = "enchant.stat_2954116742|32799", ["text"] = "Allocates Captivating Companionship", ["type"] = "enchant", }, - [208] = { + { ["id"] = "enchant.stat_2954116742|50795", ["text"] = "Allocates Careful Aim", ["type"] = "enchant", }, - [209] = { + { ["id"] = "enchant.stat_2954116742|46197", ["text"] = "Allocates Careful Assassin", ["type"] = "enchant", }, - [210] = { + { ["id"] = "enchant.stat_2954116742|17955", ["text"] = "Allocates Careful Consideration", ["type"] = "enchant", }, - [211] = { + { ["id"] = "enchant.stat_2954116742|52348", ["text"] = "Allocates Carved Earth", ["type"] = "enchant", }, - [212] = { + { ["id"] = "enchant.stat_2954116742|44005", ["text"] = "Allocates Casting Cascade", ["type"] = "enchant", }, - [213] = { + { ["id"] = "enchant.stat_2954116742|31433", ["text"] = "Allocates Catalysis", ["type"] = "enchant", }, - [214] = { + { ["id"] = "enchant.stat_2954116742|9472", ["text"] = "Allocates Catapult", ["type"] = "enchant", }, - [215] = { + { ["id"] = "enchant.stat_2954116742|32664", ["text"] = "Allocates Chakra of Breathing", ["type"] = "enchant", }, - [216] = { + { ["id"] = "enchant.stat_2954116742|63400", ["text"] = "Allocates Chakra of Elements", ["type"] = "enchant", }, - [217] = { + { ["id"] = "enchant.stat_2954116742|25362", ["text"] = "Allocates Chakra of Impact", ["type"] = "enchant", }, - [218] = { + { ["id"] = "enchant.stat_2954116742|35031", ["text"] = "Allocates Chakra of Life", ["type"] = "enchant", }, - [219] = { + { ["id"] = "enchant.stat_2954116742|28963", ["text"] = "Allocates Chakra of Rhythm", ["type"] = "enchant", }, - [220] = { + { ["id"] = "enchant.stat_2954116742|42347", ["text"] = "Allocates Chakra of Sight", ["type"] = "enchant", }, - [221] = { + { ["id"] = "enchant.stat_2954116742|42760", ["text"] = "Allocates Chakra of Stability", ["type"] = "enchant", }, - [222] = { + { ["id"] = "enchant.stat_2954116742|29306", ["text"] = "Allocates Chakra of Thought", ["type"] = "enchant", }, - [223] = { + { ["id"] = "enchant.stat_2954116742|5410", ["text"] = "Allocates Channelled Heritage", ["type"] = "enchant", }, - [224] = { + { ["id"] = "enchant.stat_2954116742|23427", ["text"] = "Allocates Chilled to the Bone", ["type"] = "enchant", }, - [225] = { + { ["id"] = "enchant.stat_2954116742|5686", ["text"] = "Allocates Chillproof", ["type"] = "enchant", }, - [226] = { + { ["id"] = "enchant.stat_2954116742|39990", ["text"] = "Allocates Chronomancy", ["type"] = "enchant", }, - [227] = { + { ["id"] = "enchant.stat_2954116742|21213", ["text"] = "Allocates Cirel of Tarth's Light", ["type"] = "enchant", }, - [228] = { + { ["id"] = "enchant.stat_2954116742|57805", ["text"] = "Allocates Clear Space", ["type"] = "enchant", }, - [229] = { + { ["id"] = "enchant.stat_2954116742|4627", ["text"] = "Allocates Climate Change", ["type"] = "enchant", }, - [230] = { + { ["id"] = "enchant.stat_2954116742|38479", ["text"] = "Allocates Close Confines", ["type"] = "enchant", }, - [231] = { + { ["id"] = "enchant.stat_2954116742|29514", ["text"] = "Allocates Cluster Bombs", ["type"] = "enchant", }, - [232] = { + { ["id"] = "enchant.stat_2954116742|44330", ["text"] = "Allocates Coated Arms", ["type"] = "enchant", }, - [233] = { + { ["id"] = "enchant.stat_2954116742|35618", ["text"] = "Allocates Cold Coat", ["type"] = "enchant", }, - [234] = { + { ["id"] = "enchant.stat_2954116742|26518", ["text"] = "Allocates Cold Nature", ["type"] = "enchant", }, - [235] = { + { ["id"] = "enchant.stat_2954116742|47363", ["text"] = "Allocates Colossal Weapon", ["type"] = "enchant", }, - [236] = { + { ["id"] = "enchant.stat_2954116742|28044", ["text"] = "Allocates Coming Calamity", ["type"] = "enchant", }, - [237] = { + { ["id"] = "enchant.stat_2954116742|42660", ["text"] = "Allocates Commanding Rage", ["type"] = "enchant", }, - [238] = { + { ["id"] = "enchant.stat_2954116742|34617", ["text"] = "Allocates Conall the Hunted", ["type"] = "enchant", }, - [239] = { + { ["id"] = "enchant.stat_2954116742|36931", ["text"] = "Allocates Concussive Attack", ["type"] = "enchant", }, - [240] = { + { ["id"] = "enchant.stat_2954116742|52257", ["text"] = "Allocates Conductive Embrace", ["type"] = "enchant", }, - [241] = { + { ["id"] = "enchant.stat_2954116742|34300", ["text"] = "Allocates Conservative Casting", ["type"] = "enchant", }, - [242] = { + { ["id"] = "enchant.stat_2954116742|15030", ["text"] = "Allocates Consistent Intake", ["type"] = "enchant", }, - [243] = { + { ["id"] = "enchant.stat_2954116742|54640", ["text"] = "Allocates Constricting", ["type"] = "enchant", }, - [244] = { + { ["id"] = "enchant.stat_2954116742|30748", ["text"] = "Allocates Controlled Chaos", ["type"] = "enchant", }, - [245] = { + { ["id"] = "enchant.stat_2954116742|13823", ["text"] = "Allocates Controlling Magic", ["type"] = "enchant", }, - [246] = { + { ["id"] = "enchant.stat_2954116742|36623", ["text"] = "Allocates Convalescence", ["type"] = "enchant", }, - [247] = { + { ["id"] = "enchant.stat_2954116742|56776", ["text"] = "Allocates Cooked", ["type"] = "enchant", }, - [248] = { + { ["id"] = "enchant.stat_2954116742|6133", ["text"] = "Allocates Core of the Guardian", ["type"] = "enchant", }, - [249] = { + { ["id"] = "enchant.stat_2954116742|27761", ["text"] = "Allocates Counterstancing", ["type"] = "enchant", }, - [250] = { + { ["id"] = "enchant.stat_2954116742|50687", ["text"] = "Allocates Coursing Energy", ["type"] = "enchant", }, - [251] = { + { ["id"] = "enchant.stat_2954116742|63451", ["text"] = "Allocates Cranial Impact", ["type"] = "enchant", }, - [252] = { + { ["id"] = "enchant.stat_2954116742|9323", ["text"] = "Allocates Craving Slaughter", ["type"] = "enchant", }, - [253] = { + { ["id"] = "enchant.stat_2954116742|20511", ["text"] = "Allocates Cremating Cries", ["type"] = "enchant", }, - [254] = { + { ["id"] = "enchant.stat_2954116742|19715", ["text"] = "Allocates Cremation", ["type"] = "enchant", }, - [255] = { + { ["id"] = "enchant.stat_2954116742|43677", ["text"] = "Allocates Crippling Toxins", ["type"] = "enchant", }, - [256] = { + { ["id"] = "enchant.stat_2954116742|57204", ["text"] = "Allocates Critical Exploit", ["type"] = "enchant", }, - [257] = { + { ["id"] = "enchant.stat_2954116742|45488", ["text"] = "Allocates Cross Strike", ["type"] = "enchant", }, - [258] = { + { ["id"] = "enchant.stat_2954116742|42981", ["text"] = "Allocates Cruel Methods", ["type"] = "enchant", }, - [259] = { + { ["id"] = "enchant.stat_2954116742|35739", ["text"] = "Allocates Crushing Judgement", ["type"] = "enchant", }, - [260] = { + { ["id"] = "enchant.stat_2954116742|18505", ["text"] = "Allocates Crushing Verdict", ["type"] = "enchant", }, - [261] = { + { ["id"] = "enchant.stat_2954116742|38895", ["text"] = "Allocates Crystal Elixir", ["type"] = "enchant", }, - [262] = { + { ["id"] = "enchant.stat_2954116742|61026", ["text"] = "Allocates Crystalline Flesh", ["type"] = "enchant", }, - [263] = { + { ["id"] = "enchant.stat_2954116742|32151", ["text"] = "Allocates Crystalline Resistance", ["type"] = "enchant", }, - [264] = { + { ["id"] = "enchant.stat_2954116742|5332", ["text"] = "Allocates Crystallised Immunities", ["type"] = "enchant", }, - [265] = { + { ["id"] = "enchant.stat_2954116742|36341", ["text"] = "Allocates Cull the Hordes", ["type"] = "enchant", }, - [266] = { + { ["id"] = "enchant.stat_2954116742|13708", ["text"] = "Allocates Curved Weapon", ["type"] = "enchant", }, - [267] = { + { ["id"] = "enchant.stat_2954116742|32507", ["text"] = "Allocates Cut to the Bone", ["type"] = "enchant", }, - [268] = { + { ["id"] = "enchant.stat_2954116742|7128", ["text"] = "Allocates Dangerous Blossom", ["type"] = "enchant", }, - [269] = { + { ["id"] = "enchant.stat_2954116742|63074", ["text"] = "Allocates Dark Entries", ["type"] = "enchant", }, - [270] = { + { ["id"] = "enchant.stat_2954116742|20495", ["text"] = "Allocates Dark Entropy", ["type"] = "enchant", }, - [271] = { + { ["id"] = "enchant.stat_2954116742|10500", ["text"] = "Allocates Dazing Blocks", ["type"] = "enchant", }, - [272] = { + { ["id"] = "enchant.stat_2954116742|30523", ["text"] = "Allocates Dead can Dance", ["type"] = "enchant", }, - [273] = { + { ["id"] = "enchant.stat_2954116742|49618", ["text"] = "Allocates Deadly Flourish", ["type"] = "enchant", }, - [274] = { + { ["id"] = "enchant.stat_2954116742|13724", ["text"] = "Allocates Deadly Force", ["type"] = "enchant", }, - [275] = { + { ["id"] = "enchant.stat_2954116742|29288", ["text"] = "Allocates Deadly Invocations", ["type"] = "enchant", }, - [276] = { + { ["id"] = "enchant.stat_2954116742|38053", ["text"] = "Allocates Deafening Cries", ["type"] = "enchant", }, - [277] = { + { ["id"] = "enchant.stat_2954116742|8904", ["text"] = "Allocates Death from Afar", ["type"] = "enchant", }, - [278] = { + { ["id"] = "enchant.stat_2954116742|17664", ["text"] = "Allocates Decisive Retreat", ["type"] = "enchant", }, - [279] = { + { ["id"] = "enchant.stat_2954116742|5594", ["text"] = "Allocates Decrepifying Curse", ["type"] = "enchant", }, - [280] = { + { ["id"] = "enchant.stat_2954116742|16142", ["text"] = "Allocates Deep Freeze", ["type"] = "enchant", }, - [281] = { + { ["id"] = "enchant.stat_2954116742|40166", ["text"] = "Allocates Deep Trance", ["type"] = "enchant", }, - [282] = { + { ["id"] = "enchant.stat_2954116742|33216", ["text"] = "Allocates Deep Wounds", ["type"] = "enchant", }, - [283] = { + { ["id"] = "enchant.stat_2954116742|45612", ["text"] = "Allocates Defensive Reflexes", ["type"] = "enchant", }, - [284] = { + { ["id"] = "enchant.stat_2954116742|10681", ["text"] = "Allocates Defensive Stance", ["type"] = "enchant", }, - [285] = { + { ["id"] = "enchant.stat_2954116742|32354", ["text"] = "Allocates Defiance", ["type"] = "enchant", }, - [286] = { + { ["id"] = "enchant.stat_2954116742|45329", ["text"] = "Allocates Delayed Danger", ["type"] = "enchant", }, - [287] = { + { ["id"] = "enchant.stat_2954116742|38570", ["text"] = "Allocates Demolitionist", ["type"] = "enchant", }, - [288] = { + { ["id"] = "enchant.stat_2954116742|4931", ["text"] = "Allocates Dependable Ward", ["type"] = "enchant", }, - [289] = { + { ["id"] = "enchant.stat_2954116742|28267", ["text"] = "Allocates Desensitisation", ["type"] = "enchant", }, - [290] = { + { ["id"] = "enchant.stat_2954116742|37967", ["text"] = "Allocates Desert's Scorn", ["type"] = "enchant", }, - [291] = { + { ["id"] = "enchant.stat_2954116742|56616", ["text"] = "Allocates Desperate Times", ["type"] = "enchant", }, - [292] = { + { ["id"] = "enchant.stat_2954116742|14343", ["text"] = "Allocates Deterioration", ["type"] = "enchant", }, - [293] = { + { ["id"] = "enchant.stat_2954116742|24753", ["text"] = "Allocates Determined Precision", ["type"] = "enchant", }, - [294] = { + { ["id"] = "enchant.stat_2954116742|48006", ["text"] = "Allocates Devastation", ["type"] = "enchant", }, - [295] = { + { ["id"] = "enchant.stat_2954116742|2344", ["text"] = "Allocates Dimensional Weakspot", ["type"] = "enchant", }, - [296] = { + { ["id"] = "enchant.stat_2954116742|24483", ["text"] = "Allocates Direct Approach", ["type"] = "enchant", }, - [297] = { + { ["id"] = "enchant.stat_2954116742|44573", ["text"] = "Allocates Disciplined Training", ["type"] = "enchant", }, - [298] = { + { ["id"] = "enchant.stat_2954116742|38459", ["text"] = "Allocates Disorientation", ["type"] = "enchant", }, - [299] = { + { ["id"] = "enchant.stat_2954116742|58939", ["text"] = "Allocates Dispatch Foes", ["type"] = "enchant", }, - [300] = { + { ["id"] = "enchant.stat_2954116742|52245", ["text"] = "Allocates Distant Dreamer", ["type"] = "enchant", }, - [301] = { + { ["id"] = "enchant.stat_2954116742|32721", ["text"] = "Allocates Distracted Target", ["type"] = "enchant", }, - [302] = { + { ["id"] = "enchant.stat_2954116742|44765", ["text"] = "Allocates Distracting Presence", ["type"] = "enchant", }, - [303] = { + { ["id"] = "enchant.stat_2954116742|47514", ["text"] = "Allocates Dizzying Hits", ["type"] = "enchant", }, - [304] = { + { ["id"] = "enchant.stat_2954116742|1420", ["text"] = "Allocates Dizzying Sweep", ["type"] = "enchant", }, - [305] = { + { ["id"] = "enchant.stat_2954116742|26214", ["text"] = "Allocates Dominion", ["type"] = "enchant", }, - [306] = { + { ["id"] = "enchant.stat_2954116742|58894", ["text"] = "Allocates Dominus' Providence", ["type"] = "enchant", }, - [307] = { + { ["id"] = "enchant.stat_2954116742|57190", ["text"] = "Allocates Doomsayer", ["type"] = "enchant", }, - [308] = { + { ["id"] = "enchant.stat_2954116742|1502", ["text"] = "Allocates Draiocht Cleansing", ["type"] = "enchant", }, - [309] = { + { ["id"] = "enchant.stat_2954116742|32858", ["text"] = "Allocates Dread Engineer's Concoction", ["type"] = "enchant", }, - [310] = { + { ["id"] = "enchant.stat_2954116742|11838", ["text"] = "Allocates Dreamcatcher", ["type"] = "enchant", }, - [311] = { + { ["id"] = "enchant.stat_2954116742|40073", ["text"] = "Allocates Drenched", ["type"] = "enchant", }, - [312] = { + { ["id"] = "enchant.stat_2954116742|3688", ["text"] = "Allocates Dynamism", ["type"] = "enchant", }, - [313] = { + { ["id"] = "enchant.stat_2954116742|10315", ["text"] = "Allocates Easy Going", ["type"] = "enchant", }, - [314] = { + { ["id"] = "enchant.stat_2954116742|64525", ["text"] = "Allocates Easy Target", ["type"] = "enchant", }, - [315] = { + { ["id"] = "enchant.stat_2954116742|60692", ["text"] = "Allocates Echoing Flames", ["type"] = "enchant", }, - [316] = { + { ["id"] = "enchant.stat_2954116742|5257", ["text"] = "Allocates Echoing Frost", ["type"] = "enchant", }, - [317] = { + { ["id"] = "enchant.stat_2954116742|7302", ["text"] = "Allocates Echoing Pulse", ["type"] = "enchant", }, - [318] = { + { ["id"] = "enchant.stat_2954116742|5703", ["text"] = "Allocates Echoing Thunder", ["type"] = "enchant", }, - [319] = { + { ["id"] = "enchant.stat_2954116742|33093", ["text"] = "Allocates Effervescent", ["type"] = "enchant", }, - [320] = { + { ["id"] = "enchant.stat_2954116742|46692", ["text"] = "Allocates Efficient Alchemy", ["type"] = "enchant", }, - [321] = { + { ["id"] = "enchant.stat_2954116742|16790", ["text"] = "Allocates Efficient Casting", ["type"] = "enchant", }, - [322] = { + { ["id"] = "enchant.stat_2954116742|30408", ["text"] = "Allocates Efficient Contraptions", ["type"] = "enchant", }, - [323] = { + { ["id"] = "enchant.stat_2954116742|42245", ["text"] = "Allocates Efficient Inscriptions", ["type"] = "enchant", }, - [324] = { + { ["id"] = "enchant.stat_2954116742|94", ["text"] = "Allocates Efficient Killing", ["type"] = "enchant", }, - [325] = { + { ["id"] = "enchant.stat_2954116742|53683", ["text"] = "Allocates Efficient Loading", ["type"] = "enchant", }, - [326] = { + { ["id"] = "enchant.stat_2954116742|3894", ["text"] = "Allocates Eldritch Will", ["type"] = "enchant", }, - [327] = { + { ["id"] = "enchant.stat_2954116742|55708", ["text"] = "Allocates Electric Amplification", ["type"] = "enchant", }, - [328] = { + { ["id"] = "enchant.stat_2954116742|56988", ["text"] = "Allocates Electric Blood", ["type"] = "enchant", }, - [329] = { + { ["id"] = "enchant.stat_2954116742|30546", ["text"] = "Allocates Electrified Claw", ["type"] = "enchant", }, - [330] = { + { ["id"] = "enchant.stat_2954116742|56767", ["text"] = "Allocates Electrifying Daze", ["type"] = "enchant", }, - [331] = { + { ["id"] = "enchant.stat_2954116742|26291", ["text"] = "Allocates Electrifying Nature", ["type"] = "enchant", }, - [332] = { + { ["id"] = "enchant.stat_2954116742|7275", ["text"] = "Allocates Electrocuting Exposure", ["type"] = "enchant", }, - [333] = { + { ["id"] = "enchant.stat_2954116742|36364", ["text"] = "Allocates Electrocution", ["type"] = "enchant", }, - [334] = { + { ["id"] = "enchant.stat_2954116742|43090", ["text"] = "Allocates Electrotherapy", ["type"] = "enchant", }, - [335] = { + { ["id"] = "enchant.stat_2954116742|59781", ["text"] = "Allocates Embodiment of Death", ["type"] = "enchant", }, - [336] = { + { ["id"] = "enchant.stat_2954116742|10612", ["text"] = "Allocates Embodiment of Frost", ["type"] = "enchant", }, - [337] = { + { ["id"] = "enchant.stat_2954116742|15991", ["text"] = "Allocates Embodiment of Lightning", ["type"] = "enchant", }, - [338] = { + { ["id"] = "enchant.stat_2954116742|43423", ["text"] = "Allocates Emboldened Avatar", ["type"] = "enchant", }, - [339] = { + { ["id"] = "enchant.stat_2954116742|10727", ["text"] = "Allocates Emboldening Casts", ["type"] = "enchant", }, - [340] = { + { ["id"] = "enchant.stat_2954116742|34553", ["text"] = "Allocates Emboldening Lead", ["type"] = "enchant", }, - [341] = { + { ["id"] = "enchant.stat_2954116742|9928", ["text"] = "Allocates Embracing Frost", ["type"] = "enchant", }, - [342] = { + { ["id"] = "enchant.stat_2954116742|8782", ["text"] = "Allocates Empowering Infusions", ["type"] = "enchant", }, - [343] = { + { ["id"] = "enchant.stat_2954116742|8397", ["text"] = "Allocates Empowering Remains", ["type"] = "enchant", }, - [344] = { + { ["id"] = "enchant.stat_2954116742|40985", ["text"] = "Allocates Empowering Remnants", ["type"] = "enchant", }, - [345] = { + { ["id"] = "enchant.stat_2954116742|7542", ["text"] = "Allocates Encompassing Domain", ["type"] = "enchant", }, - [346] = { + { ["id"] = "enchant.stat_2954116742|19955", ["text"] = "Allocates Endless Blizzard", ["type"] = "enchant", }, - [347] = { + { ["id"] = "enchant.stat_2954116742|8273", ["text"] = "Allocates Endless Circuit", ["type"] = "enchant", }, - [348] = { + { ["id"] = "enchant.stat_2954116742|5663", ["text"] = "Allocates Endurance", ["type"] = "enchant", }, - [349] = { + { ["id"] = "enchant.stat_2954116742|15443", ["text"] = "Allocates Endured Suffering", ["type"] = "enchant", }, - [350] = { + { ["id"] = "enchant.stat_2954116742|59070", ["text"] = "Allocates Enduring Archon", ["type"] = "enchant", }, - [351] = { + { ["id"] = "enchant.stat_2954116742|42103", ["text"] = "Allocates Enduring Deflection", ["type"] = "enchant", }, - [352] = { + { ["id"] = "enchant.stat_2954116742|40399", ["text"] = "Allocates Energise", ["type"] = "enchant", }, - [353] = { + { ["id"] = "enchant.stat_2954116742|43633", ["text"] = "Allocates Energising Archon", ["type"] = "enchant", }, - [354] = { + { ["id"] = "enchant.stat_2954116742|34541", ["text"] = "Allocates Energising Deflection", ["type"] = "enchant", }, - [355] = { + { ["id"] = "enchant.stat_2954116742|2814", ["text"] = "Allocates Engineered Blaze", ["type"] = "enchant", }, - [356] = { + { ["id"] = "enchant.stat_2954116742|44299", ["text"] = "Allocates Enhanced Barrier", ["type"] = "enchant", }, - [357] = { + { ["id"] = "enchant.stat_2954116742|51707", ["text"] = "Allocates Enhanced Reflexes", ["type"] = "enchant", }, - [358] = { + { ["id"] = "enchant.stat_2954116742|56237", ["text"] = "Allocates Enhancing Attacks", ["type"] = "enchant", }, - [359] = { + { ["id"] = "enchant.stat_2954116742|30720", ["text"] = "Allocates Entropic Incarnation", ["type"] = "enchant", }, - [360] = { + { ["id"] = "enchant.stat_2954116742|65243", ["text"] = "Allocates Enveloping Presence", ["type"] = "enchant", }, - [361] = { + { ["id"] = "enchant.stat_2954116742|61404", ["text"] = "Allocates Equilibrium", ["type"] = "enchant", }, - [362] = { + { ["id"] = "enchant.stat_2954116742|52684", ["text"] = "Allocates Eroding Chains", ["type"] = "enchant", }, - [363] = { + { ["id"] = "enchant.stat_2954116742|20032", ["text"] = "Allocates Erraticism", ["type"] = "enchant", }, - [364] = { + { ["id"] = "enchant.stat_2954116742|42032", ["text"] = "Allocates Escalating Mayhem", ["type"] = "enchant", }, - [365] = { + { ["id"] = "enchant.stat_2954116742|38628", ["text"] = "Allocates Escalating Toxins", ["type"] = "enchant", }, - [366] = { + { ["id"] = "enchant.stat_2954116742|9187", ["text"] = "Allocates Escalation", ["type"] = "enchant", }, - [367] = { + { ["id"] = "enchant.stat_2954116742|5227", ["text"] = "Allocates Escape Strategy", ["type"] = "enchant", }, - [368] = { + { ["id"] = "enchant.stat_2954116742|17854", ["text"] = "Allocates Escape Velocity", ["type"] = "enchant", }, - [369] = { + { ["id"] = "enchant.stat_2954116742|42077", ["text"] = "Allocates Essence Infusion", ["type"] = "enchant", }, - [370] = { + { ["id"] = "enchant.stat_2954116742|16256", ["text"] = "Allocates Ether Flow", ["type"] = "enchant", }, - [371] = { + { ["id"] = "enchant.stat_2954116742|52191", ["text"] = "Allocates Event Horizon", ["type"] = "enchant", }, - [372] = { + { ["id"] = "enchant.stat_2954116742|13524", ["text"] = "Allocates Everlasting Glory", ["type"] = "enchant", }, - [373] = { + { ["id"] = "enchant.stat_2954116742|24087", ["text"] = "Allocates Everlasting Infusions", ["type"] = "enchant", }, - [374] = { + { ["id"] = "enchant.stat_2954116742|41753", ["text"] = "Allocates Evocational Practitioner", ["type"] = "enchant", }, - [375] = { + { ["id"] = "enchant.stat_2954116742|47420", ["text"] = "Allocates Expendable Army", ["type"] = "enchant", }, - [376] = { + { ["id"] = "enchant.stat_2954116742|39050", ["text"] = "Allocates Exploit", ["type"] = "enchant", }, - [377] = { + { ["id"] = "enchant.stat_2954116742|48581", ["text"] = "Allocates Exploit the Elements", ["type"] = "enchant", }, - [378] = { + { ["id"] = "enchant.stat_2954116742|36333", ["text"] = "Allocates Explosive Empowerment", ["type"] = "enchant", }, - [379] = { + { ["id"] = "enchant.stat_2954116742|21206", ["text"] = "Allocates Explosive Impact", ["type"] = "enchant", }, - [380] = { + { ["id"] = "enchant.stat_2954116742|55835", ["text"] = "Allocates Exposed to the Cosmos", ["type"] = "enchant", }, - [381] = { + { ["id"] = "enchant.stat_2954116742|10423", ["text"] = "Allocates Exposed to the Inferno", ["type"] = "enchant", }, - [382] = { + { ["id"] = "enchant.stat_2954116742|40990", ["text"] = "Allocates Exposed to the Storm", ["type"] = "enchant", }, - [383] = { + { ["id"] = "enchant.stat_2954116742|56112", ["text"] = "Allocates Extinguishing Exhalation", ["type"] = "enchant", }, - [384] = { + { ["id"] = "enchant.stat_2954116742|60034", ["text"] = "Allocates Falcon Dive", ["type"] = "enchant", }, - [385] = { + { ["id"] = "enchant.stat_2954116742|31172", ["text"] = "Allocates Falcon Technique", ["type"] = "enchant", }, - [386] = { + { ["id"] = "enchant.stat_2954116742|60464", ["text"] = "Allocates Fan the Flames", ["type"] = "enchant", }, - [387] = { + { ["id"] = "enchant.stat_2954116742|35477", ["text"] = "Allocates Far Sighted", ["type"] = "enchant", }, - [388] = { + { ["id"] = "enchant.stat_2954116742|55", ["text"] = "Allocates Fast Acting Toxins", ["type"] = "enchant", }, - [389] = { + { ["id"] = "enchant.stat_2954116742|8827", ["text"] = "Allocates Fast Metabolism", ["type"] = "enchant", }, - [390] = { + { ["id"] = "enchant.stat_2954116742|3921", ["text"] = "Allocates Fate Finding", ["type"] = "enchant", }, - [391] = { + { ["id"] = "enchant.stat_2954116742|59214", ["text"] = "Allocates Fated End", ["type"] = "enchant", }, - [392] = { + { ["id"] = "enchant.stat_2954116742|19546", ["text"] = "Allocates Favourable Odds", ["type"] = "enchant", }, - [393] = { + { ["id"] = "enchant.stat_2954116742|22532", ["text"] = "Allocates Fearful Paralysis", ["type"] = "enchant", }, - [394] = { + { ["id"] = "enchant.stat_2954116742|60764", ["text"] = "Allocates Feathered Fletching", ["type"] = "enchant", }, - [395] = { + { ["id"] = "enchant.stat_2954116742|9968", ["text"] = "Allocates Feel the Earth", ["type"] = "enchant", }, - [396] = { + { ["id"] = "enchant.stat_2954116742|21537", ["text"] = "Allocates Fervour", ["type"] = "enchant", }, - [397] = { + { ["id"] = "enchant.stat_2954116742|2999", ["text"] = "Allocates Final Barrage", ["type"] = "enchant", }, - [398] = { + { ["id"] = "enchant.stat_2954116742|51867", ["text"] = "Allocates Finality", ["type"] = "enchant", }, - [399] = { + { ["id"] = "enchant.stat_2954116742|38969", ["text"] = "Allocates Finesse", ["type"] = "enchant", }, - [400] = { + { ["id"] = "enchant.stat_2954116742|29899", ["text"] = "Allocates Finish Them", ["type"] = "enchant", }, - [401] = { + { ["id"] = "enchant.stat_2954116742|45013", ["text"] = "Allocates Finishing Blows", ["type"] = "enchant", }, - [402] = { + { ["id"] = "enchant.stat_2954116742|54911", ["text"] = "Allocates Firestarter", ["type"] = "enchant", }, - [403] = { + { ["id"] = "enchant.stat_2954116742|29527", ["text"] = "Allocates First Approach", ["type"] = "enchant", }, - [404] = { + { ["id"] = "enchant.stat_2954116742|49356", ["text"] = "Allocates First Principle of the Hollow", ["type"] = "enchant", }, - [405] = { + { ["id"] = "enchant.stat_2954116742|59657", ["text"] = "Allocates First Teachings of the Keeper", ["type"] = "enchant", }, - [406] = { + { ["id"] = "enchant.stat_2954116742|52669", ["text"] = "Allocates Flamekeeper", ["type"] = "enchant", }, - [407] = { + { ["id"] = "enchant.stat_2954116742|62963", ["text"] = "Allocates Flamewalker", ["type"] = "enchant", }, - [408] = { + { ["id"] = "enchant.stat_2954116742|43584", ["text"] = "Allocates Flare", ["type"] = "enchant", }, - [409] = { + { ["id"] = "enchant.stat_2954116742|12337", ["text"] = "Allocates Flash Storm", ["type"] = "enchant", }, - [410] = { + { ["id"] = "enchant.stat_2954116742|64851", ["text"] = "Allocates Flashy Parrying", ["type"] = "enchant", }, - [411] = { + { ["id"] = "enchant.stat_2954116742|21164", ["text"] = "Allocates Fleshcrafting", ["type"] = "enchant", }, - [412] = { + { ["id"] = "enchant.stat_2954116742|4985", ["text"] = "Allocates Flip the Script", ["type"] = "enchant", }, - [413] = { + { ["id"] = "enchant.stat_2954116742|59438", ["text"] = "Allocates Flow of Life", ["type"] = "enchant", }, - [414] = { + { ["id"] = "enchant.stat_2954116742|32128", ["text"] = "Allocates Flow of Time", ["type"] = "enchant", }, - [415] = { + { ["id"] = "enchant.stat_2954116742|33852", ["text"] = "Allocates Flurry", ["type"] = "enchant", }, - [416] = { + { ["id"] = "enchant.stat_2954116742|33730", ["text"] = "Allocates Focused Channel", ["type"] = "enchant", }, - [417] = { + { ["id"] = "enchant.stat_2954116742|9227", ["text"] = "Allocates Focused Thrust", ["type"] = "enchant", }, - [418] = { + { ["id"] = "enchant.stat_2954116742|20677", ["text"] = "Allocates For the Jugular", ["type"] = "enchant", }, - [419] = { + { ["id"] = "enchant.stat_2954116742|3985", ["text"] = "Allocates Forces of Nature", ["type"] = "enchant", }, - [420] = { + { ["id"] = "enchant.stat_2954116742|48103", ["text"] = "Allocates Forcewave", ["type"] = "enchant", }, - [421] = { + { ["id"] = "enchant.stat_2954116742|55568", ["text"] = "Allocates Forthcoming", ["type"] = "enchant", }, - [422] = { + { ["id"] = "enchant.stat_2954116742|23940", ["text"] = "Allocates Fortified Aegis", ["type"] = "enchant", }, - [423] = { + { ["id"] = "enchant.stat_2954116742|53607", ["text"] = "Allocates Fortified Location", ["type"] = "enchant", }, - [424] = { + { ["id"] = "enchant.stat_2954116742|35855", ["text"] = "Allocates Fortifying Blood", ["type"] = "enchant", }, - [425] = { + { ["id"] = "enchant.stat_2954116742|59208", ["text"] = "Allocates Frantic Fighter", ["type"] = "enchant", }, - [426] = { + { ["id"] = "enchant.stat_2954116742|39911", ["text"] = "Allocates Frantic Reach", ["type"] = "enchant", }, - [427] = { + { ["id"] = "enchant.stat_2954116742|28441", ["text"] = "Allocates Frantic Swings", ["type"] = "enchant", }, - [428] = { + { ["id"] = "enchant.stat_2954116742|32301", ["text"] = "Allocates Frazzled", ["type"] = "enchant", }, - [429] = { + { ["id"] = "enchant.stat_2954116742|51606", ["text"] = "Allocates Freedom of Movement", ["type"] = "enchant", }, - [430] = { + { ["id"] = "enchant.stat_2954116742|40270", ["text"] = "Allocates Frenetic", ["type"] = "enchant", }, - [431] = { + { ["id"] = "enchant.stat_2954116742|45751", ["text"] = "Allocates Frightening Shield", ["type"] = "enchant", }, - [432] = { + { ["id"] = "enchant.stat_2954116742|48699", ["text"] = "Allocates Frostwalker", ["type"] = "enchant", }, - [433] = { + { ["id"] = "enchant.stat_2954116742|20289", ["text"] = "Allocates Frozen Claw", ["type"] = "enchant", }, - [434] = { + { ["id"] = "enchant.stat_2954116742|50715", ["text"] = "Allocates Frozen Limit", ["type"] = "enchant", }, - [435] = { + { ["id"] = "enchant.stat_2954116742|37543", ["text"] = "Allocates Full Recovery", ["type"] = "enchant", }, - [436] = { + { ["id"] = "enchant.stat_2954116742|33887", ["text"] = "Allocates Full Salvo", ["type"] = "enchant", }, - [437] = { + { ["id"] = "enchant.stat_2954116742|24630", ["text"] = "Allocates Fulmination", ["type"] = "enchant", }, - [438] = { + { ["id"] = "enchant.stat_2954116742|32976", ["text"] = "Allocates Gem Enthusiast", ["type"] = "enchant", }, - [439] = { + { ["id"] = "enchant.stat_2954116742|27875", ["text"] = "Allocates General Electric", ["type"] = "enchant", }, - [440] = { + { ["id"] = "enchant.stat_2954116742|17150", ["text"] = "Allocates General's Bindings", ["type"] = "enchant", }, - [441] = { + { ["id"] = "enchant.stat_2954116742|9020", ["text"] = "Allocates Giantslayer", ["type"] = "enchant", }, - [442] = { + { ["id"] = "enchant.stat_2954116742|46365", ["text"] = "Allocates Gigantic Following", ["type"] = "enchant", }, - [443] = { + { ["id"] = "enchant.stat_2954116742|41972", ["text"] = "Allocates Glaciation", ["type"] = "enchant", }, - [444] = { + { ["id"] = "enchant.stat_2954116742|56488", ["text"] = "Allocates Glancing Deflection", ["type"] = "enchant", }, - [445] = { + { ["id"] = "enchant.stat_2954116742|23939", ["text"] = "Allocates Glazed Flesh", ["type"] = "enchant", }, - [446] = { + { ["id"] = "enchant.stat_2954116742|63031", ["text"] = "Allocates Glorious Anticipation", ["type"] = "enchant", }, - [447] = { + { ["id"] = "enchant.stat_2954116742|47316", ["text"] = "Allocates Goring", ["type"] = "enchant", }, - [448] = { + { ["id"] = "enchant.stat_2954116742|27704", ["text"] = "Allocates Grace of the Ancestors", ["type"] = "enchant", }, - [449] = { + { ["id"] = "enchant.stat_2954116742|41905", ["text"] = "Allocates Gravedigger", ["type"] = "enchant", }, - [450] = { + { ["id"] = "enchant.stat_2954116742|27687", ["text"] = "Allocates Greatest Defence", ["type"] = "enchant", }, - [451] = { + { ["id"] = "enchant.stat_2954116742|58714", ["text"] = "Allocates Grenadier", ["type"] = "enchant", }, - [452] = { + { ["id"] = "enchant.stat_2954116742|31175", ["text"] = "Allocates Grip of Evil", ["type"] = "enchant", }, - [453] = { + { ["id"] = "enchant.stat_2954116742|20416", ["text"] = "Allocates Grit", ["type"] = "enchant", }, - [454] = { + { ["id"] = "enchant.stat_2954116742|13844", ["text"] = "Allocates Growing Peril", ["type"] = "enchant", }, - [455] = { + { ["id"] = "enchant.stat_2954116742|14945", ["text"] = "Allocates Growing Swarm", ["type"] = "enchant", }, - [456] = { + { ["id"] = "enchant.stat_2954116742|4331", ["text"] = "Allocates Guided Hand", ["type"] = "enchant", }, - [457] = { + { ["id"] = "enchant.stat_2954116742|46499", ["text"] = "Allocates Guts", ["type"] = "enchant", }, - [458] = { + { ["id"] = "enchant.stat_2954116742|29762", ["text"] = "Allocates Guttural Roar", ["type"] = "enchant", }, - [459] = { + { ["id"] = "enchant.stat_2954116742|33229", ["text"] = "Allocates Haemorrhaging Cuts", ["type"] = "enchant", }, - [460] = { + { ["id"] = "enchant.stat_2954116742|44974", ["text"] = "Allocates Hail", ["type"] = "enchant", }, - [461] = { + { ["id"] = "enchant.stat_2954116742|15374", ["text"] = "Allocates Hale Heart", ["type"] = "enchant", }, - [462] = { + { ["id"] = "enchant.stat_2954116742|52803", ["text"] = "Allocates Hale Traveller", ["type"] = "enchant", }, - [463] = { + { ["id"] = "enchant.stat_2954116742|34531", ["text"] = "Allocates Hallowed", ["type"] = "enchant", }, - [464] = { + { ["id"] = "enchant.stat_2954116742|24438", ["text"] = "Allocates Hardened Wood", ["type"] = "enchant", }, - [465] = { + { ["id"] = "enchant.stat_2954116742|40480", ["text"] = "Allocates Harmonic Generator", ["type"] = "enchant", }, - [466] = { + { ["id"] = "enchant.stat_2954116742|12611", ["text"] = "Allocates Harness the Elements", ["type"] = "enchant", }, - [467] = { + { ["id"] = "enchant.stat_2954116742|26331", ["text"] = "Allocates Harsh Winter", ["type"] = "enchant", }, - [468] = { + { ["id"] = "enchant.stat_2954116742|44293", ["text"] = "Allocates Hastening Barrier", ["type"] = "enchant", }, - [469] = { + { ["id"] = "enchant.stat_2954116742|48215", ["text"] = "Allocates Headshot", ["type"] = "enchant", }, - [470] = { + { ["id"] = "enchant.stat_2954116742|35966", ["text"] = "Allocates Heart Tissue", ["type"] = "enchant", }, - [471] = { + { ["id"] = "enchant.stat_2954116742|13407", ["text"] = "Allocates Heartbreaking", ["type"] = "enchant", }, - [472] = { + { ["id"] = "enchant.stat_2954116742|38537", ["text"] = "Allocates Heartstopping", ["type"] = "enchant", }, - [473] = { + { ["id"] = "enchant.stat_2954116742|9896", ["text"] = "Allocates Heartstopping Presence", ["type"] = "enchant", }, - [474] = { + { ["id"] = "enchant.stat_2954116742|372", ["text"] = "Allocates Heatproof", ["type"] = "enchant", }, - [475] = { + { ["id"] = "enchant.stat_2954116742|11826", ["text"] = "Allocates Heavy Ammunition", ["type"] = "enchant", }, - [476] = { + { ["id"] = "enchant.stat_2954116742|59589", ["text"] = "Allocates Heavy Armour", ["type"] = "enchant", }, - [477] = { + { ["id"] = "enchant.stat_2954116742|27491", ["text"] = "Allocates Heavy Buffer", ["type"] = "enchant", }, - [478] = { + { ["id"] = "enchant.stat_2954116742|56997", ["text"] = "Allocates Heavy Contact", ["type"] = "enchant", }, - [479] = { + { ["id"] = "enchant.stat_2954116742|15617", ["text"] = "Allocates Heavy Drinker", ["type"] = "enchant", }, - [480] = { + { ["id"] = "enchant.stat_2954116742|4959", ["text"] = "Allocates Heavy Frost", ["type"] = "enchant", }, - [481] = { + { ["id"] = "enchant.stat_2954116742|41512", ["text"] = "Allocates Heavy Weaponry", ["type"] = "enchant", }, - [482] = { + { ["id"] = "enchant.stat_2954116742|48418", ["text"] = "Allocates Hefty Unit", ["type"] = "enchant", }, - [483] = { + { ["id"] = "enchant.stat_2954116742|45777", ["text"] = "Allocates Hidden Barb", ["type"] = "enchant", }, - [484] = { + { ["id"] = "enchant.stat_2954116742|41935", ["text"] = "Allocates Hide of the Bear", ["type"] = "enchant", }, - [485] = { + { ["id"] = "enchant.stat_2954116742|30456", ["text"] = "Allocates High Alert", ["type"] = "enchant", }, - [486] = { + { ["id"] = "enchant.stat_2954116742|54805", ["text"] = "Allocates Hindered Capabilities", ["type"] = "enchant", }, - [487] = { + { ["id"] = "enchant.stat_2954116742|60273", ["text"] = "Allocates Hindering Obstacles", ["type"] = "enchant", }, - [488] = { + { ["id"] = "enchant.stat_2954116742|23078", ["text"] = "Allocates Holy Protector", ["type"] = "enchant", }, - [489] = { + { ["id"] = "enchant.stat_2954116742|48014", ["text"] = "Allocates Honourless", ["type"] = "enchant", }, - [490] = { + { ["id"] = "enchant.stat_2954116742|30395", ["text"] = "Allocates Howling Beast", ["type"] = "enchant", }, - [491] = { + { ["id"] = "enchant.stat_2954116742|4673", ["text"] = "Allocates Hulking Smash", ["type"] = "enchant", }, - [492] = { + { ["id"] = "enchant.stat_2954116742|57471", ["text"] = "Allocates Hunker Down", ["type"] = "enchant", }, - [493] = { + { ["id"] = "enchant.stat_2954116742|48617", ["text"] = "Allocates Hunter", ["type"] = "enchant", }, - [494] = { + { ["id"] = "enchant.stat_2954116742|33099", ["text"] = "Allocates Hunter's Talisman", ["type"] = "enchant", }, - [495] = { + { ["id"] = "enchant.stat_2954116742|32655", ["text"] = "Allocates Hunting Companion", ["type"] = "enchant", }, - [496] = { + { ["id"] = "enchant.stat_2954116742|23907", ["text"] = "Allocates Ice Storm", ["type"] = "enchant", }, - [497] = { + { ["id"] = "enchant.stat_2954116742|55847", ["text"] = "Allocates Ice Walls", ["type"] = "enchant", }, - [498] = { + { ["id"] = "enchant.stat_2954116742|4031", ["text"] = "Allocates Icebreaker", ["type"] = "enchant", }, - [499] = { + { ["id"] = "enchant.stat_2954116742|32932", ["text"] = "Allocates Ichlotl's Inferno", ["type"] = "enchant", }, - [500] = { + { ["id"] = "enchant.stat_2954116742|7341", ["text"] = "Allocates Ignore Pain", ["type"] = "enchant", }, - [501] = { + { ["id"] = "enchant.stat_2954116742|1823", ["text"] = "Allocates Illuminated Crown", ["type"] = "enchant", }, - [502] = { + { ["id"] = "enchant.stat_2954116742|50912", ["text"] = "Allocates Imbibed Power", ["type"] = "enchant", }, - [503] = { + { ["id"] = "enchant.stat_2954116742|19156", ["text"] = "Allocates Immaterial", ["type"] = "enchant", }, - [504] = { + { ["id"] = "enchant.stat_2954116742|53030", ["text"] = "Allocates Immolation", ["type"] = "enchant", }, - [505] = { + { ["id"] = "enchant.stat_2954116742|24062", ["text"] = "Allocates Immortal Infamy", ["type"] = "enchant", }, - [506] = { + { ["id"] = "enchant.stat_2954116742|51871", ["text"] = "Allocates Immortal Thirst", ["type"] = "enchant", }, - [507] = { + { ["id"] = "enchant.stat_2954116742|16626", ["text"] = "Allocates Impact Area", ["type"] = "enchant", }, - [508] = { + { ["id"] = "enchant.stat_2954116742|64443", ["text"] = "Allocates Impact Force", ["type"] = "enchant", }, - [509] = { + { ["id"] = "enchant.stat_2954116742|46696", ["text"] = "Allocates Impair", ["type"] = "enchant", }, - [510] = { + { ["id"] = "enchant.stat_2954116742|21748", ["text"] = "Allocates Impending Doom", ["type"] = "enchant", }, - [511] = { + { ["id"] = "enchant.stat_2954116742|65023", ["text"] = "Allocates Impenetrable Shell", ["type"] = "enchant", }, - [512] = { + { ["id"] = "enchant.stat_2954116742|57379", ["text"] = "Allocates In Your Face", ["type"] = "enchant", }, - [513] = { + { ["id"] = "enchant.stat_2954116742|35028", ["text"] = "Allocates In the Thick of It", ["type"] = "enchant", }, - [514] = { + { ["id"] = "enchant.stat_2954116742|62310", ["text"] = "Allocates Incendiary", ["type"] = "enchant", }, - [515] = { + { ["id"] = "enchant.stat_2954116742|36630", ["text"] = "Allocates Incision", ["type"] = "enchant", }, - [516] = { + { ["id"] = "enchant.stat_2954116742|47270", ["text"] = "Allocates Inescapable Cold", ["type"] = "enchant", }, - [517] = { + { ["id"] = "enchant.stat_2954116742|22817", ["text"] = "Allocates Inevitable Rupture", ["type"] = "enchant", }, - [518] = { + { ["id"] = "enchant.stat_2954116742|61354", ["text"] = "Allocates Infernal Limit", ["type"] = "enchant", }, - [519] = { + { ["id"] = "enchant.stat_2954116742|57110", ["text"] = "Allocates Infused Flesh", ["type"] = "enchant", }, - [520] = { + { ["id"] = "enchant.stat_2954116742|38965", ["text"] = "Allocates Infused Limits", ["type"] = "enchant", }, - [521] = { + { ["id"] = "enchant.stat_2954116742|24764", ["text"] = "Allocates Infusing Power", ["type"] = "enchant", }, - [522] = { + { ["id"] = "enchant.stat_2954116742|59387", ["text"] = "Allocates Infusion of Power", ["type"] = "enchant", }, - [523] = { + { ["id"] = "enchant.stat_2954116742|39567", ["text"] = "Allocates Ingenuity", ["type"] = "enchant", }, - [524] = { + { ["id"] = "enchant.stat_2954116742|46683", ["text"] = "Allocates Inherited Strength ", ["type"] = "enchant", }, - [525] = { + { ["id"] = "enchant.stat_2954116742|23227", ["text"] = "Allocates Initiative", ["type"] = "enchant", }, - [526] = { + { ["id"] = "enchant.stat_2954116742|30562", ["text"] = "Allocates Inner Faith", ["type"] = "enchant", }, - [527] = { + { ["id"] = "enchant.stat_2954116742|116", ["text"] = "Allocates Insightfulness", ["type"] = "enchant", }, - [528] = { + { ["id"] = "enchant.stat_2954116742|16150", ["text"] = "Allocates Inspiring Ally", ["type"] = "enchant", }, - [529] = { + { ["id"] = "enchant.stat_2954116742|4661", ["text"] = "Allocates Inspiring Leader", ["type"] = "enchant", }, - [530] = { + { ["id"] = "enchant.stat_2954116742|43944", ["text"] = "Allocates Instability", ["type"] = "enchant", }, - [531] = { + { ["id"] = "enchant.stat_2954116742|9736", ["text"] = "Allocates Insulated Treads", ["type"] = "enchant", }, - [532] = { + { ["id"] = "enchant.stat_2954116742|48649", ["text"] = "Allocates Insulating Hide", ["type"] = "enchant", }, - [533] = { + { ["id"] = "enchant.stat_2954116742|46182", ["text"] = "Allocates Intense Dose", ["type"] = "enchant", }, - [534] = { + { ["id"] = "enchant.stat_2954116742|65016", ["text"] = "Allocates Intense Flames", ["type"] = "enchant", }, - [535] = { + { ["id"] = "enchant.stat_2954116742|7668", ["text"] = "Allocates Internal Bleeding", ["type"] = "enchant", }, - [536] = { + { ["id"] = "enchant.stat_2954116742|35369", ["text"] = "Allocates Investing Energies", ["type"] = "enchant", }, - [537] = { + { ["id"] = "enchant.stat_2954116742|41394", ["text"] = "Allocates Invigorating Archon", ["type"] = "enchant", }, - [538] = { + { ["id"] = "enchant.stat_2954116742|50023", ["text"] = "Allocates Invigorating Grandeur", ["type"] = "enchant", }, - [539] = { + { ["id"] = "enchant.stat_2954116742|28408", ["text"] = "Allocates Invigorating Hate", ["type"] = "enchant", }, - [540] = { + { ["id"] = "enchant.stat_2954116742|24491", ["text"] = "Allocates Invocated Echoes", ["type"] = "enchant", }, - [541] = { + { ["id"] = "enchant.stat_2954116742|51934", ["text"] = "Allocates Invocated Efficiency", ["type"] = "enchant", }, - [542] = { + { ["id"] = "enchant.stat_2954116742|338", ["text"] = "Allocates Invocated Limit", ["type"] = "enchant", }, - [543] = { + { ["id"] = "enchant.stat_2954116742|31724", ["text"] = "Allocates Iron Slippers", ["type"] = "enchant", }, - [544] = { + { ["id"] = "enchant.stat_2954116742|22626", ["text"] = "Allocates Irreparable", ["type"] = "enchant", }, - [545] = { + { ["id"] = "enchant.stat_2954116742|16618", ["text"] = "Allocates Jack of all Trades", ["type"] = "enchant", }, - [546] = { + { ["id"] = "enchant.stat_2954116742|10265", ["text"] = "Allocates Javelin", ["type"] = "enchant", }, - [547] = { + { ["id"] = "enchant.stat_2954116742|3663", ["text"] = "Allocates Kaom's Blessing", ["type"] = "enchant", }, - [548] = { + { ["id"] = "enchant.stat_2954116742|37302", ["text"] = "Allocates Kept at Bay", ["type"] = "enchant", }, - [549] = { + { ["id"] = "enchant.stat_2954116742|56453", ["text"] = "Allocates Killer Instinct", ["type"] = "enchant", }, - [550] = { + { ["id"] = "enchant.stat_2954116742|26107", ["text"] = "Allocates Kite Runner", ["type"] = "enchant", }, - [551] = { + { ["id"] = "enchant.stat_2954116742|24736", ["text"] = "Allocates Knight of Chitus", ["type"] = "enchant", }, - [552] = { + { ["id"] = "enchant.stat_2954116742|9863", ["text"] = "Allocates Knight of Izaro", ["type"] = "enchant", }, - [553] = { + { ["id"] = "enchant.stat_2954116742|1861", ["text"] = "Allocates Knight of Tarcus", ["type"] = "enchant", }, - [554] = { + { ["id"] = "enchant.stat_2954116742|2397", ["text"] = "Allocates Last Stand", ["type"] = "enchant", }, - [555] = { + { ["id"] = "enchant.stat_2954116742|64659", ["text"] = "Allocates Lasting Boons", ["type"] = "enchant", }, - [556] = { + { ["id"] = "enchant.stat_2954116742|58096", ["text"] = "Allocates Lasting Incantations", ["type"] = "enchant", }, - [557] = { + { ["id"] = "enchant.stat_2954116742|61741", ["text"] = "Allocates Lasting Toxins", ["type"] = "enchant", }, - [558] = { + { ["id"] = "enchant.stat_2954116742|18496", ["text"] = "Allocates Lasting Trauma", ["type"] = "enchant", }, - [559] = { + { ["id"] = "enchant.stat_2954116742|8607", ["text"] = "Allocates Lavianga's Brew", ["type"] = "enchant", }, - [560] = { + { ["id"] = "enchant.stat_2954116742|45599", ["text"] = "Allocates Lay Siege", ["type"] = "enchant", }, - [561] = { + { ["id"] = "enchant.stat_2954116742|40687", ["text"] = "Allocates Lead by Example", ["type"] = "enchant", }, - [562] = { + { ["id"] = "enchant.stat_2954116742|8531", ["text"] = "Allocates Leaping Ambush", ["type"] = "enchant", }, - [563] = { + { ["id"] = "enchant.stat_2954116742|51446", ["text"] = "Allocates Leather Bound Gauntlets", ["type"] = "enchant", }, - [564] = { + { ["id"] = "enchant.stat_2954116742|63431", ["text"] = "Allocates Leeching Toxins", ["type"] = "enchant", }, - [565] = { + { ["id"] = "enchant.stat_2954116742|19644", ["text"] = "Allocates Left Hand of Darkness", ["type"] = "enchant", }, - [566] = { + { ["id"] = "enchant.stat_2954116742|4091", ["text"] = "Allocates Left Ventricle", ["type"] = "enchant", }, - [567] = { + { ["id"] = "enchant.stat_2954116742|55375", ["text"] = "Allocates Licking Wounds", ["type"] = "enchant", }, - [568] = { + { ["id"] = "enchant.stat_2954116742|31129", ["text"] = "Allocates Lifelong Friend", ["type"] = "enchant", }, - [569] = { + { ["id"] = "enchant.stat_2954116742|55131", ["text"] = "Allocates Light on your Feet", ["type"] = "enchant", }, - [570] = { + { ["id"] = "enchant.stat_2954116742|13738", ["text"] = "Allocates Lightning Quick", ["type"] = "enchant", }, - [571] = { + { ["id"] = "enchant.stat_2954116742|44566", ["text"] = "Allocates Lightning Rod", ["type"] = "enchant", }, - [572] = { + { ["id"] = "enchant.stat_2954116742|60878", ["text"] = "Allocates Lightning Storm", ["type"] = "enchant", }, - [573] = { + { ["id"] = "enchant.stat_2954116742|56063", ["text"] = "Allocates Lingering Horror", ["type"] = "enchant", }, - [574] = { + { ["id"] = "enchant.stat_2954116742|16499", ["text"] = "Allocates Lingering Whispers", ["type"] = "enchant", }, - [575] = { + { ["id"] = "enchant.stat_2954116742|62887", ["text"] = "Allocates Living Death", ["type"] = "enchant", }, - [576] = { + { ["id"] = "enchant.stat_2954116742|31745", ["text"] = "Allocates Lockdown", ["type"] = "enchant", }, - [577] = { + { ["id"] = "enchant.stat_2954116742|56999", ["text"] = "Allocates Locked On", ["type"] = "enchant", }, - [578] = { + { ["id"] = "enchant.stat_2954116742|12964", ["text"] = "Allocates Lone Warrior", ["type"] = "enchant", }, - [579] = { + { ["id"] = "enchant.stat_2954116742|31826", ["text"] = "Allocates Long Distance Relationship", ["type"] = "enchant", }, - [580] = { + { ["id"] = "enchant.stat_2954116742|13542", ["text"] = "Allocates Loose Flesh", ["type"] = "enchant", }, - [581] = { + { ["id"] = "enchant.stat_2954116742|33240", ["text"] = "Allocates Lord of Horrors", ["type"] = "enchant", }, - [582] = { + { ["id"] = "enchant.stat_2954116742|27779", ["text"] = "Allocates Lord of the Squall", ["type"] = "enchant", }, - [583] = { + { ["id"] = "enchant.stat_2954116742|42959", ["text"] = "Allocates Low Tolerance", ["type"] = "enchant", }, - [584] = { + { ["id"] = "enchant.stat_2954116742|51891", ["text"] = "Allocates Lucidity", ["type"] = "enchant", }, - [585] = { + { ["id"] = "enchant.stat_2954116742|59303", ["text"] = "Allocates Lucky Rabbit Foot", ["type"] = "enchant", }, - [586] = { + { ["id"] = "enchant.stat_2954116742|1104", ["text"] = "Allocates Lust for Power", ["type"] = "enchant", }, - [587] = { + { ["id"] = "enchant.stat_2954116742|27009", ["text"] = "Allocates Lust for Sacrifice", ["type"] = "enchant", }, - [588] = { + { ["id"] = "enchant.stat_2954116742|44952", ["text"] = "Allocates Made to Last", ["type"] = "enchant", }, - [589] = { + { ["id"] = "enchant.stat_2954116742|23738", ["text"] = "Allocates Madness in the Bones", ["type"] = "enchant", }, - [590] = { + { ["id"] = "enchant.stat_2954116742|39568", ["text"] = "Allocates Magnum Opus", ["type"] = "enchant", }, - [591] = { + { ["id"] = "enchant.stat_2954116742|41580", ["text"] = "Allocates Maiming Strike", ["type"] = "enchant", }, - [592] = { + { ["id"] = "enchant.stat_2954116742|37742", ["text"] = "Allocates Manifold Method", ["type"] = "enchant", }, - [593] = { + { ["id"] = "enchant.stat_2954116742|64050", ["text"] = "Allocates Marathon Runner", ["type"] = "enchant", }, - [594] = { + { ["id"] = "enchant.stat_2954116742|44756", ["text"] = "Allocates Marked Agility", ["type"] = "enchant", }, - [595] = { + { ["id"] = "enchant.stat_2954116742|36976", ["text"] = "Allocates Marked for Death", ["type"] = "enchant", }, - [596] = { + { ["id"] = "enchant.stat_2954116742|63830", ["text"] = "Allocates Marked for Sickness", ["type"] = "enchant", }, - [597] = { + { ["id"] = "enchant.stat_2954116742|2113", ["text"] = "Allocates Martial Artistry", ["type"] = "enchant", }, - [598] = { + { ["id"] = "enchant.stat_2954116742|27108", ["text"] = "Allocates Mass Hysteria", ["type"] = "enchant", }, - [599] = { + { ["id"] = "enchant.stat_2954116742|34340", ["text"] = "Allocates Mass Rejuvenation", ["type"] = "enchant", }, - [600] = { + { ["id"] = "enchant.stat_2954116742|30341", ["text"] = "Allocates Master Fletching", ["type"] = "enchant", }, - [601] = { + { ["id"] = "enchant.stat_2954116742|40345", ["text"] = "Allocates Master of Hexes", ["type"] = "enchant", }, - [602] = { + { ["id"] = "enchant.stat_2954116742|27513", ["text"] = "Allocates Material Solidification", ["type"] = "enchant", }, - [603] = { + { ["id"] = "enchant.stat_2954116742|11886", ["text"] = "Allocates Mauling Stuns", ["type"] = "enchant", }, - [604] = { + { ["id"] = "enchant.stat_2954116742|25620", ["text"] = "Allocates Meat Recycling", ["type"] = "enchant", }, - [605] = { + { ["id"] = "enchant.stat_2954116742|3215", ["text"] = "Allocates Melding", ["type"] = "enchant", }, - [606] = { + { ["id"] = "enchant.stat_2954116742|43939", ["text"] = "Allocates Melting Flames", ["type"] = "enchant", }, - [607] = { + { ["id"] = "enchant.stat_2954116742|9652", ["text"] = "Allocates Mending Deflection", ["type"] = "enchant", }, - [608] = { + { ["id"] = "enchant.stat_2954116742|16466", ["text"] = "Allocates Mental Alacrity", ["type"] = "enchant", }, - [609] = { + { ["id"] = "enchant.stat_2954116742|9226", ["text"] = "Allocates Mental Perseverance", ["type"] = "enchant", }, - [610] = { + { ["id"] = "enchant.stat_2954116742|24120", ["text"] = "Allocates Mental Toughness", ["type"] = "enchant", }, - [611] = { + { ["id"] = "enchant.stat_2954116742|45632", ["text"] = "Allocates Mind Eraser", ["type"] = "enchant", }, - [612] = { + { ["id"] = "enchant.stat_2954116742|11392", ["text"] = "Allocates Molten Being", ["type"] = "enchant", }, - [613] = { + { ["id"] = "enchant.stat_2954116742|51868", ["text"] = "Allocates Molten Carapace", ["type"] = "enchant", }, - [614] = { + { ["id"] = "enchant.stat_2954116742|36100", ["text"] = "Allocates Molten Claw", ["type"] = "enchant", }, - [615] = { + { ["id"] = "enchant.stat_2954116742|17548", ["text"] = "Allocates Moment of Truth", ["type"] = "enchant", }, - [616] = { + { ["id"] = "enchant.stat_2954116742|63579", ["text"] = "Allocates Momentum", ["type"] = "enchant", }, - [617] = { + { ["id"] = "enchant.stat_2954116742|64770", ["text"] = "Allocates Morgana, the Storm Seer", ["type"] = "enchant", }, - [618] = { + { ["id"] = "enchant.stat_2954116742|47560", ["text"] = "Allocates Multi Shot", ["type"] = "enchant", }, - [619] = { + { ["id"] = "enchant.stat_2954116742|8810", ["text"] = "Allocates Multitasking", ["type"] = "enchant", }, - [620] = { + { ["id"] = "enchant.stat_2954116742|50239", ["text"] = "Allocates Mutewind Agility", ["type"] = "enchant", }, - [621] = { + { ["id"] = "enchant.stat_2954116742|35046", ["text"] = "Allocates Mystic Avalanche", ["type"] = "enchant", }, - [622] = { + { ["id"] = "enchant.stat_2954116742|52764", ["text"] = "Allocates Mystical Rage", ["type"] = "enchant", }, - [623] = { + { ["id"] = "enchant.stat_2954116742|934", ["text"] = "Allocates Natural Immunity", ["type"] = "enchant", }, - [624] = { + { ["id"] = "enchant.stat_2954116742|53265", ["text"] = "Allocates Nature's Bite", ["type"] = "enchant", }, - [625] = { + { ["id"] = "enchant.stat_2954116742|4709", ["text"] = "Allocates Near Sighted", ["type"] = "enchant", }, - [626] = { + { ["id"] = "enchant.stat_2954116742|35581", ["text"] = "Allocates Near at Hand", ["type"] = "enchant", }, - [627] = { + { ["id"] = "enchant.stat_2954116742|10499", ["text"] = "Allocates Necromantic Ward", ["type"] = "enchant", }, - [628] = { + { ["id"] = "enchant.stat_2954116742|11376", ["text"] = "Allocates Necrotic Touch", ["type"] = "enchant", }, - [629] = { + { ["id"] = "enchant.stat_2954116742|59541", ["text"] = "Allocates Necrotised Flesh", ["type"] = "enchant", }, - [630] = { + { ["id"] = "enchant.stat_2954116742|40292", ["text"] = "Allocates Nimble Strength", ["type"] = "enchant", }, - [631] = { + { ["id"] = "enchant.stat_2954116742|37266", ["text"] = "Allocates Nourishing Ally", ["type"] = "enchant", }, - [632] = { + { ["id"] = "enchant.stat_2954116742|60992", ["text"] = "Allocates Nurturing Guardian", ["type"] = "enchant", }, - [633] = { + { ["id"] = "enchant.stat_2954116742|42036", ["text"] = "Allocates Off-Balancing Retort", ["type"] = "enchant", }, - [634] = { + { ["id"] = "enchant.stat_2954116742|35918", ["text"] = "Allocates One For All", ["type"] = "enchant", }, - [635] = { + { ["id"] = "enchant.stat_2954116742|44753", ["text"] = "Allocates One With Flame", ["type"] = "enchant", }, - [636] = { + { ["id"] = "enchant.stat_2954116742|34316", ["text"] = "Allocates One with the River", ["type"] = "enchant", }, - [637] = { + { ["id"] = "enchant.stat_2954116742|9444", ["text"] = "Allocates One with the Storm", ["type"] = "enchant", }, - [638] = { + { ["id"] = "enchant.stat_2954116742|52199", ["text"] = "Allocates Overexposure", ["type"] = "enchant", }, - [639] = { + { ["id"] = "enchant.stat_2954116742|65204", ["text"] = "Allocates Overflowing Power", ["type"] = "enchant", }, - [640] = { + { ["id"] = "enchant.stat_2954116742|42390", ["text"] = "Allocates Overheating Blow", ["type"] = "enchant", }, - [641] = { + { ["id"] = "enchant.stat_2954116742|47635", ["text"] = "Allocates Overload", ["type"] = "enchant", }, - [642] = { + { ["id"] = "enchant.stat_2954116742|25513", ["text"] = "Allocates Overwhelm", ["type"] = "enchant", }, - [643] = { + { ["id"] = "enchant.stat_2954116742|57388", ["text"] = "Allocates Overwhelming Strike", ["type"] = "enchant", }, - [644] = { + { ["id"] = "enchant.stat_2954116742|10295", ["text"] = "Allocates Overzealous", ["type"] = "enchant", }, - [645] = { + { ["id"] = "enchant.stat_2954116742|21784", ["text"] = "Allocates Pack Encouragement", ["type"] = "enchant", }, - [646] = { + { ["id"] = "enchant.stat_2954116742|20686", ["text"] = "Allocates Paragon", ["type"] = "enchant", }, - [647] = { + { ["id"] = "enchant.stat_2954116742|24766", ["text"] = "Allocates Paranoia", ["type"] = "enchant", }, - [648] = { + { ["id"] = "enchant.stat_2954116742|56016", ["text"] = "Allocates Passthrough Rounds", ["type"] = "enchant", }, - [649] = { + { ["id"] = "enchant.stat_2954116742|62230", ["text"] = "Allocates Patient Barrier", ["type"] = "enchant", }, - [650] = { + { ["id"] = "enchant.stat_2954116742|60404", ["text"] = "Allocates Perfect Opportunity", ["type"] = "enchant", }, - [651] = { + { ["id"] = "enchant.stat_2954116742|49661", ["text"] = "Allocates Perfectly Placed Knife", ["type"] = "enchant", }, - [652] = { + { ["id"] = "enchant.stat_2954116742|17330", ["text"] = "Allocates Perforation", ["type"] = "enchant", }, - [653] = { + { ["id"] = "enchant.stat_2954116742|2863", ["text"] = "Allocates Perpetual Freeze", ["type"] = "enchant", }, - [654] = { + { ["id"] = "enchant.stat_2954116742|34308", ["text"] = "Allocates Personal Touch", ["type"] = "enchant", }, - [655] = { + { ["id"] = "enchant.stat_2954116742|7651", ["text"] = "Allocates Pierce the Heart", ["type"] = "enchant", }, - [656] = { + { ["id"] = "enchant.stat_2954116742|17260", ["text"] = "Allocates Piercing Claw", ["type"] = "enchant", }, - [657] = { + { ["id"] = "enchant.stat_2954116742|4534", ["text"] = "Allocates Piercing Shot", ["type"] = "enchant", }, - [658] = { + { ["id"] = "enchant.stat_2954116742|51129", ["text"] = "Allocates Pile On", ["type"] = "enchant", }, - [659] = { + { ["id"] = "enchant.stat_2954116742|60083", ["text"] = "Allocates Pin and Run", ["type"] = "enchant", }, - [660] = { + { ["id"] = "enchant.stat_2954116742|4447", ["text"] = "Allocates Pin their Motivation", ["type"] = "enchant", }, - [661] = { + { ["id"] = "enchant.stat_2954116742|16816", ["text"] = "Allocates Pinpoint Shot", ["type"] = "enchant", }, - [662] = { + { ["id"] = "enchant.stat_2954116742|38111", ["text"] = "Allocates Pliable Flesh", ["type"] = "enchant", }, - [663] = { + { ["id"] = "enchant.stat_2954116742|58426", ["text"] = "Allocates Pocket Sand", ["type"] = "enchant", }, - [664] = { + { ["id"] = "enchant.stat_2954116742|27950", ["text"] = "Allocates Polished Iron", ["type"] = "enchant", }, - [665] = { + { ["id"] = "enchant.stat_2954116742|57047", ["text"] = "Allocates Polymathy", ["type"] = "enchant", }, - [666] = { + { ["id"] = "enchant.stat_2954116742|19125", ["text"] = "Allocates Potent Incantation", ["type"] = "enchant", }, - [667] = { + { ["id"] = "enchant.stat_2954116742|15083", ["text"] = "Allocates Power Conduction", ["type"] = "enchant", }, - [668] = { + { ["id"] = "enchant.stat_2954116742|6178", ["text"] = "Allocates Power Shots", ["type"] = "enchant", }, - [669] = { + { ["id"] = "enchant.stat_2954116742|49150", ["text"] = "Allocates Precise Invocations", ["type"] = "enchant", }, - [670] = { + { ["id"] = "enchant.stat_2954116742|13895", ["text"] = "Allocates Precise Point", ["type"] = "enchant", }, - [671] = { + { ["id"] = "enchant.stat_2954116742|34425", ["text"] = "Allocates Precise Volatility", ["type"] = "enchant", }, - [672] = { + { ["id"] = "enchant.stat_2954116742|19337", ["text"] = "Allocates Precision Salvo", ["type"] = "enchant", }, - [673] = { + { ["id"] = "enchant.stat_2954116742|21380", ["text"] = "Allocates Preemptive Strike", ["type"] = "enchant", }, - [674] = { + { ["id"] = "enchant.stat_2954116742|37872", ["text"] = "Allocates Presence Present", ["type"] = "enchant", }, - [675] = { + { ["id"] = "enchant.stat_2954116742|32951", ["text"] = "Allocates Preservation", ["type"] = "enchant", }, - [676] = { + { ["id"] = "enchant.stat_2954116742|28329", ["text"] = "Allocates Pressure Points", ["type"] = "enchant", }, - [677] = { + { ["id"] = "enchant.stat_2954116742|9908", ["text"] = "Allocates Price of Freedom", ["type"] = "enchant", }, - [678] = { + { ["id"] = "enchant.stat_2954116742|32071", ["text"] = "Allocates Primal Growth", ["type"] = "enchant", }, - [679] = { + { ["id"] = "enchant.stat_2954116742|31364", ["text"] = "Allocates Primal Protection", ["type"] = "enchant", }, - [680] = { + { ["id"] = "enchant.stat_2954116742|28892", ["text"] = "Allocates Primal Rage", ["type"] = "enchant", }, - [681] = { + { ["id"] = "enchant.stat_2954116742|50884", ["text"] = "Allocates Primal Sundering", ["type"] = "enchant", }, - [682] = { + { ["id"] = "enchant.stat_2954116742|26356", ["text"] = "Allocates Primed to Explode", ["type"] = "enchant", }, - [683] = { + { ["id"] = "enchant.stat_2954116742|62034", ["text"] = "Allocates Prism Guard", ["type"] = "enchant", }, - [684] = { + { ["id"] = "enchant.stat_2954116742|54814", ["text"] = "Allocates Profane Commander", ["type"] = "enchant", }, - [685] = { + { ["id"] = "enchant.stat_2954116742|58397", ["text"] = "Allocates Proficiency", ["type"] = "enchant", }, - [686] = { + { ["id"] = "enchant.stat_2954116742|19236", ["text"] = "Allocates Projectile Bulwark", ["type"] = "enchant", }, - [687] = { + { ["id"] = "enchant.stat_2954116742|45874", ["text"] = "Allocates Proliferating Weeds", ["type"] = "enchant", }, - [688] = { + { ["id"] = "enchant.stat_2954116742|19442", ["text"] = "Allocates Prolonged Assault", ["type"] = "enchant", }, - [689] = { + { ["id"] = "enchant.stat_2954116742|49550", ["text"] = "Allocates Prolonged Fury", ["type"] = "enchant", }, - [690] = { + { ["id"] = "enchant.stat_2954116742|54998", ["text"] = "Allocates Protraction", ["type"] = "enchant", }, - [691] = { + { ["id"] = "enchant.stat_2954116742|38614", ["text"] = "Allocates Psychic Fragmentation", ["type"] = "enchant", }, - [692] = { + { ["id"] = "enchant.stat_2954116742|13482", ["text"] = "Allocates Punctured Lung", ["type"] = "enchant", }, - [693] = { + { ["id"] = "enchant.stat_2954116742|14258", ["text"] = "Allocates Puppet Master chance", ["type"] = "enchant", }, - [694] = { + { ["id"] = "enchant.stat_2954116742|62210", ["text"] = "Allocates Puppet Master chance", ["type"] = "enchant", }, - [695] = { + { ["id"] = "enchant.stat_2954116742|55149", ["text"] = "Allocates Pure Chaos", ["type"] = "enchant", }, - [696] = { + { ["id"] = "enchant.stat_2954116742|28975", ["text"] = "Allocates Pure Power", ["type"] = "enchant", }, - [697] = { + { ["id"] = "enchant.stat_2954116742|6229", ["text"] = "Allocates Push the Advantage", ["type"] = "enchant", }, - [698] = { + { ["id"] = "enchant.stat_2954116742|33542", ["text"] = "Allocates Quick Fingers", ["type"] = "enchant", }, - [699] = { + { ["id"] = "enchant.stat_2954116742|48240", ["text"] = "Allocates Quick Recovery", ["type"] = "enchant", }, - [700] = { + { ["id"] = "enchant.stat_2954116742|55450", ["text"] = "Allocates Rallying Form", ["type"] = "enchant", }, - [701] = { + { ["id"] = "enchant.stat_2954116742|43791", ["text"] = "Allocates Rallying Icon", ["type"] = "enchant", }, - [702] = { + { ["id"] = "enchant.stat_2954116742|64119", ["text"] = "Allocates Rapid Reload", ["type"] = "enchant", }, - [703] = { + { ["id"] = "enchant.stat_2954116742|7604", ["text"] = "Allocates Rapid Strike", ["type"] = "enchant", }, - [704] = { + { ["id"] = "enchant.stat_2954116742|62185", ["text"] = "Allocates Rattled", ["type"] = "enchant", }, - [705] = { + { ["id"] = "enchant.stat_2954116742|3567", ["text"] = "Allocates Raw Mana", ["type"] = "enchant", }, - [706] = { + { ["id"] = "enchant.stat_2954116742|17372", ["text"] = "Allocates Reaching Strike", ["type"] = "enchant", }, - [707] = { + { ["id"] = "enchant.stat_2954116742|10602", ["text"] = "Allocates Reaving", ["type"] = "enchant", }, - [708] = { + { ["id"] = "enchant.stat_2954116742|61309", ["text"] = "Allocates Redblade Discipline", ["type"] = "enchant", }, - [709] = { + { ["id"] = "enchant.stat_2954116742|45244", ["text"] = "Allocates Refills", ["type"] = "enchant", }, - [710] = { + { ["id"] = "enchant.stat_2954116742|26447", ["text"] = "Allocates Refocus", ["type"] = "enchant", }, - [711] = { + { ["id"] = "enchant.stat_2954116742|20388", ["text"] = "Allocates Regenerative Flesh", ["type"] = "enchant", }, - [712] = { + { ["id"] = "enchant.stat_2954116742|56388", ["text"] = "Allocates Reinforced Rallying", ["type"] = "enchant", }, - [713] = { + { ["id"] = "enchant.stat_2954116742|35809", ["text"] = "Allocates Reinvigoration", ["type"] = "enchant", }, - [714] = { + { ["id"] = "enchant.stat_2954116742|55180", ["text"] = "Allocates Relentless Fallen", ["type"] = "enchant", }, - [715] = { + { ["id"] = "enchant.stat_2954116742|1506", ["text"] = "Allocates Remnant Attraction", ["type"] = "enchant", }, - [716] = { + { ["id"] = "enchant.stat_2954116742|65468", ["text"] = "Allocates Repeating Explosives", ["type"] = "enchant", }, - [717] = { + { ["id"] = "enchant.stat_2954116742|21251", ["text"] = "Allocates Replenishing Horde", ["type"] = "enchant", }, - [718] = { + { ["id"] = "enchant.stat_2954116742|20414", ["text"] = "Allocates Reprisal", ["type"] = "enchant", }, - [719] = { + { ["id"] = "enchant.stat_2954116742|10029", ["text"] = "Allocates Repulsion", ["type"] = "enchant", }, - [720] = { + { ["id"] = "enchant.stat_2954116742|25361", ["text"] = "Allocates Resolute Reach", ["type"] = "enchant", }, - [721] = { + { ["id"] = "enchant.stat_2954116742|56860", ["text"] = "Allocates Resolute Reprisal", ["type"] = "enchant", }, - [722] = { + { ["id"] = "enchant.stat_2954116742|40325", ["text"] = "Allocates Resolution", ["type"] = "enchant", }, - [723] = { + { ["id"] = "enchant.stat_2954116742|38972", ["text"] = "Allocates Restless Dead", ["type"] = "enchant", }, - [724] = { + { ["id"] = "enchant.stat_2954116742|31773", ["text"] = "Allocates Resurging Archon", ["type"] = "enchant", }, - [725] = { + { ["id"] = "enchant.stat_2954116742|7395", ["text"] = "Allocates Retaliation", ["type"] = "enchant", }, - [726] = { + { ["id"] = "enchant.stat_2954116742|9009", ["text"] = "Allocates Return to Nature", ["type"] = "enchant", }, - [727] = { + { ["id"] = "enchant.stat_2954116742|7062", ["text"] = "Allocates Reusable Ammunition", ["type"] = "enchant", }, - [728] = { + { ["id"] = "enchant.stat_2954116742|3188", ["text"] = "Allocates Revenge", ["type"] = "enchant", }, - [729] = { + { ["id"] = "enchant.stat_2954116742|33400", ["text"] = "Allocates Reverberating Parry", ["type"] = "enchant", }, - [730] = { + { ["id"] = "enchant.stat_2954116742|8660", ["text"] = "Allocates Reverberation", ["type"] = "enchant", }, - [731] = { + { ["id"] = "enchant.stat_2954116742|37619", ["text"] = "Allocates Rhythm of Fire", ["type"] = "enchant", }, - [732] = { + { ["id"] = "enchant.stat_2954116742|13693", ["text"] = "Allocates Rhythm of Ice", ["type"] = "enchant", }, - [733] = { + { ["id"] = "enchant.stat_2954116742|8957", ["text"] = "Allocates Right Hand of Darkness", ["type"] = "enchant", }, - [734] = { + { ["id"] = "enchant.stat_2954116742|28613", ["text"] = "Allocates Roaring Cries", ["type"] = "enchant", }, - [735] = { + { ["id"] = "enchant.stat_2954116742|60269", ["text"] = "Allocates Roil", ["type"] = "enchant", }, - [736] = { + { ["id"] = "enchant.stat_2954116742|61112", ["text"] = "Allocates Roll and Strike", ["type"] = "enchant", }, - [737] = { + { ["id"] = "enchant.stat_2954116742|8483", ["text"] = "Allocates Ruin", ["type"] = "enchant", }, - [738] = { + { ["id"] = "enchant.stat_2954116742|18959", ["text"] = "Allocates Ruinic Helm", ["type"] = "enchant", }, - [739] = { + { ["id"] = "enchant.stat_2954116742|53566", ["text"] = "Allocates Run and Gun", ["type"] = "enchant", }, - [740] = { + { ["id"] = "enchant.stat_2954116742|7782", ["text"] = "Allocates Rupturing Pins", ["type"] = "enchant", }, - [741] = { + { ["id"] = "enchant.stat_2954116742|9290", ["text"] = "Allocates Rusted Pins", ["type"] = "enchant", }, - [742] = { + { ["id"] = "enchant.stat_2954116742|14294", ["text"] = "Allocates Sacrificial Blood", ["type"] = "enchant", }, - [743] = { + { ["id"] = "enchant.stat_2954116742|25619", ["text"] = "Allocates Sand in the Eyes", ["type"] = "enchant", }, - [744] = { + { ["id"] = "enchant.stat_2954116742|58215", ["text"] = "Allocates Sanguimantic Rituals", ["type"] = "enchant", }, - [745] = { + { ["id"] = "enchant.stat_2954116742|4810", ["text"] = "Allocates Sanguine Tolerance", ["type"] = "enchant", }, - [746] = { + { ["id"] = "enchant.stat_2954116742|42070", ["text"] = "Allocates Saqawal's Guidance", ["type"] = "enchant", }, - [747] = { + { ["id"] = "enchant.stat_2954116742|35743", ["text"] = "Allocates Saqawal's Hide", ["type"] = "enchant", }, - [748] = { + { ["id"] = "enchant.stat_2954116742|62237", ["text"] = "Allocates Saqawal's Talon", ["type"] = "enchant", }, - [749] = { + { ["id"] = "enchant.stat_2954116742|63255", ["text"] = "Allocates Savagery", ["type"] = "enchant", }, - [750] = { + { ["id"] = "enchant.stat_2954116742|18397", ["text"] = "Allocates Savoured Blood", ["type"] = "enchant", }, - [751] = { + { ["id"] = "enchant.stat_2954116742|45713", ["text"] = "Allocates Savouring", ["type"] = "enchant", }, - [752] = { + { ["id"] = "enchant.stat_2954116742|60619", ["text"] = "Allocates Scales of the Wyvern", ["type"] = "enchant", }, - [753] = { + { ["id"] = "enchant.stat_2954116742|39884", ["text"] = "Allocates Searing Heat", ["type"] = "enchant", }, - [754] = { + { ["id"] = "enchant.stat_2954116742|52229", ["text"] = "Allocates Secrets of the Orb", ["type"] = "enchant", }, - [755] = { + { ["id"] = "enchant.stat_2954116742|5009", ["text"] = "Allocates Seeing Stars", ["type"] = "enchant", }, - [756] = { + { ["id"] = "enchant.stat_2954116742|23630", ["text"] = "Allocates Self Immolation", ["type"] = "enchant", }, - [757] = { + { ["id"] = "enchant.stat_2954116742|44917", ["text"] = "Allocates Self Mortification", ["type"] = "enchant", }, - [758] = { + { ["id"] = "enchant.stat_2954116742|36085", ["text"] = "Allocates Serrated Edges", ["type"] = "enchant", }, - [759] = { + { ["id"] = "enchant.stat_2954116742|13457", ["text"] = "Allocates Shadow Dancing", ["type"] = "enchant", }, - [760] = { + { ["id"] = "enchant.stat_2954116742|53150", ["text"] = "Allocates Sharp Sight", ["type"] = "enchant", }, - [761] = { + { ["id"] = "enchant.stat_2954116742|61703", ["text"] = "Allocates Sharpened Claw", ["type"] = "enchant", }, - [762] = { + { ["id"] = "enchant.stat_2954116742|41811", ["text"] = "Allocates Shatter Palm", ["type"] = "enchant", }, - [763] = { + { ["id"] = "enchant.stat_2954116742|49740", ["text"] = "Allocates Shattered Crystal", ["type"] = "enchant", }, - [764] = { + { ["id"] = "enchant.stat_2954116742|48658", ["text"] = "Allocates Shattering", ["type"] = "enchant", }, - [765] = { + { ["id"] = "enchant.stat_2954116742|53527", ["text"] = "Allocates Shattering Blow", ["type"] = "enchant", }, - [766] = { + { ["id"] = "enchant.stat_2954116742|64415", ["text"] = "Allocates Shattering Daze", ["type"] = "enchant", }, - [767] = { + { ["id"] = "enchant.stat_2954116742|15644", ["text"] = "Allocates Shedding Skin", ["type"] = "enchant", }, - [768] = { + { ["id"] = "enchant.stat_2954116742|37244", ["text"] = "Allocates Shield Expertise", ["type"] = "enchant", }, - [769] = { + { ["id"] = "enchant.stat_2954116742|57617", ["text"] = "Allocates Shifted Strikes", ["type"] = "enchant", }, - [770] = { + { ["id"] = "enchant.stat_2954116742|53941", ["text"] = "Allocates Shimmering", ["type"] = "enchant", }, - [771] = { + { ["id"] = "enchant.stat_2954116742|5335", ["text"] = "Allocates Shimmering Mirage", ["type"] = "enchant", }, - [772] = { + { ["id"] = "enchant.stat_2954116742|29800", ["text"] = "Allocates Shocking Limit", ["type"] = "enchant", }, - [773] = { + { ["id"] = "enchant.stat_2954116742|32448", ["text"] = "Allocates Shockproof", ["type"] = "enchant", }, - [774] = { + { ["id"] = "enchant.stat_2954116742|1087", ["text"] = "Allocates Shockwaves", ["type"] = "enchant", }, - [775] = { + { ["id"] = "enchant.stat_2954116742|46296", ["text"] = "Allocates Short Shot", ["type"] = "enchant", }, - [776] = { + { ["id"] = "enchant.stat_2954116742|55060", ["text"] = "Allocates Shrapnel", ["type"] = "enchant", }, - [777] = { + { ["id"] = "enchant.stat_2954116742|14211", ["text"] = "Allocates Shredding Contraptions", ["type"] = "enchant", }, - [778] = { + { ["id"] = "enchant.stat_2954116742|5284", ["text"] = "Allocates Shredding Force", ["type"] = "enchant", }, - [779] = { + { ["id"] = "enchant.stat_2954116742|47088", ["text"] = "Allocates Sic 'Em", ["type"] = "enchant", }, - [780] = { + { ["id"] = "enchant.stat_2954116742|63037", ["text"] = "Allocates Sigil of Fire", ["type"] = "enchant", }, - [781] = { + { ["id"] = "enchant.stat_2954116742|40803", ["text"] = "Allocates Sigil of Ice", ["type"] = "enchant", }, - [782] = { + { ["id"] = "enchant.stat_2954116742|46024", ["text"] = "Allocates Sigil of Lightning", ["type"] = "enchant", }, - [783] = { + { ["id"] = "enchant.stat_2954116742|17229", ["text"] = "Allocates Silent Guardian", ["type"] = "enchant", }, - [784] = { + { ["id"] = "enchant.stat_2954116742|52392", ["text"] = "Allocates Singular Purpose", ["type"] = "enchant", }, - [785] = { + { ["id"] = "enchant.stat_2954116742|15829", ["text"] = "Allocates Siphon", ["type"] = "enchant", }, - [786] = { + { ["id"] = "enchant.stat_2954116742|12906", ["text"] = "Allocates Sitting Duck", ["type"] = "enchant", }, - [787] = { + { ["id"] = "enchant.stat_2954116742|2645", ["text"] = "Allocates Skullcrusher", ["type"] = "enchant", }, - [788] = { + { ["id"] = "enchant.stat_2954116742|55308", ["text"] = "Allocates Sling Shots", ["type"] = "enchant", }, - [789] = { + { ["id"] = "enchant.stat_2954116742|23362", ["text"] = "Allocates Slippery Ice", ["type"] = "enchant", }, - [790] = { + { ["id"] = "enchant.stat_2954116742|31326", ["text"] = "Allocates Slow Burn", ["type"] = "enchant", }, - [791] = { + { ["id"] = "enchant.stat_2954116742|54148", ["text"] = "Allocates Smoke Inhalation", ["type"] = "enchant", }, - [792] = { + { ["id"] = "enchant.stat_2954116742|11526", ["text"] = "Allocates Sniper", ["type"] = "enchant", }, - [793] = { + { ["id"] = "enchant.stat_2954116742|9421", ["text"] = "Allocates Snowpiercer", ["type"] = "enchant", }, - [794] = { + { ["id"] = "enchant.stat_2954116742|51169", ["text"] = "Allocates Soul Bloom", ["type"] = "enchant", }, - [795] = { + { ["id"] = "enchant.stat_2954116742|34473", ["text"] = "Allocates Spaghettification", ["type"] = "enchant", }, - [796] = { + { ["id"] = "enchant.stat_2954116742|14602", ["text"] = "Allocates Specialised Shots", ["type"] = "enchant", }, - [797] = { + { ["id"] = "enchant.stat_2954116742|34324", ["text"] = "Allocates Spectral Ward", ["type"] = "enchant", }, - [798] = { + { ["id"] = "enchant.stat_2954116742|17254", ["text"] = "Allocates Spell Haste", ["type"] = "enchant", }, - [799] = { + { ["id"] = "enchant.stat_2954116742|49984", ["text"] = "Allocates Spellblade", ["type"] = "enchant", }, - [800] = { + { ["id"] = "enchant.stat_2954116742|3698", ["text"] = "Allocates Spike Pit", ["type"] = "enchant", }, - [801] = { + { ["id"] = "enchant.stat_2954116742|40117", ["text"] = "Allocates Spiked Armour", ["type"] = "enchant", }, - [802] = { + { ["id"] = "enchant.stat_2954116742|36808", ["text"] = "Allocates Spiked Shield", ["type"] = "enchant", }, - [803] = { + { ["id"] = "enchant.stat_2954116742|1546", ["text"] = "Allocates Spiral into Depression", ["type"] = "enchant", }, - [804] = { + { ["id"] = "enchant.stat_2954116742|2138", ["text"] = "Allocates Spiral into Insanity", ["type"] = "enchant", }, - [805] = { + { ["id"] = "enchant.stat_2954116742|14934", ["text"] = "Allocates Spiral into Mania", ["type"] = "enchant", }, - [806] = { + { ["id"] = "enchant.stat_2954116742|51105", ["text"] = "Allocates Spirit Bond", ["type"] = "enchant", }, - [807] = { + { ["id"] = "enchant.stat_2954116742|9328", ["text"] = "Allocates Spirit of the Bear", ["type"] = "enchant", }, - [808] = { + { ["id"] = "enchant.stat_2954116742|3348", ["text"] = "Allocates Spirit of the Wolf", ["type"] = "enchant", }, - [809] = { + { ["id"] = "enchant.stat_2954116742|26104", ["text"] = "Allocates Spirit of the Wyvern", ["type"] = "enchant", }, - [810] = { + { ["id"] = "enchant.stat_2954116742|49088", ["text"] = "Allocates Splintering Force", ["type"] = "enchant", }, - [811] = { + { ["id"] = "enchant.stat_2954116742|7449", ["text"] = "Allocates Splinters", ["type"] = "enchant", }, - [812] = { + { ["id"] = "enchant.stat_2954116742|42302", ["text"] = "Allocates Split Shot", ["type"] = "enchant", }, - [813] = { + { ["id"] = "enchant.stat_2954116742|13980", ["text"] = "Allocates Split the Earth", ["type"] = "enchant", }, - [814] = { + { ["id"] = "enchant.stat_2954116742|20251", ["text"] = "Allocates Splitting Ground", ["type"] = "enchant", }, - [815] = { + { ["id"] = "enchant.stat_2954116742|23736", ["text"] = "Allocates Spray and Pray", ["type"] = "enchant", }, - [816] = { + { ["id"] = "enchant.stat_2954116742|11578", ["text"] = "Allocates Spreading Shocks", ["type"] = "enchant", }, - [817] = { + { ["id"] = "enchant.stat_2954116742|63759", ["text"] = "Allocates Stacking Toxins", ["type"] = "enchant", }, - [818] = { + { ["id"] = "enchant.stat_2954116742|39881", ["text"] = "Allocates Staggering Palm", ["type"] = "enchant", }, - [819] = { + { ["id"] = "enchant.stat_2954116742|61104", ["text"] = "Allocates Staggering Wounds", ["type"] = "enchant", }, - [820] = { + { ["id"] = "enchant.stat_2954116742|6304", ["text"] = "Allocates Stand Ground", ["type"] = "enchant", }, - [821] = { + { ["id"] = "enchant.stat_2954116742|5802", ["text"] = "Allocates Stand and Deliver", ["type"] = "enchant", }, - [822] = { + { ["id"] = "enchant.stat_2954116742|2486", ["text"] = "Allocates Stars Aligned", ["type"] = "enchant", }, - [823] = { + { ["id"] = "enchant.stat_2954116742|34908", ["text"] = "Allocates Staunch Deflection", ["type"] = "enchant", }, - [824] = { + { ["id"] = "enchant.stat_2954116742|37408", ["text"] = "Allocates Staunching", ["type"] = "enchant", }, - [825] = { + { ["id"] = "enchant.stat_2954116742|26479", ["text"] = "Allocates Steadfast Resolve", ["type"] = "enchant", }, - [826] = { + { ["id"] = "enchant.stat_2954116742|47782", ["text"] = "Allocates Steady Footing", ["type"] = "enchant", }, - [827] = { + { ["id"] = "enchant.stat_2954116742|47441", ["text"] = "Allocates Stigmata", ["type"] = "enchant", }, - [828] = { + { ["id"] = "enchant.stat_2954116742|7163", ["text"] = "Allocates Stimulants", ["type"] = "enchant", }, - [829] = { + { ["id"] = "enchant.stat_2954116742|1603", ["text"] = "Allocates Storm Driven", ["type"] = "enchant", }, - [830] = { + { ["id"] = "enchant.stat_2954116742|61921", ["text"] = "Allocates Storm Surge", ["type"] = "enchant", }, - [831] = { + { ["id"] = "enchant.stat_2954116742|336", ["text"] = "Allocates Storm Swell", ["type"] = "enchant", }, - [832] = { + { ["id"] = "enchant.stat_2954116742|22726", ["text"] = "Allocates Storm's Rebuke", ["type"] = "enchant", }, - [833] = { + { ["id"] = "enchant.stat_2954116742|43139", ["text"] = "Allocates Stormbreaker", ["type"] = "enchant", }, - [834] = { + { ["id"] = "enchant.stat_2954116742|38535", ["text"] = "Allocates Stormcharged", ["type"] = "enchant", }, - [835] = { + { ["id"] = "enchant.stat_2954116742|47387", ["text"] = "Allocates Stormkeeper", ["type"] = "enchant", }, - [836] = { + { ["id"] = "enchant.stat_2954116742|13515", ["text"] = "Allocates Stormwalker", ["type"] = "enchant", }, - [837] = { + { ["id"] = "enchant.stat_2954116742|45177", ["text"] = "Allocates Strike True", ["type"] = "enchant", }, - [838] = { + { ["id"] = "enchant.stat_2954116742|33922", ["text"] = "Allocates Stripped Defences", ["type"] = "enchant", }, - [839] = { + { ["id"] = "enchant.stat_2954116742|10998", ["text"] = "Allocates Strong Chin", ["type"] = "enchant", }, - [840] = { + { ["id"] = "enchant.stat_2954116742|39369", ["text"] = "Allocates Struck Through", ["type"] = "enchant", }, - [841] = { + { ["id"] = "enchant.stat_2954116742|38342", ["text"] = "Allocates Stupefy", ["type"] = "enchant", }, - [842] = { + { ["id"] = "enchant.stat_2954116742|8791", ["text"] = "Allocates Sturdy Ally", ["type"] = "enchant", }, - [843] = { + { ["id"] = "enchant.stat_2954116742|60138", ["text"] = "Allocates Stylebender", ["type"] = "enchant", }, - [844] = { + { ["id"] = "enchant.stat_2954116742|55193", ["text"] = "Allocates Subterfuge Mask", ["type"] = "enchant", }, - [845] = { + { ["id"] = "enchant.stat_2954116742|30392", ["text"] = "Allocates Succour", ["type"] = "enchant", }, - [846] = { + { ["id"] = "enchant.stat_2954116742|10398", ["text"] = "Allocates Sudden Escalation", ["type"] = "enchant", }, - [847] = { + { ["id"] = "enchant.stat_2954116742|29372", ["text"] = "Allocates Sudden Infuriation", ["type"] = "enchant", }, - [848] = { + { ["id"] = "enchant.stat_2954116742|14383", ["text"] = "Allocates Suffusion", ["type"] = "enchant", }, - [849] = { + { ["id"] = "enchant.stat_2954116742|2511", ["text"] = "Allocates Sundering", ["type"] = "enchant", }, - [850] = { + { ["id"] = "enchant.stat_2954116742|19249", ["text"] = "Allocates Supportive Ancestors", ["type"] = "enchant", }, - [851] = { + { ["id"] = "enchant.stat_2954116742|29881", ["text"] = "Allocates Surging Beast", ["type"] = "enchant", }, - [852] = { + { ["id"] = "enchant.stat_2954116742|42065", ["text"] = "Allocates Surging Currents", ["type"] = "enchant", }, - [853] = { + { ["id"] = "enchant.stat_2954116742|56806", ["text"] = "Allocates Swift Blocking", ["type"] = "enchant", }, - [854] = { + { ["id"] = "enchant.stat_2954116742|32353", ["text"] = "Allocates Swift Claw", ["type"] = "enchant", }, - [855] = { + { ["id"] = "enchant.stat_2954116742|56714", ["text"] = "Allocates Swift Flight", ["type"] = "enchant", }, - [856] = { + { ["id"] = "enchant.stat_2954116742|65265", ["text"] = "Allocates Swift Interruption", ["type"] = "enchant", }, - [857] = { + { ["id"] = "enchant.stat_2954116742|53367", ["text"] = "Allocates Symbol of Defiance", ["type"] = "enchant", }, - [858] = { + { ["id"] = "enchant.stat_2954116742|17825", ["text"] = "Allocates Tactical Retreat", ["type"] = "enchant", }, - [859] = { + { ["id"] = "enchant.stat_2954116742|22864", ["text"] = "Allocates Tainted Strike", ["type"] = "enchant", }, - [860] = { + { ["id"] = "enchant.stat_2954116742|40213", ["text"] = "Allocates Taste for Blood", ["type"] = "enchant", }, - [861] = { + { ["id"] = "enchant.stat_2954116742|48774", ["text"] = "Allocates Taut Flesh", ["type"] = "enchant", }, - [862] = { + { ["id"] = "enchant.stat_2954116742|18157", ["text"] = "Allocates Tempered Defences", ["type"] = "enchant", }, - [863] = { + { ["id"] = "enchant.stat_2954116742|8831", ["text"] = "Allocates Tempered Mind", ["type"] = "enchant", }, - [864] = { + { ["id"] = "enchant.stat_2954116742|12412", ["text"] = "Allocates Temporal Mastery", ["type"] = "enchant", }, - [865] = { + { ["id"] = "enchant.stat_2954116742|25971", ["text"] = "Allocates Tenfold Attacks", ["type"] = "enchant", }, - [866] = { + { ["id"] = "enchant.stat_2954116742|56666", ["text"] = "Allocates Thaumaturgic Generator", ["type"] = "enchant", }, - [867] = { + { ["id"] = "enchant.stat_2954116742|4544", ["text"] = "Allocates The Ancient Serpent", ["type"] = "enchant", }, - [868] = { + { ["id"] = "enchant.stat_2954116742|7847", ["text"] = "Allocates The Fabled Stag", ["type"] = "enchant", }, - [869] = { + { ["id"] = "enchant.stat_2954116742|34543", ["text"] = "Allocates The Frenzied Bear", ["type"] = "enchant", }, - [870] = { + { ["id"] = "enchant.stat_2954116742|54031", ["text"] = "Allocates The Great Boar", ["type"] = "enchant", }, - [871] = { + { ["id"] = "enchant.stat_2954116742|48734", ["text"] = "Allocates The Howling Primate", ["type"] = "enchant", }, - [872] = { + { ["id"] = "enchant.stat_2954116742|28542", ["text"] = "Allocates The Molten One's Gift", ["type"] = "enchant", }, - [873] = { + { ["id"] = "enchant.stat_2954116742|2745", ["text"] = "Allocates The Noble Wolf", ["type"] = "enchant", }, - [874] = { + { ["id"] = "enchant.stat_2954116742|27176", ["text"] = "Allocates The Power Within", ["type"] = "enchant", }, - [875] = { + { ["id"] = "enchant.stat_2954116742|21349", ["text"] = "Allocates The Quick Fox", ["type"] = "enchant", }, - [876] = { + { ["id"] = "enchant.stat_2954116742|45370", ["text"] = "Allocates The Raging Ox", ["type"] = "enchant", }, - [877] = { + { ["id"] = "enchant.stat_2954116742|52971", ["text"] = "Allocates The Soul Meridian", ["type"] = "enchant", }, - [878] = { + { ["id"] = "enchant.stat_2954116742|11774", ["text"] = "Allocates The Spring Hare", ["type"] = "enchant", }, - [879] = { + { ["id"] = "enchant.stat_2954116742|22811", ["text"] = "Allocates The Wild Cat", ["type"] = "enchant", }, - [880] = { + { ["id"] = "enchant.stat_2954116742|53185", ["text"] = "Allocates The Winter Owl", ["type"] = "enchant", }, - [881] = { + { ["id"] = "enchant.stat_2954116742|35849", ["text"] = "Allocates Thickened Arteries", ["type"] = "enchant", }, - [882] = { + { ["id"] = "enchant.stat_2954116742|56893", ["text"] = "Allocates Thicket Warding", ["type"] = "enchant", }, - [883] = { + { ["id"] = "enchant.stat_2954116742|19722", ["text"] = "Allocates Thin Ice", ["type"] = "enchant", }, - [884] = { + { ["id"] = "enchant.stat_2954116742|59433", ["text"] = "Allocates Thirst for Endurance", ["type"] = "enchant", }, - [885] = { + { ["id"] = "enchant.stat_2954116742|38532", ["text"] = "Allocates Thirst for Power", ["type"] = "enchant", }, - [886] = { + { ["id"] = "enchant.stat_2954116742|17600", ["text"] = "Allocates Thirsting Ally", ["type"] = "enchant", }, - [887] = { + { ["id"] = "enchant.stat_2954116742|43711", ["text"] = "Allocates Thornhide", ["type"] = "enchant", }, - [888] = { + { ["id"] = "enchant.stat_2954116742|42714", ["text"] = "Allocates Thousand Cuts", ["type"] = "enchant", }, - [889] = { + { ["id"] = "enchant.stat_2954116742|25711", ["text"] = "Allocates Thrill of Battle", ["type"] = "enchant", }, - [890] = { + { ["id"] = "enchant.stat_2954116742|15606", ["text"] = "Allocates Thrill of the Fight", ["type"] = "enchant", }, - [891] = { + { ["id"] = "enchant.stat_2954116742|56265", ["text"] = "Allocates Throatseeker", ["type"] = "enchant", }, - [892] = { + { ["id"] = "enchant.stat_2954116742|63585", ["text"] = "Allocates Thunderstruck", ["type"] = "enchant", }, - [893] = { + { ["id"] = "enchant.stat_2954116742|42813", ["text"] = "Allocates Tides of Change", ["type"] = "enchant", }, - [894] = { + { ["id"] = "enchant.stat_2954116742|24240", ["text"] = "Allocates Time Manipulation", ["type"] = "enchant", }, - [895] = { + { ["id"] = "enchant.stat_2954116742|65160", ["text"] = "Allocates Titanic", ["type"] = "enchant", }, - [896] = { + { ["id"] = "enchant.stat_2954116742|2843", ["text"] = "Allocates Tolerant Equipment", ["type"] = "enchant", }, - [897] = { + { ["id"] = "enchant.stat_2954116742|28482", ["text"] = "Allocates Total Incineration", ["type"] = "enchant", }, - [898] = { + { ["id"] = "enchant.stat_2954116742|27626", ["text"] = "Allocates Touch the Arcane", ["type"] = "enchant", }, - [899] = { + { ["id"] = "enchant.stat_2954116742|53823", ["text"] = "Allocates Towering Shield", ["type"] = "enchant", }, - [900] = { + { ["id"] = "enchant.stat_2954116742|261", ["text"] = "Allocates Toxic Sludge", ["type"] = "enchant", }, - [901] = { + { ["id"] = "enchant.stat_2954116742|2134", ["text"] = "Allocates Toxic Tolerance", ["type"] = "enchant", }, - [902] = { + { ["id"] = "enchant.stat_2954116742|52180", ["text"] = "Allocates Trained Deflection", ["type"] = "enchant", }, - [903] = { + { ["id"] = "enchant.stat_2954116742|57785", ["text"] = "Allocates Trained Turrets", ["type"] = "enchant", }, - [904] = { + { ["id"] = "enchant.stat_2954116742|750", ["text"] = "Allocates Tribal Fury", ["type"] = "enchant", }, - [905] = { + { ["id"] = "enchant.stat_2954116742|23221", ["text"] = "Allocates Trick Shot", ["type"] = "enchant", }, - [906] = { + { ["id"] = "enchant.stat_2954116742|61601", ["text"] = "Allocates True Strike", ["type"] = "enchant", }, - [907] = { + { ["id"] = "enchant.stat_2954116742|53131", ["text"] = "Allocates Tukohama's Brew", ["type"] = "enchant", }, - [908] = { + { ["id"] = "enchant.stat_2954116742|35564", ["text"] = "Allocates Turn the Clock Back", ["type"] = "enchant", }, - [909] = { + { ["id"] = "enchant.stat_2954116742|2335", ["text"] = "Allocates Turn the Clock Forward", ["type"] = "enchant", }, - [910] = { + { ["id"] = "enchant.stat_2954116742|1352", ["text"] = "Allocates Unbending", ["type"] = "enchant", }, - [911] = { + { ["id"] = "enchant.stat_2954116742|4579", ["text"] = "Allocates Unbothering Cold", ["type"] = "enchant", }, - [912] = { + { ["id"] = "enchant.stat_2954116742|64543", ["text"] = "Allocates Unbound Forces", ["type"] = "enchant", }, - [913] = { + { ["id"] = "enchant.stat_2954116742|13489", ["text"] = "Allocates Unbreakable", ["type"] = "enchant", }, - [914] = { + { ["id"] = "enchant.stat_2954116742|53921", ["text"] = "Allocates Unbreaking", ["type"] = "enchant", }, - [915] = { + { ["id"] = "enchant.stat_2954116742|38888", ["text"] = "Allocates Unerring Impact", ["type"] = "enchant", }, - [916] = { + { ["id"] = "enchant.stat_2954116742|31189", ["text"] = "Allocates Unexpected Finesse", ["type"] = "enchant", }, - [917] = { + { ["id"] = "enchant.stat_2954116742|10169", ["text"] = "Allocates Unfettered", ["type"] = "enchant", }, - [918] = { + { ["id"] = "enchant.stat_2954116742|8881", ["text"] = "Allocates Unforgiving", ["type"] = "enchant", }, - [919] = { + { ["id"] = "enchant.stat_2954116742|32543", ["text"] = "Allocates Unhindered", ["type"] = "enchant", }, - [920] = { + { ["id"] = "enchant.stat_2954116742|51394", ["text"] = "Allocates Unimpeded", ["type"] = "enchant", }, - [921] = { + { ["id"] = "enchant.stat_2954116742|20008", ["text"] = "Allocates Unleash Fire", ["type"] = "enchant", }, - [922] = { + { ["id"] = "enchant.stat_2954116742|4547", ["text"] = "Allocates Unnatural Resilience", ["type"] = "enchant", }, - [923] = { + { ["id"] = "enchant.stat_2954116742|51602", ["text"] = "Allocates Unsight", ["type"] = "enchant", }, - [924] = { + { ["id"] = "enchant.stat_2954116742|33585", ["text"] = "Allocates Unspoken Bond", ["type"] = "enchant", }, - [925] = { + { ["id"] = "enchant.stat_2954116742|18485", ["text"] = "Allocates Unstable Bond", ["type"] = "enchant", }, - [926] = { + { ["id"] = "enchant.stat_2954116742|33978", ["text"] = "Allocates Unstoppable Barrier", ["type"] = "enchant", }, - [927] = { + { ["id"] = "enchant.stat_2954116742|10774", ["text"] = "Allocates Unyielding", ["type"] = "enchant", }, - [928] = { + { ["id"] = "enchant.stat_2954116742|1169", ["text"] = "Allocates Urgent Call", ["type"] = "enchant", }, - [929] = { + { ["id"] = "enchant.stat_2954116742|17303", ["text"] = "Allocates Utility Ordnance", ["type"] = "enchant", }, - [930] = { + { ["id"] = "enchant.stat_2954116742|41033", ["text"] = "Allocates Utmost Offering", ["type"] = "enchant", }, - [931] = { + { ["id"] = "enchant.stat_2954116742|12750", ["text"] = "Allocates Vale Shelter", ["type"] = "enchant", }, - [932] = { + { ["id"] = "enchant.stat_2954116742|17762", ["text"] = "Allocates Vengeance", ["type"] = "enchant", }, - [933] = { + { ["id"] = "enchant.stat_2954116742|54937", ["text"] = "Allocates Vengeful Fury", ["type"] = "enchant", }, - [934] = { + { ["id"] = "enchant.stat_2954116742|4238", ["text"] = "Allocates Versatile Arms", ["type"] = "enchant", }, - [935] = { + { ["id"] = "enchant.stat_2954116742|65193", ["text"] = "Allocates Viciousness", ["type"] = "enchant", }, - [936] = { + { ["id"] = "enchant.stat_2954116742|22967", ["text"] = "Allocates Vigilance", ["type"] = "enchant", }, - [937] = { + { ["id"] = "enchant.stat_2954116742|63739", ["text"] = "Allocates Vigorous Remnants", ["type"] = "enchant", }, - [938] = { + { ["id"] = "enchant.stat_2954116742|36507", ["text"] = "Allocates Vile Mending", ["type"] = "enchant", }, - [939] = { + { ["id"] = "enchant.stat_2954116742|31373", ["text"] = "Allocates Vocal Empowerment", ["type"] = "enchant", }, - [940] = { + { ["id"] = "enchant.stat_2954116742|3492", ["text"] = "Allocates Void", ["type"] = "enchant", }, - [941] = { + { ["id"] = "enchant.stat_2954116742|17882", ["text"] = "Allocates Volatile Grenades", ["type"] = "enchant", }, - [942] = { + { ["id"] = "enchant.stat_2954116742|11366", ["text"] = "Allocates Volcanic Skin", ["type"] = "enchant", }, - [943] = { + { ["id"] = "enchant.stat_2954116742|31955", ["text"] = "Allocates Voll's Protection", ["type"] = "enchant", }, - [944] = { + { ["id"] = "enchant.stat_2954116742|46060", ["text"] = "Allocates Voracious", ["type"] = "enchant", }, - [945] = { + { ["id"] = "enchant.stat_2954116742|27303", ["text"] = "Allocates Vulgar Methods", ["type"] = "enchant", }, - [946] = { + { ["id"] = "enchant.stat_2954116742|25211", ["text"] = "Allocates Waning Hindrances", ["type"] = "enchant", }, - [947] = { + { ["id"] = "enchant.stat_2954116742|31925", ["text"] = "Allocates Warding Fetish", ["type"] = "enchant", }, - [948] = { + { ["id"] = "enchant.stat_2954116742|47418", ["text"] = "Allocates Warding Potions", ["type"] = "enchant", }, - [949] = { + { ["id"] = "enchant.stat_2954116742|53187", ["text"] = "Allocates Warlord Berserker", ["type"] = "enchant", }, - [950] = { + { ["id"] = "enchant.stat_2954116742|14761", ["text"] = "Allocates Warlord Leader", ["type"] = "enchant", }, - [951] = { + { ["id"] = "enchant.stat_2954116742|12998", ["text"] = "Allocates Warm the Heart", ["type"] = "enchant", }, - [952] = { + { ["id"] = "enchant.stat_2954116742|64650", ["text"] = "Allocates Wary Dodging", ["type"] = "enchant", }, - [953] = { + { ["id"] = "enchant.stat_2954116742|51213", ["text"] = "Allocates Wasting", ["type"] = "enchant", }, - [954] = { + { ["id"] = "enchant.stat_2954116742|61444", ["text"] = "Allocates Wasting Casts", ["type"] = "enchant", }, - [955] = { + { ["id"] = "enchant.stat_2954116742|5580", ["text"] = "Allocates Watchtowers", ["type"] = "enchant", }, - [956] = { + { ["id"] = "enchant.stat_2954116742|51509", ["text"] = "Allocates Waters of Life", ["type"] = "enchant", }, - [957] = { + { ["id"] = "enchant.stat_2954116742|58198", ["text"] = "Allocates Well of Power", ["type"] = "enchant", }, - [958] = { + { ["id"] = "enchant.stat_2954116742|2021", ["text"] = "Allocates Wellspring", ["type"] = "enchant", }, - [959] = { + { ["id"] = "enchant.stat_2954116742|37514", ["text"] = "Allocates Whirling Assault", ["type"] = "enchant", }, - [960] = { + { ["id"] = "enchant.stat_2954116742|46384", ["text"] = "Allocates Wide Barrier", ["type"] = "enchant", }, - [961] = { + { ["id"] = "enchant.stat_2954116742|65256", ["text"] = "Allocates Widespread Coverage", ["type"] = "enchant", }, - [962] = { + { ["id"] = "enchant.stat_2954116742|7809", ["text"] = "Allocates Wild Storm", ["type"] = "enchant", }, - [963] = { + { ["id"] = "enchant.stat_2954116742|44373", ["text"] = "Allocates Wither Away", ["type"] = "enchant", }, - [964] = { + { ["id"] = "enchant.stat_2954116742|57921", ["text"] = "Allocates Wolf's Howl", ["type"] = "enchant", }, - [965] = { + { ["id"] = "enchant.stat_2954116742|62803", ["text"] = "Allocates Woodland Aspect", ["type"] = "enchant", }, - [966] = { + { ["id"] = "enchant.stat_2954116742|30132", ["text"] = "Allocates Wrapped Quiver", ["type"] = "enchant", }, - [967] = { + { ["id"] = "enchant.stat_2954116742|35417", ["text"] = "Allocates Wyvern's Breath", ["type"] = "enchant", }, - [968] = { + { ["id"] = "enchant.stat_2954116742|11184", ["text"] = "Allocates Zarokh's Gift", ["type"] = "enchant", }, - [969] = { + { ["id"] = "enchant.stat_2954116742|50485", ["text"] = "Allocates Zone of Control", ["type"] = "enchant", }, - [970] = { + { ["id"] = "enchant.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "enchant", }, - [971] = { + { ["id"] = "enchant.stat_1776411443", ["text"] = "Break #% increased Armour", ["type"] = "enchant", }, - [972] = { + { ["id"] = "enchant.stat_1436284579", ["text"] = "Cannot be Blinded", ["type"] = "enchant", }, - [973] = { + { ["id"] = "enchant.stat_791928121", ["text"] = "Causes #% increased Stun Buildup", ["type"] = "enchant", }, - [974] = { + { ["id"] = "enchant.stat_185580205", ["text"] = "Charms gain # charge per Second", ["type"] = "enchant", }, - [975] = { + { ["id"] = "enchant.stat_1658498488", ["text"] = "Corrupted Blood cannot be inflicted on you", ["type"] = "enchant", }, - [976] = { + { ["id"] = "enchant.stat_3417711605", ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "enchant", }, - [977] = { + { ["id"] = "enchant.stat_2653955271", ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "enchant", }, - [978] = { + { ["id"] = "enchant.stat_818778753", ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "enchant", }, - [979] = { + { ["id"] = "enchant.stat_3650992555", ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", ["type"] = "enchant", }, - [980] = { + { ["id"] = "enchant.stat_3695891184", ["text"] = "Gain # Life per enemy killed", ["type"] = "enchant", }, - [981] = { + { ["id"] = "enchant.stat_1368271171", ["text"] = "Gain # Mana per enemy killed", ["type"] = "enchant", }, - [982] = { + { ["id"] = "enchant.stat_3398787959", ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "enchant", }, - [983] = { + { ["id"] = "enchant.stat_1725749947", ["text"] = "Grants # Rage on Hit", ["type"] = "enchant", }, - [984] = { + { ["id"] = "enchant.stat_3429557654", ["text"] = "Immune to Maim", ["type"] = "enchant", }, - [985] = { + { ["id"] = "enchant.stat_2557965901", ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "enchant", }, - [986] = { + { ["id"] = "enchant.stat_707457662", ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "enchant", }, - [987] = { + { ["id"] = "enchant.stat_1102738251", ["text"] = "Life Flasks gain # charges per Second", ["type"] = "enchant", }, - [988] = { + { ["id"] = "enchant.stat_1967051901", ["text"] = "Loads an additional bolt", ["type"] = "enchant", }, - [989] = { + { ["id"] = "enchant.stat_2200293569", ["text"] = "Mana Flasks gain # charges per Second", ["type"] = "enchant", }, - [990] = { + { ["id"] = "enchant.stat_3873704640", ["text"] = "Map has #% increased Magic Monsters", ["type"] = "enchant", }, - [991] = { + { ["id"] = "enchant.stat_3793155082", ["text"] = "Map has #% increased number of Rare Monsters", ["type"] = "enchant", }, - [992] = { + { ["id"] = "enchant.stat_4236566306", ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "enchant", }, - [993] = { + { ["id"] = "enchant.stat_1715784068", ["text"] = "Players in Area are #% Delirious", ["type"] = "enchant", }, - [994] = { + { ["id"] = "enchant.stat_4081947835", ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "enchant", }, - [995] = { + { ["id"] = "enchant.stat_3732878551", ["text"] = "Rare Monsters have a #% Surpassing chance to have an additional Modifier", ["type"] = "enchant", }, - [996] = { + { ["id"] = "enchant.stat_3732878551", ["text"] = "Rare Monsters in Map have a #% Surpassing chance to have an additional Modifier", ["type"] = "enchant", }, - [997] = { + { ["id"] = "enchant.stat_836936635", ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "enchant", }, - [998] = { + { ["id"] = "enchant.stat_3371085671", ["text"] = "Unique Monsters have # additional Rare Modifier", ["type"] = "enchant", }, - [999] = { + { ["id"] = "enchant.stat_721014846", ["text"] = "You cannot be Hindered", ["type"] = "enchant", @@ -30679,2414 +31759,2549 @@ return { ["id"] = "enchant", ["label"] = "Enchant", }, - [7] = { + { ["entries"] = { - [1] = { + { ["id"] = "rune.stat_554899692", ["text"] = "# Charm Slot (Global)", ["type"] = "augment", }, - [2] = { + { ["id"] = "rune.stat_2153364323", ["text"] = "# Intelligence Requirement", ["type"] = "augment", }, - [3] = { + { ["id"] = "rune.stat_3441651621", ["text"] = "# Physical Damage taken from Attack Hits", ["type"] = "augment", }, - [4] = { + { ["id"] = "rune.stat_718638445", ["text"] = "# Suffix Modifier allowed", ["type"] = "augment", }, - [5] = { + { ["id"] = "rune.stat_258119672", ["text"] = "# metre to Dodge Roll distance", ["type"] = "augment", }, - [6] = { + { ["id"] = "rune.stat_757050353", ["text"] = "# to # Lightning Thorns damage", ["type"] = "augment", }, - [7] = { + { ["id"] = "rune.stat_691932474", ["text"] = "# to Accuracy Rating (Local)", ["type"] = "augment", }, - [8] = { + { ["id"] = "rune.stat_687156079", ["text"] = "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", ["type"] = "augment", }, - [9] = { + { ["id"] = "rune.stat_3484657501", ["text"] = "# to Armour (Local)", ["type"] = "augment", }, - [10] = { + { ["id"] = "rune.stat_1197632982", ["text"] = "# to Armour per 1 Spirit", ["type"] = "augment", }, - [11] = { + { ["id"] = "rune.stat_3261801346", ["text"] = "# to Dexterity", ["type"] = "augment", }, - [12] = { + { ["id"] = "rune.stat_53045048", ["text"] = "# to Evasion Rating (Local)", ["type"] = "augment", }, - [13] = { + { ["id"] = "rune.stat_328541901", ["text"] = "# to Intelligence", ["type"] = "augment", }, - [14] = { + { ["id"] = "rune.stat_805298720", ["text"] = "# to Level of all Curse Skills", ["type"] = "augment", }, - [15] = { + { ["id"] = "rune.stat_1147690586", ["text"] = "# to Level of all Lightning Skills", ["type"] = "augment", }, - [16] = { + { ["id"] = "rune.stat_124131830", ["text"] = "# to Level of all Spell Skills", ["type"] = "augment", }, - [17] = { + { + ["id"] = "rune.stat_227523295", + ["text"] = "# to Maximum Power Charges", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_1181501418", ["text"] = "# to Maximum Rage", ["type"] = "augment", }, - [18] = { + { ["id"] = "rune.stat_2704225257", ["text"] = "# to Spirit", ["type"] = "augment", }, - [19] = { + { ["id"] = "rune.stat_3981240776", ["text"] = "# to Spirit", ["type"] = "augment", }, - [20] = { + { ["id"] = "rune.stat_610569665", ["text"] = "# to Spirit per 2 Levels", ["type"] = "augment", }, - [21] = { + { ["id"] = "rune.stat_1073847159", ["text"] = "# to Spirit per Idol socketed in your Equipment", ["type"] = "augment", }, - [22] = { + { ["id"] = "rune.stat_4080418644", ["text"] = "# to Strength", ["type"] = "augment", }, - [23] = { + { ["id"] = "rune.stat_915769802", ["text"] = "# to Stun Threshold", ["type"] = "augment", }, - [24] = { + { ["id"] = "rune.stat_2897413282", ["text"] = "# to all Attributes", ["type"] = "augment", }, - [25] = { + { ["id"] = "rune.stat_3489782002", ["text"] = "# to maximum Energy Shield", ["type"] = "augment", }, - [26] = { + { ["id"] = "rune.stat_4052037485", ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "augment", }, - [27] = { + { ["id"] = "rune.stat_3299347043", ["text"] = "# to maximum Life", ["type"] = "augment", }, - [28] = { + { ["id"] = "rune.stat_2785209416", ["text"] = "# to maximum Life per 8 Armour on Equipped Helmet", ["type"] = "augment", }, - [29] = { + { ["id"] = "rune.stat_1050105434", ["text"] = "# to maximum Mana", ["type"] = "augment", }, - [30] = { + { ["id"] = "rune.stat_280497929", ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", ["type"] = "augment", }, - [31] = { + { ["id"] = "rune.stat_774059442", ["text"] = "# to maximum Runic Ward", ["type"] = "augment", }, - [32] = { + { ["id"] = "rune.stat_2463230181", ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "augment", }, - [33] = { + { ["id"] = "rune.stat_2045949233", ["text"] = "#% chance for Slam Skills you use yourself to cause an additional Aftershock", ["type"] = "augment", }, - [34] = { + { ["id"] = "rune.stat_2910761524", ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", ["type"] = "augment", }, - [35] = { + { ["id"] = "rune.stat_3885634897", ["text"] = "#% chance to Poison on Hit with this weapon", ["type"] = "augment", }, - [36] = { + { ["id"] = "rune.stat_4258524206", ["text"] = "#% chance to build an additional Combo on Hit", ["type"] = "augment", }, - [37] = { + { ["id"] = "rune.stat_1519615863", ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "augment", }, - [38] = { + { ["id"] = "rune.stat_2328443419", ["text"] = "#% chance to create an additional Remnant", ["type"] = "augment", }, - [39] = { + { ["id"] = "rune.stat_1555237944", ["text"] = "#% chance when you gain a Charge to gain an additional Charge", ["type"] = "augment", }, - [40] = { + { ["id"] = "rune.stat_2916861134", ["text"] = "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", ["type"] = "augment", }, - [41] = { + { ["id"] = "rune.stat_3537994888", ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", ["type"] = "augment", }, - [42] = { + { ["id"] = "rune.stat_1228682002", ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", ["type"] = "augment", }, - [43] = { + { ["id"] = "rune.stat_1782086450", ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "augment", }, - [44] = { + { ["id"] = "rune.stat_624954515", ["text"] = "#% increased Accuracy Rating", ["type"] = "augment", }, - [45] = { + { ["id"] = "rune.stat_280731498", ["text"] = "#% increased Area of Effect", ["type"] = "augment", }, - [46] = { + { ["id"] = "rune.stat_153777645", ["text"] = "#% increased Area of Effect of Curses", ["type"] = "augment", }, - [47] = { + { ["id"] = "rune.stat_1392112423", ["text"] = "#% increased Armour and Evasion Rating while on Low Runic Ward", ["type"] = "augment", }, - [48] = { + { ["id"] = "rune.stat_3523867985", ["text"] = "#% increased Armour, Evasion and Energy Shield", ["type"] = "augment", }, - [49] = { + { ["id"] = "rune.stat_2829985691", ["text"] = "#% increased Armour, Evasion and Energy Shield while your Companion is in your Presence", ["type"] = "augment", }, - [50] = { + { ["id"] = "rune.stat_2077615515", ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", ["type"] = "augment", }, - [51] = { + { ["id"] = "rune.stat_681332047", ["text"] = "#% increased Attack Speed", ["type"] = "augment", }, - [52] = { + { ["id"] = "rune.stat_210067635", ["text"] = "#% increased Attack Speed (Local)", ["type"] = "augment", }, - [53] = { + { ["id"] = "rune.stat_3203854378", ["text"] = "#% increased Attack Speed if you have Blocked Recently", ["type"] = "augment", }, - [54] = { + { ["id"] = "rune.stat_2481353198", ["text"] = "#% increased Block chance (Local)", ["type"] = "augment", }, - [55] = { + { ["id"] = "rune.stat_3087034595", ["text"] = "#% increased Block chance while your Companion is in your Presence", ["type"] = "augment", }, - [56] = { + { ["id"] = "rune.stat_2891184298", ["text"] = "#% increased Cast Speed", ["type"] = "augment", }, - [57] = { + { ["id"] = "rune.stat_3585532255", ["text"] = "#% increased Charm Charges gained", ["type"] = "augment", }, - [58] = { + { ["id"] = "rune.stat_1004011302", ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "augment", }, - [59] = { + { ["id"] = "rune.stat_263495202", ["text"] = "#% increased Cost Efficiency", ["type"] = "augment", }, - [60] = { + { ["id"] = "rune.stat_587431675", ["text"] = "#% increased Critical Hit Chance", ["type"] = "augment", }, - [61] = { + { ["id"] = "rune.stat_737908626", ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "augment", }, - [62] = { + { ["id"] = "rune.stat_3824372849", ["text"] = "#% increased Curse Duration", ["type"] = "augment", }, - [63] = { + { ["id"] = "rune.stat_2353576063", ["text"] = "#% increased Curse Magnitudes", ["type"] = "augment", }, - [64] = { + { ["id"] = "rune.stat_3151560620", ["text"] = "#% increased Damage per each different Companion in your Presence", ["type"] = "augment", }, - [65] = { + { ["id"] = "rune.stat_3040571529", ["text"] = "#% increased Deflection Rating", ["type"] = "augment", }, - [66] = { + { ["id"] = "rune.stat_1382805233", ["text"] = "#% increased Deflection Rating while moving", ["type"] = "augment", }, - [67] = { + { ["id"] = "rune.stat_3544800472", ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "augment", }, - [68] = { + { ["id"] = "rune.stat_387439868", ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "augment", }, - [69] = { + { ["id"] = "rune.stat_2339757871", ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "augment", }, - [70] = { + { + ["id"] = "rune.stat_88817332", + ["text"] = "#% increased Evasion Rating when on Full Life", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_3666934677", ["text"] = "#% increased Experience gain", ["type"] = "augment", }, - [71] = { + { ["id"] = "rune.stat_2074866941", ["text"] = "#% increased Exposure Effect", ["type"] = "augment", }, - [72] = { + { + ["id"] = "rune.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_2968503605", ["text"] = "#% increased Flammability Magnitude", ["type"] = "augment", }, - [73] = { + { ["id"] = "rune.stat_473429811", ["text"] = "#% increased Freeze Buildup", ["type"] = "augment", }, - [74] = { + { ["id"] = "rune.stat_3143918757", ["text"] = "#% increased Glory generation", ["type"] = "augment", }, - [75] = { + { ["id"] = "rune.stat_330530785", ["text"] = "#% increased Immobilisation buildup", ["type"] = "augment", }, - [76] = { + { ["id"] = "rune.stat_310945763", ["text"] = "#% increased Life Cost Efficiency", ["type"] = "augment", }, - [77] = { + { ["id"] = "rune.stat_2310741722", ["text"] = "#% increased Life and Mana Recovery from Flasks", ["type"] = "augment", }, - [78] = { + { ["id"] = "rune.stat_3166958180", ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "augment", }, - [79] = { + { ["id"] = "rune.stat_1381474422", ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", ["type"] = "augment", }, - [80] = { + { ["id"] = "rune.stat_782230869", ["text"] = "#% increased Magnitude of Non-Damaging Ailments you inflict", ["type"] = "augment", }, - [81] = { + { ["id"] = "rune.stat_2876843277", ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", ["type"] = "augment", }, - [82] = { + { ["id"] = "rune.stat_553018427", ["text"] = "#% increased Mana Cost Efficiency of Command Skills", ["type"] = "augment", }, - [83] = { + { ["id"] = "rune.stat_1779262102", ["text"] = "#% increased Mana Recovery rate while your Companion is in your Presence", ["type"] = "augment", }, - [84] = { + { ["id"] = "rune.stat_789117908", ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "augment", }, - [85] = { + { ["id"] = "rune.stat_2250533757", ["text"] = "#% increased Movement Speed", ["type"] = "augment", }, - [86] = { + { ["id"] = "rune.stat_2590797182", ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", ["type"] = "augment", }, - [87] = { + { ["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", }, - [88] = { + { + ["id"] = "rune.stat_3393547195", + ["text"] = "#% increased Movement Speed when on Full Life", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_649025131", ["text"] = "#% increased Movement Speed when on Low Life", ["type"] = "augment", }, - [89] = { + { ["id"] = "rune.stat_3107707789", ["text"] = "#% increased Movement Speed while Sprinting", ["type"] = "augment", }, - [90] = { + { ["id"] = "rune.stat_3639405795", ["text"] = "#% increased Movement Speed while Sprinting per Persistent Minion", ["type"] = "augment", }, - [91] = { + { ["id"] = "rune.stat_818877178", ["text"] = "#% increased Parried Debuff Magnitude", ["type"] = "augment", }, - [92] = { + { ["id"] = "rune.stat_1509134228", ["text"] = "#% increased Physical Damage", ["type"] = "augment", }, - [93] = { + { ["id"] = "rune.stat_2011656677", ["text"] = "#% increased Poison Duration", ["type"] = "augment", }, - [94] = { + { ["id"] = "rune.stat_101878827", ["text"] = "#% increased Presence Area of Effect", ["type"] = "augment", }, - [95] = { + { ["id"] = "rune.stat_3759663284", ["text"] = "#% increased Projectile Speed", ["type"] = "augment", }, - [96] = { + { ["id"] = "rune.stat_3175163625", ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "augment", }, - [97] = { + { ["id"] = "rune.stat_3917489142", ["text"] = "#% increased Rarity of Items found", ["type"] = "augment", }, - [98] = { + { ["id"] = "rune.stat_1805633363", ["text"] = "#% increased Reservation Efficiency of Minion Skills", ["type"] = "augment", }, - [99] = { + { ["id"] = "rune.stat_830161081", ["text"] = "#% increased Runic Ward", ["type"] = "augment", }, - [100] = { + { ["id"] = "rune.stat_2392260628", ["text"] = "#% increased Runic Ward Regeneration Rate", ["type"] = "augment", }, - [101] = { + { + ["id"] = "rune.stat_2441825294", + ["text"] = "#% increased Runic Ward Regeneration Rate while Sprinting", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_3377888098", ["text"] = "#% increased Skill Effect Duration", ["type"] = "augment", }, - [102] = { + { ["id"] = "rune.stat_4065951768", ["text"] = "#% increased Skill Effect Duration with Plant Skills", ["type"] = "augment", }, - [103] = { + { ["id"] = "rune.stat_970213192", ["text"] = "#% increased Skill Speed", ["type"] = "augment", }, - [104] = { + { ["id"] = "rune.stat_924253255", ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "augment", }, - [105] = { + { ["id"] = "rune.stat_2974417149", ["text"] = "#% increased Spell Damage", ["type"] = "augment", }, - [106] = { + { ["id"] = "rune.stat_4063732952", ["text"] = "#% increased Spell Damage while your Companion is in your Presence", ["type"] = "augment", }, - [107] = { + { ["id"] = "rune.stat_3984865854", ["text"] = "#% increased Spirit", ["type"] = "augment", }, - [108] = { + { ["id"] = "rune.stat_1416406066", ["text"] = "#% increased Spirit", ["type"] = "augment", }, - [109] = { + { ["id"] = "rune.stat_751944209", ["text"] = "#% increased Stun Threshold if you've been Stunned Recently", ["type"] = "augment", }, - [110] = { + { ["id"] = "rune.stat_915264788", ["text"] = "#% increased Thorns Critical Hit Chance", ["type"] = "augment", }, - [111] = { + { ["id"] = "rune.stat_3973629633", ["text"] = "#% increased Withered Magnitude", ["type"] = "augment", }, - [112] = { + { ["id"] = "rune.stat_293638271", ["text"] = "#% increased chance to Shock", ["type"] = "augment", }, - [113] = { + { ["id"] = "rune.stat_2103650854", ["text"] = "#% increased effect of Arcane Surge on you", ["type"] = "augment", }, - [114] = { + { ["id"] = "rune.stat_1879206848", ["text"] = "#% increased effect of Fully Broken Armour", ["type"] = "augment", }, - [115] = { + { ["id"] = "rune.stat_983749596", ["text"] = "#% increased maximum Life", ["type"] = "augment", }, - [116] = { + { ["id"] = "rune.stat_2748665614", ["text"] = "#% increased maximum Mana", ["type"] = "augment", }, - [117] = { + { ["id"] = "rune.stat_2363593824", ["text"] = "#% increased speed of Recoup Effects", ["type"] = "augment", }, - [118] = { + { ["id"] = "rune.stat_2663359259", ["text"] = "#% increased total Power counted by Warcries", ["type"] = "augment", }, - [119] = { + { ["id"] = "rune.stat_762761075", ["text"] = "#% less Mana Regeneration Rate", ["type"] = "augment", }, - [120] = { + { ["id"] = "rune.stat_1020945697", ["text"] = "#% less maximum Life", ["type"] = "augment", }, - [121] = { + { + ["id"] = "rune.stat_412462523", + ["text"] = "#% more Attack Damage", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_3972229254", ["text"] = "#% of Armour also applies to Chaos Damage", ["type"] = "augment", }, - [122] = { + { ["id"] = "rune.stat_2191621386", ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", ["type"] = "augment", }, - [123] = { + { ["id"] = "rune.stat_1947060170", ["text"] = "#% of Armour also applies to Cold Damage", ["type"] = "augment", }, - [124] = { + { ["id"] = "rune.stat_3362812763", ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "augment", }, - [125] = { + { ["id"] = "rune.stat_3897831687", ["text"] = "#% of Armour also applies to Fire Damage", ["type"] = "augment", }, - [126] = { + { ["id"] = "rune.stat_2200571612", ["text"] = "#% of Armour also applies to Lightning Damage", ["type"] = "augment", }, - [127] = { + { ["id"] = "rune.stat_4217453078", ["text"] = "#% of Chaos Damage from Hits taken as a Damage of a random Element", ["type"] = "augment", }, - [128] = { + { ["id"] = "rune.stat_458438597", ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "augment", }, - [129] = { + { ["id"] = "rune.stat_1444556985", ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "augment", }, - [130] = { + { ["id"] = "rune.stat_2448633171", ["text"] = "#% of Damage taken bypasses Energy Shield", ["type"] = "augment", }, - [131] = { + { ["id"] = "rune.stat_1311130924", ["text"] = "#% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", ["type"] = "augment", }, - [132] = { + { ["id"] = "rune.stat_1092987622", ["text"] = "#% of Melee Physical Damage taken reflected to Attacker", ["type"] = "augment", }, - [133] = { + { ["id"] = "rune.stat_1374654984", ["text"] = "#% of Physical Damage prevented Recouped as Life", ["type"] = "augment", }, - [134] = { + { ["id"] = "rune.stat_2480498143", ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "augment", }, - [135] = { + { ["id"] = "rune.stat_3407849389", ["text"] = "#% reduced effect of Curses on you", ["type"] = "augment", }, - [136] = { + { ["id"] = "rune.stat_3801067695", ["text"] = "#% reduced effect of Shock on you", ["type"] = "augment", }, - [137] = { + { ["id"] = "rune.stat_2923486259", ["text"] = "#% to Chaos Resistance", ["type"] = "augment", }, - [138] = { + { ["id"] = "rune.stat_4220027924", ["text"] = "#% to Cold Resistance", ["type"] = "augment", }, - [139] = { + { ["id"] = "rune.stat_2694482655", ["text"] = "#% to Critical Damage Bonus", ["type"] = "augment", }, - [140] = { + { ["id"] = "rune.stat_518292764", ["text"] = "#% to Critical Hit Chance", ["type"] = "augment", }, - [141] = { + { ["id"] = "rune.stat_3372524247", ["text"] = "#% to Fire Resistance", ["type"] = "augment", }, - [142] = { + { ["id"] = "rune.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "augment", }, - [143] = { + { ["id"] = "rune.stat_3676141501", ["text"] = "#% to Maximum Cold Resistance", ["type"] = "augment", }, - [144] = { + { ["id"] = "rune.stat_4095671657", ["text"] = "#% to Maximum Fire Resistance", ["type"] = "augment", }, - [145] = { + { ["id"] = "rune.stat_1011760251", ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "augment", }, - [146] = { + { ["id"] = "rune.stat_3655769732", ["text"] = "#% to Quality of all Skills", ["type"] = "augment", }, - [147] = { + { ["id"] = "rune.stat_2901986750", ["text"] = "#% to all Elemental Resistances", ["type"] = "augment", }, - [148] = { + { ["id"] = "rune.stat_1978899297", ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "augment", }, - [149] = { + { ["id"] = "rune.stat_3617372509", ["text"] = "#% to maximum Block chance if you've Blocked with a raised Shield Recently", ["type"] = "augment", }, - [150] = { + { ["id"] = "rune.stat_282990844", ["text"] = "+# to Deflection Rating per 10 maximum Runic Ward", ["type"] = "augment", }, - [151] = { + { ["id"] = "rune.stat_2838678452", ["text"] = "+# to Stun Threshold per 10 maximum Runic Ward", ["type"] = "augment", }, - [152] = { + { + ["id"] = "rune.stat_1291132817", + ["text"] = "+1 to Armour per Strength", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_162036024", ["text"] = "1% increased Energy Shield Recharge Rate per # maximum Runic Ward", ["type"] = "augment", }, - [153] = { + { ["id"] = "rune.stat_2231410646", ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Marks Activate", ["type"] = "augment", }, - [154] = { + { ["id"] = "rune.stat_2223678961", ["text"] = "Adds # to # Chaos damage", ["type"] = "augment", }, - [155] = { + { ["id"] = "rune.stat_1037193709", ["text"] = "Adds # to # Cold Damage", ["type"] = "augment", }, - [156] = { + { ["id"] = "rune.stat_3734640451", ["text"] = "Adds # to # Cold Damage against Chilled Enemies", ["type"] = "augment", }, - [157] = { + { ["id"] = "rune.stat_709508406", ["text"] = "Adds # to # Fire Damage", ["type"] = "augment", }, - [158] = { + { ["id"] = "rune.stat_627339348", ["text"] = "Adds # to # Fire Damage to Attacks against Ignited Enemies", ["type"] = "augment", }, - [159] = { + { ["id"] = "rune.stat_3336890334", ["text"] = "Adds # to # Lightning Damage", ["type"] = "augment", }, - [160] = { + { ["id"] = "rune.stat_90012347", ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", ["type"] = "augment", }, - [161] = { + { ["id"] = "rune.stat_3032590688", ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "augment", }, - [162] = { + { ["id"] = "rune.stat_3814102597", ["text"] = "All damage taken bypasses Runic Ward", ["type"] = "augment", }, - [163] = { + { ["id"] = "rune.stat_1910743684", ["text"] = "All damage with this Weapon causes Electrocution buildup", ["type"] = "augment", }, - [164] = { + { ["id"] = "rune.stat_4010677958", ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "augment", }, - [165] = { + { ["id"] = "rune.stat_1911097163", ["text"] = "Allies in your Presence Regenerate #% of your Maximum Life per second", ["type"] = "augment", }, - [166] = { + { ["id"] = "rune.stat_262946222", ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", ["type"] = "augment", }, - [167] = { + { ["id"] = "rune.stat_2854751904", ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", ["type"] = "augment", }, - [168] = { + { ["id"] = "rune.stat_1574590649", ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "augment", }, - [169] = { + { ["id"] = "rune.stat_1798257884", ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "augment", }, - [170] = { + { ["id"] = "rune.stat_1998951374", ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "augment", }, - [171] = { + { ["id"] = "rune.stat_289128254", ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "augment", }, - [172] = { + { ["id"] = "rune.stat_3057012405", ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "augment", }, - [173] = { + { ["id"] = "rune.stat_1250712710", ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "augment", }, - [174] = { + { ["id"] = "rune.stat_632743438", ["text"] = "Allies in your Presence have #% increased Movement Speed", ["type"] = "augment", }, - [175] = { + { ["id"] = "rune.stat_3850614073", ["text"] = "Allies in your Presence have #% to all Elemental Resistances", ["type"] = "augment", }, - [176] = { + { ["id"] = "rune.stat_3329501096", ["text"] = "Allies in your Presence share Charges with you", ["type"] = "augment", }, - [177] = { + { ["id"] = "rune.stat_2586152168", ["text"] = "Archon recovery period expires #% faster", ["type"] = "augment", }, - [178] = { + { ["id"] = "rune.stat_2608793552", ["text"] = "Attacks Break Armour equal to #% of maximum Runic Ward", ["type"] = "augment", }, - [179] = { + { ["id"] = "rune.stat_3035971497", ["text"] = "Attacks spend #% of your maximum Runic Ward if possible to gain that much added Physical damage", ["type"] = "augment", }, - [180] = { + { ["id"] = "rune.stat_4064396395", ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", ["type"] = "augment", }, - [181] = { + { ["id"] = "rune.stat_3678845069", ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", ["type"] = "augment", }, - [182] = { + { + ["id"] = "rune.stat_566086661", + ["text"] = "Attacks with this Weapon have Added Cold Damage equal to #% to #% of maximum Mana", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_315791320", ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "augment", }, - [183] = { + { ["id"] = "rune.stat_119336587", ["text"] = "Banners also grant #% of Life Regenerated per second to affected targets", ["type"] = "augment", }, - [184] = { + { + ["id"] = "rune.stat_2635559734", + ["text"] = "Base Critical Hit Chance for Attacks with Weapons is #%", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_769693350", ["text"] = "Bonded: # Maximum Life per Level", ["type"] = "augment", }, - [185] = { + { + ["id"] = "rune.stat_1386257341", + ["text"] = "Bonded: # to # Physical Thorns damage", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_2573124363", ["text"] = "Bonded: # to Armour", ["type"] = "augment", }, - [186] = { + { ["id"] = "rune.stat_3533065815", ["text"] = "Bonded: # to Evasion Rating", ["type"] = "augment", }, - [187] = { + { ["id"] = "rune.stat_243313994", ["text"] = "Bonded: # to Level of all Attack Skills", ["type"] = "augment", }, - [188] = { + { ["id"] = "rune.stat_4111152445", ["text"] = "Bonded: # to Level of all Lightning Skills", ["type"] = "augment", }, - [189] = { + { + ["id"] = "rune.stat_3155261831", + ["text"] = "Bonded: # to Level of all Minion Skills", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_2339851060", ["text"] = "Bonded: # to Maximum Endurance Charges", ["type"] = "augment", }, - [190] = { + { ["id"] = "rune.stat_3986710072", ["text"] = "Bonded: # to Maximum Frenzy Charges", ["type"] = "augment", }, - [191] = { + { ["id"] = "rune.stat_921688168", ["text"] = "Bonded: # to Maximum Power Charges", ["type"] = "augment", }, - [192] = { + { ["id"] = "rune.stat_3543085634", ["text"] = "Bonded: # to Spirit", ["type"] = "augment", }, - [193] = { + { ["id"] = "rune.stat_943343122", ["text"] = "Bonded: # to Strength", ["type"] = "augment", }, - [194] = { + { ["id"] = "rune.stat_827242569", ["text"] = "Bonded: # to maximum Energy Shield", ["type"] = "augment", }, - [195] = { + { ["id"] = "rune.stat_2280525771", ["text"] = "Bonded: # to maximum Life", ["type"] = "augment", }, - [196] = { + { ["id"] = "rune.stat_2926029365", ["text"] = "Bonded: # to maximum Mana", ["type"] = "augment", }, - [197] = { + { + ["id"] = "rune.stat_1122225204", + ["text"] = "Bonded: # to maximum Runic Ward", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_451260031", ["text"] = "Bonded: # to maximum number of Elemental Infusions", ["type"] = "augment", }, - [198] = { + { ["id"] = "rune.stat_3291917242", ["text"] = "Bonded: #% chance for Charms you use to not consume Charges", ["type"] = "augment", }, - [199] = { + { ["id"] = "rune.stat_2134854700", ["text"] = "Bonded: #% chance for Damage of Enemies Hitting you to be Unlucky", ["type"] = "augment", }, - [200] = { + { + ["id"] = "rune.stat_1457312571", + ["text"] = "Bonded: #% chance for Slam Skills you use yourself to cause an additional Aftershock", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_1712188793", ["text"] = "Bonded: #% chance to gain an additional random Charge when you gain a Charge", ["type"] = "augment", }, - [201] = { + { ["id"] = "rune.stat_3909696841", ["text"] = "Bonded: #% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", ["type"] = "augment", }, - [202] = { + { ["id"] = "rune.stat_1350120957", ["text"] = "Bonded: #% faster Curse Activation", ["type"] = "augment", }, - [203] = { + { + ["id"] = "rune.stat_1340512754", + ["text"] = "Bonded: #% increased Accuracy Rating", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_201058524", ["text"] = "Bonded: #% increased Archon Buff duration", ["type"] = "augment", }, - [204] = { + { ["id"] = "rune.stat_3724971246", ["text"] = "Bonded: #% increased Area of Effect for Attacks", ["type"] = "augment", }, - [205] = { + { ["id"] = "rune.stat_3854332662", ["text"] = "Bonded: #% increased Area of Effect of Curses", ["type"] = "augment", }, - [206] = { + { ["id"] = "rune.stat_51757548", ["text"] = "Bonded: #% increased Armour and Evasion Rating when on Low Life", ["type"] = "augment", }, - [207] = { + { ["id"] = "rune.stat_851475033", ["text"] = "Bonded: #% increased Armour if you haven't Dodge Rolled Recently", ["type"] = "augment", }, - [208] = { + { ["id"] = "rune.stat_3037356641", ["text"] = "Bonded: #% increased Armour if you've consumed an Endurance Charge Recently", ["type"] = "augment", }, - [209] = { + { ["id"] = "rune.stat_1920436470", ["text"] = "Bonded: #% increased Armour while Shapeshifted", ["type"] = "augment", }, - [210] = { + { + ["id"] = "rune.stat_1334246621", + ["text"] = "Bonded: #% increased Arrow Speed", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_1323874481", ["text"] = "Bonded: #% increased Attack Damage against Maimed Enemies", ["type"] = "augment", }, - [211] = { + { ["id"] = "rune.stat_674141348", ["text"] = "Bonded: #% increased Attack Damage while Shapeshifted", ["type"] = "augment", }, - [212] = { + { ["id"] = "rune.stat_3414796717", ["text"] = "Bonded: #% increased Attack Speed", ["type"] = "augment", }, - [213] = { + { ["id"] = "rune.stat_3837226732", ["text"] = "Bonded: #% increased Attack Speed while missing Runic Ward", ["type"] = "augment", }, - [214] = { + { ["id"] = "rune.stat_1777925108", ["text"] = "Bonded: #% increased Attack Speed while your Companion is in your Presence", ["type"] = "augment", }, - [215] = { + { ["id"] = "rune.stat_678691134", ["text"] = "Bonded: #% increased Blind Effect", ["type"] = "augment", }, - [216] = { + { ["id"] = "rune.stat_477534953", ["text"] = "Bonded: #% increased Block chance", ["type"] = "augment", }, - [217] = { + { ["id"] = "rune.stat_625805922", ["text"] = "Bonded: #% increased Block chance per 100 total Item Armour on Equipped Armour Items", ["type"] = "augment", }, - [218] = { + { ["id"] = "rune.stat_227512798", ["text"] = "Bonded: #% increased Chaos Damage", ["type"] = "augment", }, - [219] = { + { ["id"] = "rune.stat_763465498", ["text"] = "Bonded: #% increased Charm Charges gained", ["type"] = "augment", }, - [220] = { + { ["id"] = "rune.stat_2233558630", ["text"] = "Bonded: #% increased Cold Damage", ["type"] = "augment", }, - [221] = { + { ["id"] = "rune.stat_232299587", ["text"] = "Bonded: #% increased Cooldown Recovery Rate", ["type"] = "augment", }, - [222] = { + { ["id"] = "rune.stat_4221147896", ["text"] = "Bonded: #% increased Critical Damage Bonus", ["type"] = "augment", }, - [223] = { + { ["id"] = "rune.stat_2651867031", ["text"] = "Bonded: #% increased Critical Hit Chance", ["type"] = "augment", }, - [224] = { + { ["id"] = "rune.stat_3311629379", ["text"] = "Bonded: #% increased Critical Hit Chance while Shapeshifted", ["type"] = "augment", }, - [225] = { + { ["id"] = "rune.stat_2453678274", ["text"] = "Bonded: #% increased Crossbow Reload Speed", ["type"] = "augment", }, - [226] = { + { ["id"] = "rune.stat_217649179", ["text"] = "Bonded: #% increased Curse Magnitudes", ["type"] = "augment", }, - [227] = { + { ["id"] = "rune.stat_3823333703", ["text"] = "Bonded: #% increased Damage against Immobilised Enemies", ["type"] = "augment", }, - [228] = { + { ["id"] = "rune.stat_95238288", ["text"] = "Bonded: #% increased Damage for each type of Elemental Ailment on Enemy", ["type"] = "augment", }, - [229] = { + { + ["id"] = "rune.stat_1524834794", + ["text"] = "Bonded: #% increased Damage per 15 Strength", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_3412619569", ["text"] = "Bonded: #% increased Damage while Shapeshifted", ["type"] = "augment", }, - [230] = { + { ["id"] = "rune.stat_3835589934", ["text"] = "Bonded: #% increased Damage while your Companion is in your Presence", ["type"] = "augment", }, - [231] = { + { ["id"] = "rune.stat_2701582946", ["text"] = "Bonded: #% increased Deflection Rating", ["type"] = "augment", }, - [232] = { + { ["id"] = "rune.stat_2986637363", ["text"] = "Bonded: #% increased Duration of Damaging Ailments on Enemies", ["type"] = "augment", }, - [233] = { + { ["id"] = "rune.stat_2546200564", ["text"] = "Bonded: #% increased Duration of Elemental Ailments on Enemies", ["type"] = "augment", }, - [234] = { + { ["id"] = "rune.stat_768779746", ["text"] = "Bonded: #% increased Effect of Consecrated Ground you create", ["type"] = "augment", }, - [235] = { + { ["id"] = "rune.stat_1279298634", ["text"] = "Bonded: #% increased Effect of Non-Damaging Ailments on you", ["type"] = "augment", }, - [236] = { + { ["id"] = "rune.stat_4128954176", ["text"] = "Bonded: #% increased Elemental Ailment Threshold", ["type"] = "augment", }, - [237] = { + { ["id"] = "rune.stat_3037261703", ["text"] = "Bonded: #% increased Elemental Damage", ["type"] = "augment", }, - [238] = { + { ["id"] = "rune.stat_4224773381", ["text"] = "Bonded: #% increased Endurance Charge Duration", ["type"] = "augment", }, - [239] = { + { ["id"] = "rune.stat_4129869957", ["text"] = "Bonded: #% increased Endurance, Frenzy and Power Charge Duration", ["type"] = "augment", }, - [240] = { + { + ["id"] = "rune.stat_2855182251", + ["text"] = "Bonded: #% increased Evasion Rating", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_2959554008", ["text"] = "Bonded: #% increased Evasion Rating if you've consumed a Frenzy Charge Recently", ["type"] = "augment", }, - [241] = { + { ["id"] = "rune.stat_3378643287", ["text"] = "Bonded: #% increased Exposure Effect", ["type"] = "augment", }, - [242] = { + { ["id"] = "rune.stat_2502507413", ["text"] = "Bonded: #% increased Fire Damage", ["type"] = "augment", }, - [243] = { + { ["id"] = "rune.stat_1787822486", ["text"] = "Bonded: #% increased Flask Mana Recovery rate", ["type"] = "augment", }, - [244] = { + { ["id"] = "rune.stat_1817052494", ["text"] = "Bonded: #% increased Freeze Buildup", ["type"] = "augment", }, - [245] = { + { ["id"] = "rune.stat_457982334", ["text"] = "Bonded: #% increased Global Armour, Evasion and Energy Shield", ["type"] = "augment", }, - [246] = { + { ["id"] = "rune.stat_708427389", ["text"] = "Bonded: #% increased Global Physical Damage", ["type"] = "augment", }, - [247] = { + { ["id"] = "rune.stat_155735928", ["text"] = "Bonded: #% increased Glory generation", ["type"] = "augment", }, - [248] = { + { ["id"] = "rune.stat_831559873", ["text"] = "Bonded: #% increased Guard gained", ["type"] = "augment", }, - [249] = { + { + ["id"] = "rune.stat_3374444303", + ["text"] = "Bonded: #% increased Ignite Duration on Enemies", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_1857162058", ["text"] = "Bonded: #% increased Ignite Magnitude", ["type"] = "augment", }, - [250] = { + { ["id"] = "rune.stat_1112792773", ["text"] = "Bonded: #% increased Immobilisation buildup", ["type"] = "augment", }, - [251] = { + { ["id"] = "rune.stat_2122116143", ["text"] = "Bonded: #% increased Life Recovery Rate while your Companion is in your Presence", ["type"] = "augment", }, - [252] = { + { ["id"] = "rune.stat_2051864330", ["text"] = "Bonded: #% increased Life Regeneration rate", ["type"] = "augment", }, - [253] = { + { ["id"] = "rune.stat_2410766865", ["text"] = "Bonded: #% increased Life Regeneration rate while Shapeshifted", ["type"] = "augment", }, - [254] = { + { ["id"] = "rune.stat_4168500604", ["text"] = "Bonded: #% increased Life and Mana Recovery from Flasks", ["type"] = "augment", }, - [255] = { + { ["id"] = "rune.stat_2589309582", ["text"] = "Bonded: #% increased Lightning Damage", ["type"] = "augment", }, - [256] = { + { ["id"] = "rune.stat_3144895835", ["text"] = "Bonded: #% increased Magnitude of Bleeding on You", ["type"] = "augment", }, - [257] = { + { ["id"] = "rune.stat_3891661462", ["text"] = "Bonded: #% increased Magnitude of Non-Damaging Ailments you inflict", ["type"] = "augment", }, - [258] = { + { ["id"] = "rune.stat_2430860292", ["text"] = "Bonded: #% increased Magnitude of Shock you inflict", ["type"] = "augment", }, - [259] = { + { ["id"] = "rune.stat_2336012075", ["text"] = "Bonded: #% increased Mana Cost Efficiency", ["type"] = "augment", }, - [260] = { + { ["id"] = "rune.stat_532897212", ["text"] = "Bonded: #% increased Mana Cost Efficiency while on Low Mana", ["type"] = "augment", }, - [261] = { + { ["id"] = "rune.stat_2352183092", ["text"] = "Bonded: #% increased Mana Recovery rate while your Companion is in your Presence", ["type"] = "augment", }, - [262] = { + { ["id"] = "rune.stat_1007312071", ["text"] = "Bonded: #% increased Mana Regeneration Rate", ["type"] = "augment", }, - [263] = { + { ["id"] = "rune.stat_4106964676", ["text"] = "Bonded: #% increased Movement Speed", ["type"] = "augment", }, - [264] = { + { ["id"] = "rune.stat_3842722415", ["text"] = "Bonded: #% increased Movement Speed while Sprinting", ["type"] = "augment", }, - [265] = { + { ["id"] = "rune.stat_3126632036", ["text"] = "Bonded: #% increased Parry Range", ["type"] = "augment", }, - [266] = { + { ["id"] = "rune.stat_2418344131", ["text"] = "Bonded: #% increased Projectile Damage", ["type"] = "augment", }, - [267] = { + { ["id"] = "rune.stat_1631975646", ["text"] = "Bonded: #% increased Projectile Speed", ["type"] = "augment", }, - [268] = { + { ["id"] = "rune.stat_3898665772", ["text"] = "Bonded: #% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "augment", }, - [269] = { + { ["id"] = "rune.stat_2729035954", ["text"] = "Bonded: #% increased Reservation Efficiency of Companion Skills", ["type"] = "augment", }, - [270] = { + { ["id"] = "rune.stat_1299166504", ["text"] = "Bonded: #% increased Reservation Efficiency of Herald Skills", ["type"] = "augment", }, - [271] = { + { ["id"] = "rune.stat_1342402057", ["text"] = "Bonded: #% increased Reservation Efficiency of Minion Skills", ["type"] = "augment", }, - [272] = { + { ["id"] = "rune.stat_1751756891", ["text"] = "Bonded: #% increased Runic Ward Cost Efficiency", ["type"] = "augment", }, - [273] = { + { ["id"] = "rune.stat_1396011622", ["text"] = "Bonded: #% increased Runic Ward Regeneration Rate if you've dealt a Critical Hit Recently", ["type"] = "augment", }, - [274] = { + { ["id"] = "rune.stat_2530800730", ["text"] = "Bonded: #% increased Skill Effect Duration with Plant Skills", ["type"] = "augment", }, - [275] = { + { ["id"] = "rune.stat_144568384", ["text"] = "Bonded: #% increased Skill Speed while Shapeshifted", ["type"] = "augment", }, - [276] = { + { ["id"] = "rune.stat_165746512", ["text"] = "Bonded: #% increased Slowing Potency of Debuffs on You", ["type"] = "augment", }, - [277] = { + { ["id"] = "rune.stat_2012253422", ["text"] = "Bonded: #% increased Spirit", ["type"] = "augment", }, - [278] = { + { ["id"] = "rune.stat_3435915371", ["text"] = "Bonded: #% increased Spirit Reservation Efficiency", ["type"] = "augment", }, - [279] = { + { ["id"] = "rune.stat_3038857346", ["text"] = "Bonded: #% increased Stun Buildup", ["type"] = "augment", }, - [280] = { + { ["id"] = "rune.stat_1756854510", ["text"] = "Bonded: #% increased Stun Recovery", ["type"] = "augment", }, - [281] = { + { ["id"] = "rune.stat_466741396", ["text"] = "Bonded: #% increased Stun Threshold", ["type"] = "augment", }, - [282] = { + { ["id"] = "rune.stat_597420223", ["text"] = "Bonded: #% increased Stun buildup while Shapeshifted", ["type"] = "augment", }, - [283] = { + { ["id"] = "rune.stat_3266426611", ["text"] = "Bonded: #% increased Thorns damage", ["type"] = "augment", }, - [284] = { + { ["id"] = "rune.stat_542243093", ["text"] = "Bonded: #% increased Warcry Cooldown Recovery Rate", ["type"] = "augment", }, - [285] = { + { ["id"] = "rune.stat_1984345909", ["text"] = "Bonded: #% increased Withered Magnitude", ["type"] = "augment", }, - [286] = { + { ["id"] = "rune.stat_3331247603", ["text"] = "Bonded: #% increased amount of Life Leeched", ["type"] = "augment", }, - [287] = { + { ["id"] = "rune.stat_1236190486", ["text"] = "Bonded: #% increased effect of Archon Buffs on you", ["type"] = "augment", }, - [288] = { + { ["id"] = "rune.stat_1039491398", ["text"] = "Bonded: #% increased effect of Fully Broken Armour", ["type"] = "augment", }, - [289] = { + { ["id"] = "rune.stat_3745435177", ["text"] = "Bonded: #% increased maximum Energy Shield if you've consumed a Power Charge Recently", ["type"] = "augment", }, - [290] = { + { ["id"] = "rune.stat_2246411426", ["text"] = "Bonded: #% increased maximum Life", ["type"] = "augment", }, - [291] = { + { ["id"] = "rune.stat_1586906534", ["text"] = "Bonded: #% increased maximum Mana", ["type"] = "augment", }, - [292] = { + { ["id"] = "rune.stat_3634438849", ["text"] = "Bonded: #% increased maximum Runic Ward", ["type"] = "augment", }, - [293] = { + { ["id"] = "rune.stat_826685275", ["text"] = "Bonded: #% of Armour also applies to Elemental Damage while Shapeshifted", ["type"] = "augment", }, - [294] = { + { + ["id"] = "rune.stat_1479161975", + ["text"] = "Bonded: #% of Damage is taken from Mana before Life", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_264750496", ["text"] = "Bonded: #% of Damage taken Recouped as Life", ["type"] = "augment", }, - [295] = { + { ["id"] = "rune.stat_2100249038", ["text"] = "Bonded: #% of Maximum Life Converted to Energy Shield", ["type"] = "augment", }, - [296] = { + { ["id"] = "rune.stat_2561960218", ["text"] = "Bonded: #% of Skill Mana Costs Converted to Life Costs", ["type"] = "augment", }, - [297] = { + { ["id"] = "rune.stat_1441491952", ["text"] = "Bonded: #% reduced Shock duration on you", ["type"] = "augment", }, - [298] = { + { ["id"] = "rune.stat_3351086592", ["text"] = "Bonded: #% to Chaos Resistance", ["type"] = "augment", }, - [299] = { + { ["id"] = "rune.stat_3448627618", ["text"] = "Bonded: #% to Cold Resistance", ["type"] = "augment", }, - [300] = { + { ["id"] = "rune.stat_2566210581", ["text"] = "Bonded: #% to Fire Resistance", ["type"] = "augment", }, - [301] = { + { ["id"] = "rune.stat_3294435116", ["text"] = "Bonded: #% to Lightning Resistance", ["type"] = "augment", }, - [302] = { + { ["id"] = "rune.stat_4042480703", ["text"] = "Bonded: #% to Maximum Cold Resistance", ["type"] = "augment", }, - [303] = { + { ["id"] = "rune.stat_408302348", ["text"] = "Bonded: #% to Maximum Fire Resistance", ["type"] = "augment", }, - [304] = { + { ["id"] = "rune.stat_3788647247", ["text"] = "Bonded: #% to Maximum Lightning Resistance", ["type"] = "augment", }, - [305] = { + { ["id"] = "rune.stat_1134865274", ["text"] = "Bonded: #% to Quality of all Skills", ["type"] = "augment", }, - [306] = { + { ["id"] = "rune.stat_953010920", ["text"] = "Bonded: #% to all Elemental Resistances", ["type"] = "augment", }, - [307] = { + { ["id"] = "rune.stat_1404850498", ["text"] = "Bonded: #% to all Maximum Elemental Resistances while on full Runic Ward", ["type"] = "augment", }, - [308] = { + { ["id"] = "rune.stat_859452080", ["text"] = "Bonded: #% to maximum Block chance", ["type"] = "augment", }, - [309] = { + { ["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", }, - [310] = { + { ["id"] = "rune.stat_3308150554", ["text"] = "Bonded: Adds # to # Fire damage to Attacks", ["type"] = "augment", }, - [311] = { + { ["id"] = "rune.stat_1888719480", ["text"] = "Bonded: Adds # to # Physical Damage", ["type"] = "augment", }, - [312] = { + { ["id"] = "rune.stat_3738367433", ["text"] = "Bonded: Adds # to # Physical Damage to Attacks", ["type"] = "augment", }, - [313] = { + { ["id"] = "rune.stat_858934954", ["text"] = "Bonded: Allies in your Presence Gain #% of Damage as Extra Chaos Damage", ["type"] = "augment", }, - [314] = { + { ["id"] = "rune.stat_1799351208", ["text"] = "Bonded: Allies in your Presence Regenerate #% of your Maximum Life per second", ["type"] = "augment", }, - [315] = { + { ["id"] = "rune.stat_975988108", ["text"] = "Bonded: Archon recovery period expires #% faster", ["type"] = "augment", }, - [316] = { + { ["id"] = "rune.stat_859085781", ["text"] = "Bonded: Attacks have #% to Critical Hit Chance", ["type"] = "augment", }, - [317] = { + { ["id"] = "rune.stat_4012965551", ["text"] = "Bonded: Banner Skills have #% increased Aura Magnitudes", ["type"] = "augment", }, - [318] = { + { ["id"] = "rune.stat_1083521623", ["text"] = "Bonded: Break #% increased Armour", ["type"] = "augment", }, - [319] = { + { ["id"] = "rune.stat_3990135792", ["text"] = "Bonded: Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", ["type"] = "augment", }, - [320] = { + { ["id"] = "rune.stat_2804691275", ["text"] = "Bonded: Buffs on you expire #% faster", ["type"] = "augment", }, - [321] = { + { ["id"] = "rune.stat_1568578715", ["text"] = "Bonded: Charms gain # charge per Second", ["type"] = "augment", }, - [322] = { + { ["id"] = "rune.stat_736977326", ["text"] = "Bonded: Companions deal #% increased Damage", ["type"] = "augment", }, - [323] = { + { ["id"] = "rune.stat_1816212773", ["text"] = "Bonded: Companions have #% increased Area of Effect", ["type"] = "augment", }, - [324] = { + { ["id"] = "rune.stat_750452124", ["text"] = "Bonded: Companions have #% increased maximum Life", ["type"] = "augment", }, - [325] = { + { ["id"] = "rune.stat_2342427527", ["text"] = "Bonded: Companions in your Presence have #% to Chaos Resistance", ["type"] = "augment", }, - [326] = { + { ["id"] = "rune.stat_4019240232", ["text"] = "Bonded: Damage Penetrates #% Lightning Resistance", ["type"] = "augment", }, - [327] = { + { ["id"] = "rune.stat_2691854696", ["text"] = "Bonded: Damage of Enemies Hitting you is Unlucky ifyour Runic Ward has been damaged Recently", ["type"] = "augment", }, - [328] = { + { ["id"] = "rune.stat_807013157", ["text"] = "Bonded: Every Rage also grants #% increased Spell Damage", ["type"] = "augment", }, - [329] = { + { ["id"] = "rune.stat_1482283017", ["text"] = "Bonded: Fissure Skills have +# to Limit", ["type"] = "augment", }, - [330] = { + { ["id"] = "rune.stat_1354252351", ["text"] = "Bonded: Gain # Life per enemy killed", ["type"] = "augment", }, - [331] = { + { ["id"] = "rune.stat_3816212813", ["text"] = "Bonded: Gain # Rage on Melee Hit", ["type"] = "augment", }, - [332] = { + { ["id"] = "rune.stat_635535560", ["text"] = "Bonded: Gain #% of Damage as Extra Physical Damage", ["type"] = "augment", }, - [333] = { + { ["id"] = "rune.stat_1570901920", ["text"] = "Bonded: Gain #% of Physical Damage as extra Chaos Damage", ["type"] = "augment", }, - [334] = { + { ["id"] = "rune.stat_2269618934", ["text"] = "Bonded: Gain #% of maximum Life as Extra maximum Runic Ward", ["type"] = "augment", }, - [335] = { + { ["id"] = "rune.stat_1419386315", ["text"] = "Bonded: Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "augment", }, - [336] = { + { ["id"] = "rune.stat_2001460689", ["text"] = "Bonded: Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "augment", }, - [337] = { + { ["id"] = "rune.stat_1256853273", ["text"] = "Bonded: Hits against you have #% reduced Critical Damage Bonus", ["type"] = "augment", }, - [338] = { + { ["id"] = "rune.stat_4058552370", ["text"] = "Bonded: Invocated Spells have #% chance to consume half as much Energy", ["type"] = "augment", }, - [339] = { + { ["id"] = "rune.stat_1773391344", ["text"] = "Bonded: Invocated skills have #% increased Maximum Energy", ["type"] = "augment", }, - [340] = { + { ["id"] = "rune.stat_1584590139", ["text"] = "Bonded: Leeches #% of maximum Life when you Cast a Spell", ["type"] = "augment", }, - [341] = { + { ["id"] = "rune.stat_4254029169", ["text"] = "Bonded: Meta Skills have #% increased Reservation Efficiency", ["type"] = "augment", }, - [342] = { + { ["id"] = "rune.stat_839375491", ["text"] = "Bonded: Minions Revive #% faster", ["type"] = "augment", }, - [343] = { + { ["id"] = "rune.stat_1728593484", ["text"] = "Bonded: Minions deal #% increased Damage", ["type"] = "augment", }, - [344] = { + { ["id"] = "rune.stat_129783399", ["text"] = "Bonded: Minions have #% additional Physical Damage Reduction", ["type"] = "augment", }, - [345] = { + { ["id"] = "rune.stat_3449499156", ["text"] = "Bonded: Minions have #% increased Area of Effect", ["type"] = "augment", }, - [346] = { + { ["id"] = "rune.stat_1611856026", ["text"] = "Bonded: Minions have #% increased Cooldown Recovery Rate for Command Skills", ["type"] = "augment", }, - [347] = { + { ["id"] = "rune.stat_834058335", ["text"] = "Bonded: Minions have #% increased Movement Speed", ["type"] = "augment", }, - [348] = { + { ["id"] = "rune.stat_4096059605", ["text"] = "Bonded: Minions have #% increased maximum Life", ["type"] = "augment", }, - [349] = { + { ["id"] = "rune.stat_901007505", ["text"] = "Bonded: Minions have #% to all Elemental Resistances", ["type"] = "augment", }, - [350] = { + { ["id"] = "rune.stat_3793026369", ["text"] = "Bonded: Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time", ["type"] = "augment", }, - [351] = { + { ["id"] = "rune.stat_1597408611", ["text"] = "Bonded: Prevent #% of Damage from Deflected Hits", ["type"] = "augment", }, - [352] = { + { ["id"] = "rune.stat_1528013281", ["text"] = "Bonded: Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "augment", }, - [353] = { + { ["id"] = "rune.stat_2905013875", ["text"] = "Bonded: Recover #% of Maximum Mana when you collect a Remnant", ["type"] = "augment", }, - [354] = { + { ["id"] = "rune.stat_1823959929", ["text"] = "Bonded: Recover #% of maximum Life when one of your Minions is Revived", ["type"] = "augment", }, - [355] = { + { ["id"] = "rune.stat_2420303482", ["text"] = "Bonded: Regenerate # Runic Ward per second", ["type"] = "augment", }, - [356] = { + { ["id"] = "rune.stat_3134782172", ["text"] = "Bonded: Regenerate #% of maximum Energy Shield per second", ["type"] = "augment", }, - [357] = { + { ["id"] = "rune.stat_1981392722", ["text"] = "Bonded: Regenerate #% of maximum Life per second", ["type"] = "augment", }, - [358] = { + { ["id"] = "rune.stat_2549764820", ["text"] = "Bonded: Regenerate #% of maximum Life per second while Surrounded", ["type"] = "augment", }, - [359] = { + { ["id"] = "rune.stat_3373098634", ["text"] = "Bonded: Remnants can be collected from #% further away", ["type"] = "augment", }, - [360] = { + { ["id"] = "rune.stat_3227486464", ["text"] = "Bonded: Remnants you create have #% increased effect", ["type"] = "augment", }, - [361] = { + { ["id"] = "rune.stat_3286003349", ["text"] = "Bonded: Storm Skills have +# to Limit", ["type"] = "augment", }, - [362] = { + { ["id"] = "rune.stat_864484981", ["text"] = "Bonded: Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "augment", }, - [363] = { + { ["id"] = "rune.stat_2248594298", ["text"] = "Bonded: When Volatility on you explodes, you regain an equivalent amount of Volatility", ["type"] = "augment", }, - [364] = { + { ["id"] = "rune.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "augment", }, - [365] = { + { ["id"] = "rune.stat_1963398329", ["text"] = "Can have # additional Crafted Modifier", ["type"] = "augment", }, - [366] = { + { ["id"] = "rune.stat_1770091046", ["text"] = "Can roll Berserking modifiers", ["type"] = "augment", }, - [367] = { + { ["id"] = "rune.stat_3132681620", ["text"] = "Can roll Chronomancy modifiers", ["type"] = "augment", }, - [368] = { + { ["id"] = "rune.stat_2547063279", ["text"] = "Can roll Decay modifiers", ["type"] = "augment", }, - [369] = { + { ["id"] = "rune.stat_1676950499", ["text"] = "Can roll Destruction modifiers", ["type"] = "augment", }, - [370] = { + { ["id"] = "rune.stat_201332984", ["text"] = "Can roll Marksman modifiers", ["type"] = "augment", }, - [371] = { + { ["id"] = "rune.stat_1927467683", ["text"] = "Can roll Soul modifiers", ["type"] = "augment", }, - [372] = { + { ["id"] = "rune.stat_331731406", ["text"] = "Cannot be Ignited", ["type"] = "augment", }, - [373] = { + { ["id"] = "rune.stat_791928121", ["text"] = "Causes #% increased Stun Buildup", ["type"] = "augment", }, - [374] = { + { ["id"] = "rune.stat_769129523", ["text"] = "Causes Double Stun Buildup", ["type"] = "augment", }, - [375] = { + { + ["id"] = "rune.stat_2957287092", + ["text"] = "Chance to Block Damage is Lucky", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_234296660", ["text"] = "Companions deal #% increased Damage", ["type"] = "augment", }, - [376] = { + { ["id"] = "rune.stat_2882351629", ["text"] = "Companions deal #% more Damage for each different type of dead Companion you have", ["type"] = "augment", }, - [377] = { + { ["id"] = "rune.stat_226999623", ["text"] = "Companions gain Onslaught for # second on Hitting your Marked targets", ["type"] = "augment", }, - [378] = { + { ["id"] = "rune.stat_666077204", ["text"] = "Companions have #% increased Attack Speed", ["type"] = "augment", }, - [379] = { + { ["id"] = "rune.stat_1805182458", ["text"] = "Companions have #% increased maximum Life", ["type"] = "augment", }, - [380] = { + { ["id"] = "rune.stat_4200448078", ["text"] = "Companions in your Presence Gain #% of Damage as Extra Damage of a random Element", ["type"] = "augment", }, - [381] = { + { ["id"] = "rune.stat_2652394701", ["text"] = "Companions in your Presence gain # Rage on hit", ["type"] = "augment", }, - [382] = { + { ["id"] = "rune.stat_1539508682", ["text"] = "Companions in your Presence have #% to all Elemental Resistances", ["type"] = "augment", }, - [383] = { + { ["id"] = "rune.stat_1496740334", ["text"] = "Convert #% of Requirements to Dexterity", ["type"] = "augment", }, - [384] = { + { ["id"] = "rune.stat_2913012734", ["text"] = "Convert #% of Requirements to Intelligence", ["type"] = "augment", }, - [385] = { + { ["id"] = "rune.stat_1556124492", ["text"] = "Convert #% of Requirements to Strength", ["type"] = "augment", }, - [386] = { + { ["id"] = "rune.stat_935518591", ["text"] = "Critical Hit chance is Lucky against Parried enemies", ["type"] = "augment", }, - [387] = { + { ["id"] = "rune.stat_2524254339", ["text"] = "Culling Strike", ["type"] = "augment", }, - [388] = { + { ["id"] = "rune.stat_2301852600", ["text"] = "Deal #% of Overkill damage to enemies within 2 metres of the enemy killed", ["type"] = "augment", }, - [389] = { + { ["id"] = "rune.stat_1238227257", ["text"] = "Debuffs on you expire #% faster", ["type"] = "augment", }, - [390] = { + { ["id"] = "rune.stat_1933674044", ["text"] = "Destroys all Augment Sockets on the item to create a Jewel Socket", ["type"] = "augment", }, - [391] = { + { ["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", }, - [392] = { + { ["id"] = "rune.stat_25786091", ["text"] = "Enemies have no Critical Damage Bonus for # seconds after you Blind them", ["type"] = "augment", }, - [393] = { + { + ["id"] = "rune.stat_4111745607", + ["text"] = "Enemies which are on Full Life cannot Evade your Hits", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_3370077792", ["text"] = "Enemies you Critically Hit get #% increased Life Regeneration Rate for 4 seconds", ["type"] = "augment", }, - [394] = { + { ["id"] = "rune.stat_1772929282", ["text"] = "Enemies you Curse have #% to Chaos Resistance", ["type"] = "augment", }, - [395] = { + { ["id"] = "rune.stat_1984310483", ["text"] = "Enemies you Curse take #% increased Damage", ["type"] = "augment", }, - [396] = { + { ["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", }, - [397] = { + { ["id"] = "rune.stat_1963589548", ["text"] = "Every 4 seconds, gain Guard equal to #% of maximum Runic Ward for 2 seconds", ["type"] = "augment", }, - [398] = { + { + ["id"] = "rune.stat_1540254896", + ["text"] = "Flammability Magnitude is doubled", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_731781020", ["text"] = "Flasks gain # charges per Second", ["type"] = "augment", }, - [399] = { + { ["id"] = "rune.stat_3444646646", ["text"] = "Gain # Druidic Prowess when you Heavy Stun a Rare or Unique Enemy", ["type"] = "augment", }, - [400] = { + { ["id"] = "rune.stat_2797971005", ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "augment", }, - [401] = { + { ["id"] = "rune.stat_3695891184", ["text"] = "Gain # Life per enemy killed", ["type"] = "augment", }, - [402] = { + { ["id"] = "rune.stat_820939409", ["text"] = "Gain # Mana per Enemy Hit with Attacks", ["type"] = "augment", }, - [403] = { + { ["id"] = "rune.stat_1368271171", ["text"] = "Gain # Mana per enemy killed", ["type"] = "augment", }, - [404] = { + { ["id"] = "rune.stat_2709367754", ["text"] = "Gain # Rage on Melee Hit", ["type"] = "augment", }, - [405] = { + { ["id"] = "rune.stat_3398787959", ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "augment", }, - [406] = { + { ["id"] = "rune.stat_2505884597", ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "augment", }, - [407] = { + { ["id"] = "rune.stat_3617669804", ["text"] = "Gain #% of Damage as Extra Damage of a random Element", ["type"] = "augment", }, - [408] = { + { ["id"] = "rune.stat_3557924960", ["text"] = "Gain #% of Damage as Extra Damage of a random Element perRune Socketed in Equipped Items", ["type"] = "augment", }, - [409] = { + { ["id"] = "rune.stat_731403740", ["text"] = "Gain #% of Damage as Extra Damage of all Elements", ["type"] = "augment", }, - [410] = { + { ["id"] = "rune.stat_3015669065", ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "augment", }, - [411] = { + { ["id"] = "rune.stat_3278136794", ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "augment", }, - [412] = { + { ["id"] = "rune.stat_1693515857", ["text"] = "Gain #% of Damage as Extra Physical Damage per ten percent missing Mana", ["type"] = "augment", }, - [413] = { + { ["id"] = "rune.stat_386720106", ["text"] = "Gain #% of maximum Life as Extra maximum Runic Ward", ["type"] = "augment", }, - [414] = { + { ["id"] = "rune.stat_901336307", ["text"] = "Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds", ["type"] = "augment", }, - [415] = { + { ["id"] = "rune.stat_3170380905", ["text"] = "Gain 1% of damage as Fire damage per #% Chance to Block", ["type"] = "augment", }, - [416] = { + { ["id"] = "rune.stat_3903510399", ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", ["type"] = "augment", }, - [417] = { + { ["id"] = "rune.stat_3033371881", ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "augment", }, - [418] = { + { ["id"] = "rune.stat_3863682550", ["text"] = "Gain Guard equal to #% of maximum Life for 4 seconds on taking Savage Hit", ["type"] = "augment", }, - [419] = { + { ["id"] = "rune.stat_2444976134", ["text"] = "Gain Maximum Energy Shield equal to #% of totalStrength Requirements of Equipped Armour Items", ["type"] = "augment", }, - [420] = { + { ["id"] = "rune.stat_1811977226", ["text"] = "Gain Onslaught for # seconds when your Marks Activate", ["type"] = "augment", }, - [421] = { + { ["id"] = "rune.stat_3398301358", ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "augment", }, - [422] = { + { ["id"] = "rune.stat_416040624", ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "augment", }, - [423] = { + { ["id"] = "rune.stat_1995345015", ["text"] = "Gain maximum Runic Ward equal to #% of this Weapon's maximum damage", ["type"] = "augment", }, - [424] = { + { ["id"] = "rune.stat_538981065", ["text"] = "Grenades have #% chance to activate a second time", ["type"] = "augment", }, - [425] = { + { ["id"] = "rune.stat_3855016469", ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "augment", }, - [426] = { + { ["id"] = "rune.stat_1800433827", ["text"] = "Hits against you have no Critical Damage Bonus while on Consecrated Ground", ["type"] = "augment", }, - [427] = { + { ["id"] = "rune.stat_2036307261", ["text"] = "Hits with this weapon have # to # Added Physical Damage per 1% Block Chance", ["type"] = "augment", }, - [428] = { + { ["id"] = "rune.stat_726496846", ["text"] = "Idols socketed in this item gain the benefits of their Bonded modifiers", ["type"] = "augment", }, - [429] = { + { ["id"] = "rune.stat_3570773271", ["text"] = "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", ["type"] = "augment", }, - [430] = { + { + ["id"] = "rune.stat_2293111154", + ["text"] = "Increases and Reductions to Minion Attack Speed also affect you", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_4282982513", ["text"] = "Increases and Reductions to Movement Speed also apply to Energy Shield Recharge Rate", ["type"] = "augment", }, - [431] = { + { ["id"] = "rune.stat_55876295", ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "augment", }, - [432] = { + { ["id"] = "rune.stat_669069897", ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "augment", }, - [433] = { + { ["id"] = "rune.stat_3473409233", ["text"] = "Lose #% of maximum Life per second while Sprinting", ["type"] = "augment", }, - [434] = { + { ["id"] = "rune.stat_2895144208", ["text"] = "Maim on Critical Hit", ["type"] = "augment", }, - [435] = { + { ["id"] = "rune.stat_3145796865", ["text"] = "Mana Recovery from Regeneration is also applied to Runic Ward", ["type"] = "augment", }, - [436] = { + { ["id"] = "rune.stat_4236566306", ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "augment", }, - [437] = { + { ["id"] = "rune.stat_3742865955", ["text"] = "Minions deal #% increased Damage with Command Skills", ["type"] = "augment", }, - [438] = { + { ["id"] = "rune.stat_1433756169", ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", ["type"] = "augment", }, - [439] = { + { ["id"] = "rune.stat_3091578504", ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "augment", }, - [440] = { + { ["id"] = "rune.stat_770672621", ["text"] = "Minions have #% increased maximum Life", ["type"] = "augment", }, - [441] = { + { ["id"] = "rune.stat_3837707023", ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "augment", }, - [442] = { + { ["id"] = "rune.stat_540694930", ["text"] = "Minions in your Presence have Onslaught while you are on Low Runic Ward", ["type"] = "augment", }, - [443] = { + { ["id"] = "rune.stat_889552744", ["text"] = "Minions take #% of Physical Damage as Lightning Damage", ["type"] = "augment", }, - [444] = { + { + ["id"] = "rune.stat_3430033313", + ["text"] = "Off-hand Hits inflict Runefather's Challenge", + ["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", }, - [445] = { + { ["id"] = "rune.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"] = "augment", }, - [446] = { + { ["id"] = "rune.stat_1480688478", ["text"] = "One of your Persistent Minions revives when an Offering expires", ["type"] = "augment", }, - [447] = { + { + ["id"] = "rune.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_2681952497", ["text"] = "Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time", ["type"] = "augment", }, - [448] = { + { ["id"] = "rune.stat_3552135623", ["text"] = "Prevent #% of Damage from Deflected Hits", ["type"] = "augment", }, - [449] = { + { ["id"] = "rune.stat_967155385", ["text"] = "Prevent #% of Damage from Deflected Hits if you'veDeflected no Hits Recently", ["type"] = "augment", }, - [450] = { + { ["id"] = "rune.stat_1549287843", ["text"] = "Projectiles have #% chance to Fork", ["type"] = "augment", }, - [451] = { + { ["id"] = "rune.stat_3198163869", ["text"] = "Raven-Touched", ["type"] = "augment", }, - [452] = { + { ["id"] = "rune.stat_1678831767", ["text"] = "Recover # Life when you Block", ["type"] = "augment", }, - [453] = { + { ["id"] = "rune.stat_2023107756", ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "augment", }, - [454] = { + { ["id"] = "rune.stat_1914815166", ["text"] = "Recover #% of maximum Life over 2 Seconds when you use a Command Skill", ["type"] = "augment", }, - [455] = { + { ["id"] = "rune.stat_1030153674", ["text"] = "Recover #% of maximum Mana on Kill", ["type"] = "augment", }, - [456] = { + { ["id"] = "rune.stat_3515226849", ["text"] = "Recover #% of maximum Runic Ward when one of your Reviving Minions is Killed", ["type"] = "augment", }, - [457] = { + { ["id"] = "rune.stat_445996047", ["text"] = "Regenerate #% of maximum Life per Second if you have used a Command Skill Recently", ["type"] = "augment", }, - [458] = { + { ["id"] = "rune.stat_836936635", ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "augment", }, - [459] = { + { ["id"] = "rune.stat_3482326075", ["text"] = "Remnants can be collected from #% further away", ["type"] = "augment", }, - [460] = { + { ["id"] = "rune.stat_1999910726", ["text"] = "Remnants you create have #% increased effect", ["type"] = "augment", }, - [461] = { + { ["id"] = "rune.stat_594547430", ["text"] = "Remove a Damaging Ailment when you use a Command Skill", ["type"] = "augment", }, - [462] = { + { ["id"] = "rune.stat_103706408", ["text"] = "Rolls only the minimum or maximum Damage value for Physical Damage", ["type"] = "augment", }, - [463] = { + { ["id"] = "rune.stat_2579974553", ["text"] = "Runic Ward Regeneration Rate is doubled", ["type"] = "augment", }, - [464] = { + { ["id"] = "rune.stat_1585886916", ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", ["type"] = "augment", }, - [465] = { + { ["id"] = "rune.stat_2942439603", ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", ["type"] = "augment", }, - [466] = { + { ["id"] = "rune.stat_267552601", ["text"] = "Spell damage Penetrates #% of enemy Elemental Resistances while on Low Runic Ward", ["type"] = "augment", }, - [467] = { + { ["id"] = "rune.stat_1755296234", ["text"] = "Targets can be affected by # of your Poisons at the same time", ["type"] = "augment", }, - [468] = { + { ["id"] = "rune.stat_2889034188", ["text"] = "Targets that are Blinded, Maimed, and Bleeding cannot Evade your Hits", ["type"] = "augment", }, - [469] = { + { ["id"] = "rune.stat_1871622140", ["text"] = "Thorns Damage is Lucky against targets with Fully Broken Armour", ["type"] = "augment", }, - [470] = { + { ["id"] = "rune.stat_602344904", ["text"] = "Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers", ["type"] = "augment", }, - [471] = { + { ["id"] = "rune.stat_1433896639", ["text"] = "Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers", ["type"] = "augment", }, - [472] = { + { ["id"] = "rune.stat_1624833382", ["text"] = "Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers", ["type"] = "augment", }, - [473] = { + { + ["id"] = "rune.stat_1683578560", + ["text"] = "Unwavering Stance", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_2390027291", ["text"] = "When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers", ["type"] = "augment", }, - [474] = { + { ["id"] = "rune.stat_3353733343", ["text"] = "When you generate a Frenzy Charge, Allies in your Presence generate that Charge instead", ["type"] = "augment", }, - [475] = { + { ["id"] = "rune.stat_1323701627", ["text"] = "When you generate a Power Charge, Allies in your Presence generate that Charge instead", ["type"] = "augment", }, - [476] = { + { ["id"] = "rune.stat_3257561708", ["text"] = "When you generate an Endurance Charge, Allies in your Presence generate that Charge instead", ["type"] = "augment", }, - [477] = { + { ["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", }, - [478] = { + { ["id"] = "rune.stat_1937310173", ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", ["type"] = "augment", }, - [479] = { + { ["id"] = "rune.stat_4058681894", ["text"] = "You have no Critical Damage Bonus", ["type"] = "augment", }, - [480] = { + { + ["id"] = "rune.stat_2905515354", + ["text"] = "You take #% of damage from Blocked Hits", + ["type"] = "augment", + }, + { ["id"] = "rune.stat_1919509054", ["text"] = "Your Energy Shield Recharge starts when your Minions are Reformed", ["type"] = "augment", }, - [481] = { + { ["id"] = "rune.stat_3128773415", ["text"] = "Your speed is Unaffected by Slows while Sprinting", ["type"] = "augment", }, - [482] = { + { ["id"] = "rune.stat_50721145", ["text"] = "Your speed is unaffected by Slows", ["type"] = "augment", @@ -33095,3744 +34310,3754 @@ return { ["id"] = "rune", ["label"] = "Augment", }, - [8] = { + { ["entries"] = { - [1] = { + { ["id"] = "desecrated.stat_3325883026", ["text"] = "# Life Regeneration per second", ["type"] = "desecrated", }, - [2] = { + { ["id"] = "desecrated.stat_2122183138", ["text"] = "# Mana gained when you Block", ["type"] = "desecrated", }, - [3] = { + { ["id"] = "desecrated.stat_243380454", ["text"] = "# additional Rare Monsters are spawned from Abysses", ["type"] = "desecrated", }, - [4] = { + { ["id"] = "desecrated.stat_243380454", ["text"] = "# additional Rare Monsters are spawned from Abysses in Map", ["type"] = "desecrated", }, - [5] = { + { ["id"] = "desecrated.stat_258119672", ["text"] = "# metre to Dodge Roll distance", ["type"] = "desecrated", }, - [6] = { + { ["id"] = "desecrated.stat_287294012", ["text"] = "# to # Fire Thorns damage per 100 maximum Life", ["type"] = "desecrated", }, - [7] = { + { ["id"] = "desecrated.stat_2881298780", ["text"] = "# to # Physical Thorns damage", ["type"] = "desecrated", }, - [8] = { + { ["id"] = "desecrated.stat_803737631", ["text"] = "# to Accuracy Rating", ["type"] = "desecrated", }, - [9] = { + { ["id"] = "desecrated.stat_691932474", ["text"] = "# to Accuracy Rating (Local)", ["type"] = "desecrated", }, - [10] = { + { ["id"] = "desecrated.stat_809229260", ["text"] = "# to Armour", ["type"] = "desecrated", }, - [11] = { + { ["id"] = "desecrated.stat_3484657501", ["text"] = "# to Armour (Local)", ["type"] = "desecrated", }, - [12] = { + { ["id"] = "desecrated.stat_3261801346", ["text"] = "# to Dexterity", ["type"] = "desecrated", }, - [13] = { + { ["id"] = "desecrated.stat_2300185227", ["text"] = "# to Dexterity and Intelligence", ["type"] = "desecrated", }, - [14] = { + { ["id"] = "desecrated.stat_2144192055", ["text"] = "# to Evasion Rating", ["type"] = "desecrated", }, - [15] = { + { ["id"] = "desecrated.stat_53045048", ["text"] = "# to Evasion Rating (Local)", ["type"] = "desecrated", }, - [16] = { + { ["id"] = "desecrated.stat_328541901", ["text"] = "# to Intelligence", ["type"] = "desecrated", }, - [17] = { + { ["id"] = "desecrated.stat_4226189338", ["text"] = "# to Level of all Chaos Spell Skills", ["type"] = "desecrated", }, - [18] = { + { ["id"] = "desecrated.stat_2254480358", ["text"] = "# to Level of all Cold Spell Skills", ["type"] = "desecrated", }, - [19] = { + { ["id"] = "desecrated.stat_591105508", ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "desecrated", }, - [20] = { + { ["id"] = "desecrated.stat_1545858329", ["text"] = "# to Level of all Lightning Spell Skills", ["type"] = "desecrated", }, - [21] = { + { ["id"] = "desecrated.stat_1992191903", ["text"] = "# to Level of all Mark Skills", ["type"] = "desecrated", }, - [22] = { + { ["id"] = "desecrated.stat_9187492", ["text"] = "# to Level of all Melee Skills", ["type"] = "desecrated", }, - [23] = { + { ["id"] = "desecrated.stat_2162097452", ["text"] = "# to Level of all Minion Skills", ["type"] = "desecrated", }, - [24] = { + { ["id"] = "desecrated.stat_1600707273", ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "desecrated", }, - [25] = { + { ["id"] = "desecrated.stat_1202301673", ["text"] = "# to Level of all Projectile Skills", ["type"] = "desecrated", }, - [26] = { + { ["id"] = "desecrated.stat_4283407333", ["text"] = "# to Level of all Skills", ["type"] = "desecrated", }, - [27] = { + { ["id"] = "desecrated.stat_124131830", ["text"] = "# to Level of all Spell Skills", ["type"] = "desecrated", }, - [28] = { + { ["id"] = "desecrated.stat_1181501418", ["text"] = "# to Maximum Rage", ["type"] = "desecrated", }, - [29] = { - ["id"] = "desecrated.stat_2704225257", + { + ["id"] = "desecrated.stat_3981240776", ["text"] = "# to Spirit", ["type"] = "desecrated", }, - [30] = { - ["id"] = "desecrated.stat_3981240776", + { + ["id"] = "desecrated.stat_2704225257", ["text"] = "# to Spirit", ["type"] = "desecrated", }, - [31] = { + { ["id"] = "desecrated.stat_4080418644", ["text"] = "# to Strength", ["type"] = "desecrated", }, - [32] = { + { ["id"] = "desecrated.stat_538848803", ["text"] = "# to Strength and Dexterity", ["type"] = "desecrated", }, - [33] = { + { ["id"] = "desecrated.stat_1535626285", ["text"] = "# to Strength and Intelligence", ["type"] = "desecrated", }, - [34] = { + { ["id"] = "desecrated.stat_915769802", ["text"] = "# to Stun Threshold", ["type"] = "desecrated", }, - [35] = { + { ["id"] = "desecrated.stat_1379411836", ["text"] = "# to all Attributes", ["type"] = "desecrated", }, - [36] = { + { ["id"] = "desecrated.stat_3489782002", ["text"] = "# to maximum Energy Shield", ["type"] = "desecrated", }, - [37] = { + { ["id"] = "desecrated.stat_4052037485", ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "desecrated", }, - [38] = { + { ["id"] = "desecrated.stat_3299347043", ["text"] = "# to maximum Life", ["type"] = "desecrated", }, - [39] = { + { ["id"] = "desecrated.stat_1050105434", ["text"] = "# to maximum Mana", ["type"] = "desecrated", }, - [40] = { + { ["id"] = "desecrated.stat_4097212302", ["text"] = "# to maximum number of Elemental Infusions", ["type"] = "desecrated", }, - [41] = { + { ["id"] = "desecrated.stat_1823942939", ["text"] = "# to maximum number of Summoned Ballista Totems", ["type"] = "desecrated", }, - [42] = { + { ["id"] = "desecrated.stat_2840930496", ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", ["type"] = "desecrated", }, - [43] = { + { ["id"] = "desecrated.stat_2463230181", ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "desecrated", }, - [44] = { + { ["id"] = "desecrated.stat_1347539079", ["text"] = "#% Surpassing chance to fire an additional Projectile", ["type"] = "desecrated", }, - [45] = { + { ["id"] = "desecrated.stat_3771516363", ["text"] = "#% additional Physical Damage Reduction", ["type"] = "desecrated", }, - [46] = { + { ["id"] = "desecrated.stat_501873429", ["text"] = "#% chance for Charms you use to not consume Charges", ["type"] = "desecrated", }, - [47] = { + { ["id"] = "desecrated.stat_311641062", ["text"] = "#% chance for Flasks you use to not consume Charges", ["type"] = "desecrated", }, - [48] = { + { ["id"] = "desecrated.stat_2466011626", ["text"] = "#% chance for Lightning Damage with Hits to be Lucky", ["type"] = "desecrated", }, - [49] = { + { ["id"] = "desecrated.stat_3950000557", ["text"] = "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", ["type"] = "desecrated", }, - [50] = { + { ["id"] = "desecrated.stat_2749595652", ["text"] = "#% chance for Skills to retain 40% of Glory on use", ["type"] = "desecrated", }, - [51] = { + { ["id"] = "desecrated.stat_2910761524", ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", ["type"] = "desecrated", }, - [52] = { + { ["id"] = "desecrated.stat_599320227", ["text"] = "#% chance for Trigger skills to refund half of Energy Spent", ["type"] = "desecrated", }, - [53] = { + { ["id"] = "desecrated.stat_2705185939", ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", ["type"] = "desecrated", }, - [54] = { + { ["id"] = "desecrated.stat_318953428", ["text"] = "#% chance to Blind Enemies on Hit with Attacks", ["type"] = "desecrated", }, - [55] = { + { ["id"] = "desecrated.stat_446027070", ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Hit", ["type"] = "desecrated", }, - [56] = { + { ["id"] = "desecrated.stat_2321178454", ["text"] = "#% chance to Pierce an Enemy", ["type"] = "desecrated", }, - [57] = { + { ["id"] = "desecrated.stat_795138349", ["text"] = "#% chance to Poison on Hit", ["type"] = "desecrated", }, - [58] = { + { ["id"] = "desecrated.stat_4258524206", ["text"] = "#% chance to build an additional Combo on Hit", ["type"] = "desecrated", }, - [59] = { + { ["id"] = "desecrated.stat_2174054121", ["text"] = "#% chance to inflict Bleeding on Hit", ["type"] = "desecrated", }, - [60] = { + { ["id"] = "desecrated.stat_1949851472", ["text"] = "#% chance when a Charm is used to use another Charm without consuming Charges", ["type"] = "desecrated", }, - [61] = { + { ["id"] = "desecrated.stat_3927679277", ["text"] = "#% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", ["type"] = "desecrated", }, - [62] = { + { ["id"] = "desecrated.stat_2760344900", ["text"] = "#% chance when you Reload a Crossbow to be immediate", ["type"] = "desecrated", }, - [63] = { + { ["id"] = "desecrated.stat_1104825894", ["text"] = "#% faster Curse Activation", ["type"] = "desecrated", }, - [64] = { + { ["id"] = "desecrated.stat_1782086450", ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "desecrated", }, - [65] = { + { ["id"] = "desecrated.stat_624954515", ["text"] = "#% increased Accuracy Rating", ["type"] = "desecrated", }, - [66] = { + { ["id"] = "desecrated.stat_169946467", ["text"] = "#% increased Accuracy Rating with Bows", ["type"] = "desecrated", }, - [67] = { + { ["id"] = "desecrated.stat_2158617060", ["text"] = "#% increased Archon Buff duration", ["type"] = "desecrated", }, - [68] = { + { ["id"] = "desecrated.stat_280731498", ["text"] = "#% increased Area of Effect", ["type"] = "desecrated", }, - [69] = { + { ["id"] = "desecrated.stat_1840985759", ["text"] = "#% increased Area of Effect for Attacks", ["type"] = "desecrated", }, - [70] = { + { ["id"] = "desecrated.stat_153777645", ["text"] = "#% increased Area of Effect of Curses", ["type"] = "desecrated", }, - [71] = { + { ["id"] = "desecrated.stat_2866361420", ["text"] = "#% increased Armour", ["type"] = "desecrated", }, - [72] = { + { ["id"] = "desecrated.stat_1062208444", ["text"] = "#% increased Armour (Local)", ["type"] = "desecrated", }, - [73] = { + { ["id"] = "desecrated.stat_2637470878", ["text"] = "#% increased Armour Break Duration", ["type"] = "desecrated", }, - [74] = { + { ["id"] = "desecrated.stat_3321629045", ["text"] = "#% increased Armour and Energy Shield", ["type"] = "desecrated", }, - [75] = { + { ["id"] = "desecrated.stat_2451402625", ["text"] = "#% increased Armour and Evasion", ["type"] = "desecrated", }, - [76] = { + { ["id"] = "desecrated.stat_1015576579", ["text"] = "#% increased Armour from Equipped Body Armour", ["type"] = "desecrated", }, - [77] = { + { ["id"] = "desecrated.stat_3523867985", ["text"] = "#% increased Armour, Evasion and Energy Shield", ["type"] = "desecrated", }, - [78] = { + { ["id"] = "desecrated.stat_2523933828", ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "desecrated", }, - [79] = { + { ["id"] = "desecrated.stat_2843214518", ["text"] = "#% increased Attack Damage", ["type"] = "desecrated", }, - [80] = { + { ["id"] = "desecrated.stat_4246007234", ["text"] = "#% increased Attack Damage while on Low Life", ["type"] = "desecrated", }, - [81] = { + { ["id"] = "desecrated.stat_681332047", ["text"] = "#% increased Attack Speed", ["type"] = "desecrated", }, - [82] = { + { ["id"] = "desecrated.stat_210067635", ["text"] = "#% increased Attack Speed (Local)", ["type"] = "desecrated", }, - [83] = { + { ["id"] = "desecrated.stat_314741699", ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", ["type"] = "desecrated", }, - [84] = { + { ["id"] = "desecrated.stat_299996", ["text"] = "#% increased Attack Speed while your Companion is in your Presence", ["type"] = "desecrated", }, - [85] = { + { ["id"] = "desecrated.stat_3759735052", ["text"] = "#% increased Attack Speed with Bows", ["type"] = "desecrated", }, - [86] = { + { ["id"] = "desecrated.stat_1135928777", ["text"] = "#% increased Attack Speed with Crossbows", ["type"] = "desecrated", }, - [87] = { + { ["id"] = "desecrated.stat_3283482523", ["text"] = "#% increased Attack Speed with Quarterstaves", ["type"] = "desecrated", }, - [88] = { + { ["id"] = "desecrated.stat_1165163804", ["text"] = "#% increased Attack Speed with Spears", ["type"] = "desecrated", }, - [89] = { + { ["id"] = "desecrated.stat_3639275092", ["text"] = "#% increased Attribute Requirements", ["type"] = "desecrated", }, - [90] = { + { ["id"] = "desecrated.stat_1459321413", ["text"] = "#% increased Bleeding Duration", ["type"] = "desecrated", }, - [91] = { + { ["id"] = "desecrated.stat_1585769763", ["text"] = "#% increased Blind Effect", ["type"] = "desecrated", }, - [92] = { + { ["id"] = "desecrated.stat_4147897060", ["text"] = "#% increased Block chance", ["type"] = "desecrated", }, - [93] = { + { ["id"] = "desecrated.stat_2481353198", ["text"] = "#% increased Block chance (Local)", ["type"] = "desecrated", }, - [94] = { + { ["id"] = "desecrated.stat_2891184298", ["text"] = "#% increased Cast Speed", ["type"] = "desecrated", }, - [95] = { + { ["id"] = "desecrated.stat_1518586897", ["text"] = "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", ["type"] = "desecrated", }, - [96] = { + { ["id"] = "desecrated.stat_656291658", ["text"] = "#% increased Cast Speed when on Full Life", ["type"] = "desecrated", }, - [97] = { + { ["id"] = "desecrated.stat_1136768410", ["text"] = "#% increased Cast Speed when on Low Life", ["type"] = "desecrated", }, - [98] = { + { ["id"] = "desecrated.stat_1914226331", ["text"] = "#% increased Cast Speed while on Full Mana", ["type"] = "desecrated", }, - [99] = { + { ["id"] = "desecrated.stat_736967255", ["text"] = "#% increased Chaos Damage", ["type"] = "desecrated", }, - [100] = { + { ["id"] = "desecrated.stat_3585532255", ["text"] = "#% increased Charm Charges gained", ["type"] = "desecrated", }, - [101] = { + { ["id"] = "desecrated.stat_1389754388", ["text"] = "#% increased Charm Effect Duration", ["type"] = "desecrated", }, - [102] = { + { ["id"] = "desecrated.stat_3485067555", ["text"] = "#% increased Chill Duration on Enemies", ["type"] = "desecrated", }, - [103] = { + { ["id"] = "desecrated.stat_3291658075", ["text"] = "#% increased Cold Damage", ["type"] = "desecrated", }, - [104] = { + { ["id"] = "desecrated.stat_1002535626", ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", ["type"] = "desecrated", }, - [105] = { + { ["id"] = "desecrated.stat_1004011302", ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "desecrated", }, - [106] = { + { ["id"] = "desecrated.stat_1544773869", ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", ["type"] = "desecrated", }, - [107] = { + { ["id"] = "desecrated.stat_263495202", ["text"] = "#% increased Cost Efficiency", ["type"] = "desecrated", }, - [108] = { + { ["id"] = "desecrated.stat_3350279336", ["text"] = "#% increased Cost Efficiency of Attacks", ["type"] = "desecrated", }, - [109] = { + { ["id"] = "desecrated.stat_3556824919", ["text"] = "#% increased Critical Damage Bonus", ["type"] = "desecrated", }, - [110] = { + { ["id"] = "desecrated.stat_3714003708", ["text"] = "#% increased Critical Damage Bonus for Attack Damage", ["type"] = "desecrated", }, - [111] = { + { ["id"] = "desecrated.stat_2456523742", ["text"] = "#% increased Critical Damage Bonus with Spears", ["type"] = "desecrated", }, - [112] = { + { ["id"] = "desecrated.stat_587431675", ["text"] = "#% increased Critical Hit Chance", ["type"] = "desecrated", }, - [113] = { + { ["id"] = "desecrated.stat_1045789614", ["text"] = "#% increased Critical Hit Chance against Marked Enemies", ["type"] = "desecrated", }, - [114] = { + { ["id"] = "desecrated.stat_2194114101", ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "desecrated", }, - [115] = { + { ["id"] = "desecrated.stat_737908626", ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "desecrated", }, - [116] = { + { ["id"] = "desecrated.stat_274716455", ["text"] = "#% increased Critical Spell Damage Bonus", ["type"] = "desecrated", }, - [117] = { + { ["id"] = "desecrated.stat_3192728503", ["text"] = "#% increased Crossbow Reload Speed", ["type"] = "desecrated", }, - [118] = { + { ["id"] = "desecrated.stat_3563080185", ["text"] = "#% increased Culling Strike Threshold", ["type"] = "desecrated", }, - [119] = { + { ["id"] = "desecrated.stat_3824372849", ["text"] = "#% increased Curse Duration", ["type"] = "desecrated", }, - [120] = { + { ["id"] = "desecrated.stat_2353576063", ["text"] = "#% increased Curse Magnitudes", ["type"] = "desecrated", }, - [121] = { + { ["id"] = "desecrated.stat_2301718443", ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", ["type"] = "desecrated", }, - [122] = { + { ["id"] = "desecrated.stat_2118708619", ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", ["type"] = "desecrated", }, - [123] = { + { ["id"] = "desecrated.stat_2440073079", ["text"] = "#% increased Damage while Shapeshifted", ["type"] = "desecrated", }, - [124] = { + { ["id"] = "desecrated.stat_2543331226", ["text"] = "#% increased Damage while you have a Totem", ["type"] = "desecrated", }, - [125] = { + { ["id"] = "desecrated.stat_627767961", ["text"] = "#% increased Damage while you have an active Charm", ["type"] = "desecrated", }, - [126] = { + { ["id"] = "desecrated.stat_693180608", ["text"] = "#% increased Damage while your Companion is in your Presence", ["type"] = "desecrated", }, - [127] = { + { ["id"] = "desecrated.stat_1241625305", ["text"] = "#% increased Damage with Bow Skills", ["type"] = "desecrated", }, - [128] = { + { ["id"] = "desecrated.stat_4188894176", ["text"] = "#% increased Damage with Bows", ["type"] = "desecrated", }, - [129] = { + { ["id"] = "desecrated.stat_427684353", ["text"] = "#% increased Damage with Crossbows", ["type"] = "desecrated", }, - [130] = { + { ["id"] = "desecrated.stat_1852872083", ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "desecrated", }, - [131] = { + { ["id"] = "desecrated.stat_1181419800", ["text"] = "#% increased Damage with Maces", ["type"] = "desecrated", }, - [132] = { + { ["id"] = "desecrated.stat_2518900926", ["text"] = "#% increased Damage with Plant Skills", ["type"] = "desecrated", }, - [133] = { + { ["id"] = "desecrated.stat_4045894391", ["text"] = "#% increased Damage with Quarterstaves", ["type"] = "desecrated", }, - [134] = { + { ["id"] = "desecrated.stat_2696027455", ["text"] = "#% increased Damage with Spears", ["type"] = "desecrated", }, - [135] = { + { ["id"] = "desecrated.stat_1594812856", ["text"] = "#% increased Damage with Warcries", ["type"] = "desecrated", }, - [136] = { + { ["id"] = "desecrated.stat_3040571529", ["text"] = "#% increased Deflection Rating", ["type"] = "desecrated", }, - [137] = { + { ["id"] = "desecrated.stat_4139681126", ["text"] = "#% increased Dexterity", ["type"] = "desecrated", }, - [138] = { + { ["id"] = "desecrated.stat_548070846", ["text"] = "#% increased Duration of Ailments on You", ["type"] = "desecrated", }, - [139] = { + { ["id"] = "desecrated.stat_1692879867", ["text"] = "#% increased Duration of Bleeding on You", ["type"] = "desecrated", }, - [140] = { + { ["id"] = "desecrated.stat_1829102168", ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "desecrated", }, - [141] = { + { ["id"] = "desecrated.stat_2604619892", ["text"] = "#% increased Duration of Elemental Ailments on Enemies", ["type"] = "desecrated", }, - [142] = { + { ["id"] = "desecrated.stat_1062710370", ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "desecrated", }, - [143] = { + { ["id"] = "desecrated.stat_4234573345", ["text"] = "#% increased Effect of Notable Passive Skills in Radius", ["type"] = "desecrated", }, - [144] = { + { ["id"] = "desecrated.stat_1060572482", ["text"] = "#% increased Effect of Small Passive Skills in Radius", ["type"] = "desecrated", }, - [145] = { + { ["id"] = "desecrated.stat_712554801", ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "desecrated", }, - [146] = { + { ["id"] = "desecrated.stat_3544800472", ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "desecrated", }, - [147] = { + { ["id"] = "desecrated.stat_3141070085", ["text"] = "#% increased Elemental Damage", ["type"] = "desecrated", }, - [148] = { + { ["id"] = "desecrated.stat_387439868", ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "desecrated", }, - [149] = { + { ["id"] = "desecrated.stat_4015621042", ["text"] = "#% increased Energy Shield", ["type"] = "desecrated", }, - [150] = { + { ["id"] = "desecrated.stat_2339757871", ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "desecrated", }, - [151] = { + { ["id"] = "desecrated.stat_1079292660", ["text"] = "#% increased Energy Shield Recharge Rate if you've Blocked Recently", ["type"] = "desecrated", }, - [152] = { + { ["id"] = "desecrated.stat_1195319608", ["text"] = "#% increased Energy Shield from Equipped Body Armour", ["type"] = "desecrated", }, - [153] = { + { ["id"] = "desecrated.stat_3174700878", ["text"] = "#% increased Energy Shield from Equipped Focus", ["type"] = "desecrated", }, - [154] = { + { ["id"] = "desecrated.stat_2106365538", ["text"] = "#% increased Evasion Rating", ["type"] = "desecrated", }, - [155] = { + { ["id"] = "desecrated.stat_124859000", ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "desecrated", }, - [156] = { + { ["id"] = "desecrated.stat_3509362078", ["text"] = "#% increased Evasion Rating from Equipped Body Armour", ["type"] = "desecrated", }, - [157] = { + { ["id"] = "desecrated.stat_1999113824", ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "desecrated", }, - [158] = { + { + ["id"] = "desecrated.stat_2393315299", + ["text"] = "#% increased Explicit Critical Modifier magnitudes", + ["type"] = "desecrated", + }, + { ["id"] = "desecrated.stat_3624940721", ["text"] = "#% increased Explicit Lightning Modifier magnitudes", ["type"] = "desecrated", }, - [159] = { + { + ["id"] = "desecrated.stat_3514984677", + ["text"] = "#% increased Explicit Mana Modifier magnitudes", + ["type"] = "desecrated", + }, + { ["id"] = "desecrated.stat_1335369947", ["text"] = "#% increased Explicit Physical Modifier magnitudes", ["type"] = "desecrated", }, - [160] = { + { ["id"] = "desecrated.stat_363924732", ["text"] = "#% increased Explicit Speed Modifier magnitudes", ["type"] = "desecrated", }, - [161] = { + { ["id"] = "desecrated.stat_2074866941", ["text"] = "#% increased Exposure Effect", ["type"] = "desecrated", }, - [162] = { + { ["id"] = "desecrated.stat_3962278098", ["text"] = "#% increased Fire Damage", ["type"] = "desecrated", }, - [163] = { + { ["id"] = "desecrated.stat_3858572996", ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", ["type"] = "desecrated", }, - [164] = { + { ["id"] = "desecrated.stat_2968503605", ["text"] = "#% increased Flammability Magnitude", ["type"] = "desecrated", }, - [165] = { + { ["id"] = "desecrated.stat_1836676211", ["text"] = "#% increased Flask Charges gained", ["type"] = "desecrated", }, - [166] = { + { ["id"] = "desecrated.stat_3741323227", ["text"] = "#% increased Flask Effect Duration", ["type"] = "desecrated", }, - [167] = { + { ["id"] = "desecrated.stat_51994685", ["text"] = "#% increased Flask Life Recovery rate", ["type"] = "desecrated", }, - [168] = { + { ["id"] = "desecrated.stat_1412217137", ["text"] = "#% increased Flask Mana Recovery rate", ["type"] = "desecrated", }, - [169] = { + { ["id"] = "desecrated.stat_473429811", ["text"] = "#% increased Freeze Buildup", ["type"] = "desecrated", }, - [170] = { + { ["id"] = "desecrated.stat_232701452", ["text"] = "#% increased Freeze Buildup if you've consumed an Power Charge Recently", ["type"] = "desecrated", }, - [171] = { + { ["id"] = "desecrated.stat_1697447343", ["text"] = "#% increased Freeze Buildup with Quarterstaves", ["type"] = "desecrated", }, - [172] = { + { ["id"] = "desecrated.stat_3780644166", ["text"] = "#% increased Freeze Threshold", ["type"] = "desecrated", }, - [173] = { + { ["id"] = "desecrated.stat_1177404658", ["text"] = "#% increased Global Armour, Evasion and Energy Shield", ["type"] = "desecrated", }, - [174] = { + { ["id"] = "desecrated.stat_1310194496", ["text"] = "#% increased Global Physical Damage", ["type"] = "desecrated", }, - [175] = { + { ["id"] = "desecrated.stat_3143918757", ["text"] = "#% increased Glory generation", ["type"] = "desecrated", }, - [176] = { + { ["id"] = "desecrated.stat_1869147066", ["text"] = "#% increased Glory generation for Banner Skills", ["type"] = "desecrated", }, - [177] = { + { ["id"] = "desecrated.stat_3131442032", ["text"] = "#% increased Grenade Damage", ["type"] = "desecrated", }, - [178] = { + { ["id"] = "desecrated.stat_1365232741", ["text"] = "#% increased Grenade Duration", ["type"] = "desecrated", }, - [179] = { + { ["id"] = "desecrated.stat_1697951953", ["text"] = "#% increased Hazard Damage", ["type"] = "desecrated", }, - [180] = { + { ["id"] = "desecrated.stat_3274422940", ["text"] = "#% increased Ice Crystal Life", ["type"] = "desecrated", }, - [181] = { + { ["id"] = "desecrated.stat_3791899485", ["text"] = "#% increased Ignite Magnitude", ["type"] = "desecrated", }, - [182] = { + { ["id"] = "desecrated.stat_330530785", ["text"] = "#% increased Immobilisation buildup", ["type"] = "desecrated", }, - [183] = { + { ["id"] = "desecrated.stat_656461285", ["text"] = "#% increased Intelligence", ["type"] = "desecrated", }, - [184] = { + { ["id"] = "desecrated.stat_565784293", ["text"] = "#% increased Knockback Distance", ["type"] = "desecrated", }, - [185] = { + { ["id"] = "desecrated.stat_310945763", ["text"] = "#% increased Life Cost Efficiency", ["type"] = "desecrated", }, - [186] = { + { ["id"] = "desecrated.stat_4009879772", ["text"] = "#% increased Life Flask Charges gained", ["type"] = "desecrated", }, - [187] = { + { ["id"] = "desecrated.stat_821241191", ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "desecrated", }, - [188] = { + { ["id"] = "desecrated.stat_2116424886", ["text"] = "#% increased Life Regeneration Rate while moving", ["type"] = "desecrated", }, - [189] = { + { ["id"] = "desecrated.stat_44972811", ["text"] = "#% increased Life Regeneration rate", ["type"] = "desecrated", }, - [190] = { + { ["id"] = "desecrated.stat_1261076060", ["text"] = "#% increased Life Regeneration rate during Effect of any Life Flask", ["type"] = "desecrated", }, - [191] = { + { ["id"] = "desecrated.stat_1263695895", ["text"] = "#% increased Light Radius", ["type"] = "desecrated", }, - [192] = { + { ["id"] = "desecrated.stat_2231156303", ["text"] = "#% increased Lightning Damage", ["type"] = "desecrated", }, - [193] = { + { ["id"] = "desecrated.stat_797289402", ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", ["type"] = "desecrated", }, - [194] = { + { ["id"] = "desecrated.stat_4043376133", ["text"] = "#% increased Magnitude of Abyssal Wasting you inflict", ["type"] = "desecrated", }, - [195] = { + { ["id"] = "desecrated.stat_1303248024", ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "desecrated", }, - [196] = { + { ["id"] = "desecrated.stat_3166958180", ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "desecrated", }, - [197] = { + { ["id"] = "desecrated.stat_1381474422", ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", ["type"] = "desecrated", }, - [198] = { + { ["id"] = "desecrated.stat_440490623", ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "desecrated", }, - [199] = { + { ["id"] = "desecrated.stat_3621874554", ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", ["type"] = "desecrated", }, - [200] = { + { ["id"] = "desecrated.stat_916833363", ["text"] = "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", ["type"] = "desecrated", }, - [201] = { + { ["id"] = "desecrated.stat_4259875040", ["text"] = "#% increased Magnitude of Impales inflicted with Spells", ["type"] = "desecrated", }, - [202] = { + { ["id"] = "desecrated.stat_2487305362", ["text"] = "#% increased Magnitude of Poison you inflict", ["type"] = "desecrated", }, - [203] = { + { ["id"] = "desecrated.stat_324210709", ["text"] = "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", ["type"] = "desecrated", }, - [204] = { + { ["id"] = "desecrated.stat_2527686725", ["text"] = "#% increased Magnitude of Shock you inflict", ["type"] = "desecrated", }, - [205] = { + { ["id"] = "desecrated.stat_2725205297", ["text"] = "#% increased Magnitude of Unholy Might buffs you grant", ["type"] = "desecrated", }, - [206] = { + { ["id"] = "desecrated.stat_4101445926", ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "desecrated", }, - [207] = { + { ["id"] = "desecrated.stat_3396435291", ["text"] = "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", ["type"] = "desecrated", }, - [208] = { + { ["id"] = "desecrated.stat_2653231923", ["text"] = "#% increased Mana Cost Efficiency of Spells", ["type"] = "desecrated", }, - [209] = { + { ["id"] = "desecrated.stat_3590792340", ["text"] = "#% increased Mana Flask Charges gained", ["type"] = "desecrated", }, - [210] = { + { ["id"] = "desecrated.stat_2222186378", ["text"] = "#% increased Mana Recovery from Flasks", ["type"] = "desecrated", }, - [211] = { + { ["id"] = "desecrated.stat_789117908", ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "desecrated", }, - [212] = { + { ["id"] = "desecrated.stat_1327522346", ["text"] = "#% increased Mana Regeneration Rate while moving", ["type"] = "desecrated", }, - [213] = { + { ["id"] = "desecrated.stat_3308030688", ["text"] = "#% increased Mana Regeneration Rate while stationary", ["type"] = "desecrated", }, - [214] = { + { ["id"] = "desecrated.stat_1002362373", ["text"] = "#% increased Melee Damage", ["type"] = "desecrated", }, - [215] = { + { ["id"] = "desecrated.stat_3028809864", ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", ["type"] = "desecrated", }, - [216] = { + { ["id"] = "desecrated.stat_3526763442", ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", ["type"] = "desecrated", }, - [217] = { + { ["id"] = "desecrated.stat_999511066", ["text"] = "#% increased Minion Duration", ["type"] = "desecrated", }, - [218] = { + { ["id"] = "desecrated.stat_1913583994", ["text"] = "#% increased Monster Attack Speed", ["type"] = "desecrated", }, - [219] = { + { ["id"] = "desecrated.stat_2488361432", ["text"] = "#% increased Monster Cast Speed", ["type"] = "desecrated", }, - [220] = { + { ["id"] = "desecrated.stat_1890519597", ["text"] = "#% increased Monster Damage", ["type"] = "desecrated", }, - [221] = { + { ["id"] = "desecrated.stat_2306522833", ["text"] = "#% increased Monster Movement Speed", ["type"] = "desecrated", }, - [222] = { + { ["id"] = "desecrated.stat_2250533757", ["text"] = "#% increased Movement Speed", ["type"] = "desecrated", }, - [223] = { + { ["id"] = "desecrated.stat_2590797182", ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", ["type"] = "desecrated", }, - [224] = { + { ["id"] = "desecrated.stat_3107707789", ["text"] = "#% increased Movement Speed while Sprinting", ["type"] = "desecrated", }, - [225] = { + { ["id"] = "desecrated.stat_3401186585", ["text"] = "#% increased Parried Debuff Duration", ["type"] = "desecrated", }, - [226] = { + { ["id"] = "desecrated.stat_818877178", ["text"] = "#% increased Parried Debuff Magnitude", ["type"] = "desecrated", }, - [227] = { + { ["id"] = "desecrated.stat_1569159338", ["text"] = "#% increased Parry Damage", ["type"] = "desecrated", }, - [228] = { + { ["id"] = "desecrated.stat_1509134228", ["text"] = "#% increased Physical Damage", ["type"] = "desecrated", }, - [229] = { + { ["id"] = "desecrated.stat_3473929743", ["text"] = "#% increased Pin Buildup", ["type"] = "desecrated", }, - [230] = { + { ["id"] = "desecrated.stat_2011656677", ["text"] = "#% increased Poison Duration", ["type"] = "desecrated", }, - [231] = { + { ["id"] = "desecrated.stat_3301100256", ["text"] = "#% increased Poison Duration on you", ["type"] = "desecrated", }, - [232] = { + { ["id"] = "desecrated.stat_101878827", ["text"] = "#% increased Presence Area of Effect", ["type"] = "desecrated", }, - [233] = { + { ["id"] = "desecrated.stat_1839076647", ["text"] = "#% increased Projectile Damage", ["type"] = "desecrated", }, - [234] = { + { ["id"] = "desecrated.stat_3596695232", ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", ["type"] = "desecrated", }, - [235] = { + { ["id"] = "desecrated.stat_3759663284", ["text"] = "#% increased Projectile Speed", ["type"] = "desecrated", }, - [236] = { + { ["id"] = "desecrated.stat_2416650879", ["text"] = "#% increased Rage Cost Efficiency", ["type"] = "desecrated", }, - [237] = { + { ["id"] = "desecrated.stat_3917489142", ["text"] = "#% increased Rarity of Items found", ["type"] = "desecrated", }, - [238] = { + { ["id"] = "desecrated.stat_710476746", ["text"] = "#% increased Reload Speed", ["type"] = "desecrated", }, - [239] = { + { ["id"] = "desecrated.stat_3413635271", ["text"] = "#% increased Reservation Efficiency of Companion Skills", ["type"] = "desecrated", }, - [240] = { + { ["id"] = "desecrated.stat_1697191405", ["text"] = "#% increased Reservation Efficiency of Herald Skills", ["type"] = "desecrated", }, - [241] = { + { ["id"] = "desecrated.stat_1805633363", ["text"] = "#% increased Reservation Efficiency of Minion Skills", ["type"] = "desecrated", }, - [242] = { + { ["id"] = "desecrated.stat_3668351662", ["text"] = "#% increased Shock Duration", ["type"] = "desecrated", }, - [243] = { + { ["id"] = "desecrated.stat_3377888098", ["text"] = "#% increased Skill Effect Duration", ["type"] = "desecrated", }, - [244] = { + { ["id"] = "desecrated.stat_970213192", ["text"] = "#% increased Skill Speed", ["type"] = "desecrated", }, - [245] = { + { ["id"] = "desecrated.stat_3313255158", ["text"] = "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", ["type"] = "desecrated", }, - [246] = { + { ["id"] = "desecrated.stat_918325986", ["text"] = "#% increased Skill Speed while Shapeshifted", ["type"] = "desecrated", }, - [247] = { + { ["id"] = "desecrated.stat_924253255", ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "desecrated", }, - [248] = { + { ["id"] = "desecrated.stat_2974417149", ["text"] = "#% increased Spell Damage", ["type"] = "desecrated", }, - [249] = { + { ["id"] = "desecrated.stat_3491815140", ["text"] = "#% increased Spell Damage per 100 Maximum Life", ["type"] = "desecrated", }, - [250] = { + { ["id"] = "desecrated.stat_1850249186", ["text"] = "#% increased Spell Damage per 100 maximum Mana", ["type"] = "desecrated", }, - [251] = { + { ["id"] = "desecrated.stat_3176481473", ["text"] = "#% increased Spell Damage while on Full Energy Shield", ["type"] = "desecrated", }, - [252] = { + { ["id"] = "desecrated.stat_4136346606", ["text"] = "#% increased Spell Damage while wielding a Melee Weapon", ["type"] = "desecrated", }, - [253] = { + { ["id"] = "desecrated.stat_1373860425", ["text"] = "#% increased Spell Damage with Spells that cost Life", ["type"] = "desecrated", }, - [254] = { + { ["id"] = "desecrated.stat_2768835289", ["text"] = "#% increased Spell Physical Damage", ["type"] = "desecrated", }, - [255] = { - ["id"] = "desecrated.stat_1416406066", + { + ["id"] = "desecrated.stat_3984865854", ["text"] = "#% increased Spirit", ["type"] = "desecrated", }, - [256] = { - ["id"] = "desecrated.stat_3984865854", + { + ["id"] = "desecrated.stat_1416406066", ["text"] = "#% increased Spirit", ["type"] = "desecrated", }, - [257] = { + { ["id"] = "desecrated.stat_53386210", ["text"] = "#% increased Spirit Reservation Efficiency of Skills", ["type"] = "desecrated", }, - [258] = { + { ["id"] = "desecrated.stat_734614379", ["text"] = "#% increased Strength", ["type"] = "desecrated", }, - [259] = { + { ["id"] = "desecrated.stat_239367161", ["text"] = "#% increased Stun Buildup", ["type"] = "desecrated", }, - [260] = { + { ["id"] = "desecrated.stat_872504239", ["text"] = "#% increased Stun Buildup with Maces", ["type"] = "desecrated", }, - [261] = { + { ["id"] = "desecrated.stat_748522257", ["text"] = "#% increased Stun Duration", ["type"] = "desecrated", }, - [262] = { + { ["id"] = "desecrated.stat_680068163", ["text"] = "#% increased Stun Threshold", ["type"] = "desecrated", }, - [263] = { + { ["id"] = "desecrated.stat_1405298142", ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "desecrated", }, - [264] = { + { ["id"] = "desecrated.stat_1911237468", ["text"] = "#% increased Stun Threshold while Parrying", ["type"] = "desecrated", }, - [265] = { + { ["id"] = "desecrated.stat_1315743832", ["text"] = "#% increased Thorns damage", ["type"] = "desecrated", }, - [266] = { + { ["id"] = "desecrated.stat_3851254963", ["text"] = "#% increased Totem Damage", ["type"] = "desecrated", }, - [267] = { + { ["id"] = "desecrated.stat_686254215", ["text"] = "#% increased Totem Life", ["type"] = "desecrated", }, - [268] = { + { ["id"] = "desecrated.stat_3374165039", ["text"] = "#% increased Totem Placement speed", ["type"] = "desecrated", }, - [269] = { + { ["id"] = "desecrated.stat_3037553757", ["text"] = "#% increased Warcry Buff Effect", ["type"] = "desecrated", }, - [270] = { + { ["id"] = "desecrated.stat_4159248054", ["text"] = "#% increased Warcry Cooldown Recovery Rate", ["type"] = "desecrated", }, - [271] = { + { ["id"] = "desecrated.stat_1316278494", ["text"] = "#% increased Warcry Speed", ["type"] = "desecrated", }, - [272] = { + { ["id"] = "desecrated.stat_3973629633", ["text"] = "#% increased Withered Magnitude", ["type"] = "desecrated", }, - [273] = { + { ["id"] = "desecrated.stat_2112395885", ["text"] = "#% increased amount of Life Leeched", ["type"] = "desecrated", }, - [274] = { + { ["id"] = "desecrated.stat_2839066308", ["text"] = "#% increased amount of Mana Leeched", ["type"] = "desecrated", }, - [275] = { + { ["id"] = "desecrated.stat_1200678966", ["text"] = "#% increased bonuses gained from Equipped Quiver", ["type"] = "desecrated", }, - [276] = { + { ["id"] = "desecrated.stat_3481083201", ["text"] = "#% increased chance to Poison", ["type"] = "desecrated", }, - [277] = { + { ["id"] = "desecrated.stat_293638271", ["text"] = "#% increased chance to Shock", ["type"] = "desecrated", }, - [278] = { + { ["id"] = "desecrated.stat_1772247089", ["text"] = "#% increased chance to inflict Ailments", ["type"] = "desecrated", }, - [279] = { + { ["id"] = "desecrated.stat_242637938", ["text"] = "#% increased chance to inflict Bleeding", ["type"] = "desecrated", }, - [280] = { + { ["id"] = "desecrated.stat_2103650854", ["text"] = "#% increased effect of Arcane Surge on you", ["type"] = "desecrated", }, - [281] = { + { ["id"] = "desecrated.stat_1180552088", ["text"] = "#% increased effect of Archon Buffs on you", ["type"] = "desecrated", }, - [282] = { + { ["id"] = "desecrated.stat_1879206848", ["text"] = "#% increased effect of Fully Broken Armour", ["type"] = "desecrated", }, - [283] = { + { ["id"] = "desecrated.stat_2482852589", ["text"] = "#% increased maximum Energy Shield", ["type"] = "desecrated", }, - [284] = { + { ["id"] = "desecrated.stat_983749596", ["text"] = "#% increased maximum Life", ["type"] = "desecrated", }, - [285] = { + { ["id"] = "desecrated.stat_2748665614", ["text"] = "#% increased maximum Mana", ["type"] = "desecrated", }, - [286] = { + { ["id"] = "desecrated.stat_2363593824", ["text"] = "#% increased speed of Recoup Effects", ["type"] = "desecrated", }, - [287] = { + { ["id"] = "desecrated.stat_2663359259", ["text"] = "#% increased total Power counted by Warcries", ["type"] = "desecrated", }, - [288] = { + { ["id"] = "desecrated.stat_3796523155", ["text"] = "#% less effect of Curses on Monsters", ["type"] = "desecrated", }, - [289] = { + { ["id"] = "desecrated.stat_3376488707", ["text"] = "#% maximum Player Resistances", ["type"] = "desecrated", }, - [290] = { + { ["id"] = "desecrated.stat_95249895", ["text"] = "#% more Monster Life", ["type"] = "desecrated", }, - [291] = { + { ["id"] = "desecrated.stat_3972229254", ["text"] = "#% of Armour also applies to Chaos Damage", ["type"] = "desecrated", }, - [292] = { + { ["id"] = "desecrated.stat_3362812763", ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "desecrated", }, - [293] = { + { ["id"] = "desecrated.stat_54812069", ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", ["type"] = "desecrated", }, - [294] = { + { ["id"] = "desecrated.stat_458438597", ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "desecrated", }, - [295] = { + { ["id"] = "desecrated.stat_1444556985", ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "desecrated", }, - [296] = { + { ["id"] = "desecrated.stat_472520716", ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "desecrated", }, - [297] = { + { ["id"] = "desecrated.stat_2896115339", ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", ["type"] = "desecrated", }, - [298] = { + { ["id"] = "desecrated.stat_3561837752", ["text"] = "#% of Leech is Instant", ["type"] = "desecrated", }, - [299] = { + { ["id"] = "desecrated.stat_1374654984", ["text"] = "#% of Physical Damage prevented Recouped as Life", ["type"] = "desecrated", }, - [300] = { + { ["id"] = "desecrated.stat_321970274", ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", ["type"] = "desecrated", }, - [301] = { + { ["id"] = "desecrated.stat_2480498143", ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "desecrated", }, - [302] = { + { ["id"] = "desecrated.stat_3544050945", ["text"] = "#% of Spell Mana Cost Converted to Life Cost", ["type"] = "desecrated", }, - [303] = { + { ["id"] = "desecrated.stat_1570770415", ["text"] = "#% reduced Charm Charges used", ["type"] = "desecrated", }, - [304] = { + { ["id"] = "desecrated.stat_1874553720", ["text"] = "#% reduced Chill Duration on you", ["type"] = "desecrated", }, - [305] = { + { ["id"] = "desecrated.stat_644456512", ["text"] = "#% reduced Flask Charges used", ["type"] = "desecrated", }, - [306] = { + { ["id"] = "desecrated.stat_2160282525", ["text"] = "#% reduced Freeze Duration on you", ["type"] = "desecrated", }, - [307] = { + { ["id"] = "desecrated.stat_986397080", ["text"] = "#% reduced Ignite Duration on you", ["type"] = "desecrated", }, - [308] = { + { ["id"] = "desecrated.stat_99927264", ["text"] = "#% reduced Shock duration on you", ["type"] = "desecrated", }, - [309] = { + { ["id"] = "desecrated.stat_3839676903", ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", ["type"] = "desecrated", }, - [310] = { + { ["id"] = "desecrated.stat_3407849389", ["text"] = "#% reduced effect of Curses on you", ["type"] = "desecrated", }, - [311] = { + { ["id"] = "desecrated.stat_1702195217", ["text"] = "#% to Block chance", ["type"] = "desecrated", }, - [312] = { + { ["id"] = "desecrated.stat_2923486259", ["text"] = "#% to Chaos Resistance", ["type"] = "desecrated", }, - [313] = { + { ["id"] = "desecrated.stat_4220027924", ["text"] = "#% to Cold Resistance", ["type"] = "desecrated", }, - [314] = { + { ["id"] = "desecrated.stat_3393628375", ["text"] = "#% to Cold and Chaos Resistances", ["type"] = "desecrated", }, - [315] = { + { ["id"] = "desecrated.stat_2694482655", ["text"] = "#% to Critical Damage Bonus", ["type"] = "desecrated", }, - [316] = { + { ["id"] = "desecrated.stat_518292764", ["text"] = "#% to Critical Hit Chance", ["type"] = "desecrated", }, - [317] = { + { ["id"] = "desecrated.stat_3372524247", ["text"] = "#% to Fire Resistance", ["type"] = "desecrated", }, - [318] = { + { ["id"] = "desecrated.stat_3399401168", ["text"] = "#% to Fire Spell Critical Hit Chance", ["type"] = "desecrated", }, - [319] = { + { ["id"] = "desecrated.stat_378817135", ["text"] = "#% to Fire and Chaos Resistances", ["type"] = "desecrated", }, - [320] = { + { ["id"] = "desecrated.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "desecrated", }, - [321] = { + { ["id"] = "desecrated.stat_3465022881", ["text"] = "#% to Lightning and Chaos Resistances", ["type"] = "desecrated", }, - [322] = { + { ["id"] = "desecrated.stat_1301765461", ["text"] = "#% to Maximum Chaos Resistance", ["type"] = "desecrated", }, - [323] = { + { ["id"] = "desecrated.stat_3676141501", ["text"] = "#% to Maximum Cold Resistance", ["type"] = "desecrated", }, - [324] = { + { ["id"] = "desecrated.stat_4095671657", ["text"] = "#% to Maximum Fire Resistance", ["type"] = "desecrated", }, - [325] = { + { ["id"] = "desecrated.stat_1011760251", ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "desecrated", }, - [326] = { + { ["id"] = "desecrated.stat_3655769732", ["text"] = "#% to Quality of all Skills", ["type"] = "desecrated", }, - [327] = { + { ["id"] = "desecrated.stat_2715190555", ["text"] = "#% to Thorns Critical Hit Chance", ["type"] = "desecrated", }, - [328] = { + { ["id"] = "desecrated.stat_2901986750", ["text"] = "#% to all Elemental Resistances", ["type"] = "desecrated", }, - [329] = { + { ["id"] = "desecrated.stat_1978899297", ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "desecrated", }, - [330] = { + { ["id"] = "desecrated.stat_569299859", ["text"] = "#% to all maximum Resistances", ["type"] = "desecrated", }, - [331] = { + { ["id"] = "desecrated.stat_933355817", ["text"] = "#% to gain Archon of Undeath when you create an Offering", ["type"] = "desecrated", }, - [332] = { + { ["id"] = "desecrated.stat_480796730", ["text"] = "#% to maximum Block chance", ["type"] = "desecrated", }, - [333] = { + { ["id"] = "desecrated.stat_1054098949", ["text"] = "+#% Monster Elemental Resistances", ["type"] = "desecrated", }, - [334] = { + { ["id"] = "desecrated.stat_1388221282", ["text"] = "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", ["type"] = "desecrated", }, - [335] = { + { ["id"] = "desecrated.stat_4157613372", ["text"] = "Abyss Pits have #% chance to spawn all Monsters as at least Magic", ["type"] = "desecrated", }, - [336] = { + { ["id"] = "desecrated.stat_4256531808", ["text"] = "Abyss Pits in Area are twice as likely to have Rewards", ["type"] = "desecrated", }, - [337] = { + { ["id"] = "desecrated.stat_4256531808", ["text"] = "Abyss Pits in Map are twice as likely to have Rewards", ["type"] = "desecrated", }, - [338] = { + { ["id"] = "desecrated.stat_2975078312", ["text"] = "Abyssal Monsters grant #% increased Experience", ["type"] = "desecrated", }, - [339] = { + { ["id"] = "desecrated.stat_360553763", ["text"] = "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", ["type"] = "desecrated", }, - [340] = { + { ["id"] = "desecrated.stat_360553763", ["text"] = "Abyssal Monsters in Map have increased Difficulty and Reward for each closed Pit", ["type"] = "desecrated", }, - [341] = { + { ["id"] = "desecrated.stat_944630113", ["text"] = "Abysses in Map spawn #% increased Monsters", ["type"] = "desecrated", }, - [342] = { + { ["id"] = "desecrated.stat_2399592398", ["text"] = "Abysses lead to an Abyssal Boss", ["type"] = "desecrated", }, - [343] = { + { ["id"] = "desecrated.stat_2278777540", ["text"] = "Abysses lead to an Abyssal Depths", ["type"] = "desecrated", }, - [344] = { + { ["id"] = "desecrated.stat_944630113", ["text"] = "Abysses spawn #% increased Monsters", ["type"] = "desecrated", }, - [345] = { + { ["id"] = "desecrated.stat_2223678961", ["text"] = "Adds # to # Chaos damage", ["type"] = "desecrated", }, - [346] = { + { ["id"] = "desecrated.stat_1037193709", ["text"] = "Adds # to # Cold Damage", ["type"] = "desecrated", }, - [347] = { + { ["id"] = "desecrated.stat_4067062424", ["text"] = "Adds # to # Cold damage to Attacks", ["type"] = "desecrated", }, - [348] = { + { ["id"] = "desecrated.stat_709508406", ["text"] = "Adds # to # Fire Damage", ["type"] = "desecrated", }, - [349] = { + { ["id"] = "desecrated.stat_1573130764", ["text"] = "Adds # to # Fire damage to Attacks", ["type"] = "desecrated", }, - [350] = { + { ["id"] = "desecrated.stat_3336890334", ["text"] = "Adds # to # Lightning Damage", ["type"] = "desecrated", }, - [351] = { + { ["id"] = "desecrated.stat_1754445556", ["text"] = "Adds # to # Lightning damage to Attacks", ["type"] = "desecrated", }, - [352] = { + { ["id"] = "desecrated.stat_1940865751", ["text"] = "Adds # to # Physical Damage", ["type"] = "desecrated", }, - [353] = { + { ["id"] = "desecrated.stat_3032590688", ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "desecrated", }, - [354] = { + { ["id"] = "desecrated.stat_4010677958", ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "desecrated", }, - [355] = { + { ["id"] = "desecrated.stat_262946222", ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", ["type"] = "desecrated", }, - [356] = { + { ["id"] = "desecrated.stat_2347036682", ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", ["type"] = "desecrated", }, - [357] = { + { ["id"] = "desecrated.stat_849987426", ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", ["type"] = "desecrated", }, - [358] = { + { ["id"] = "desecrated.stat_2854751904", ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", ["type"] = "desecrated", }, - [359] = { + { ["id"] = "desecrated.stat_1574590649", ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "desecrated", }, - [360] = { + { ["id"] = "desecrated.stat_1798257884", ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "desecrated", }, - [361] = { + { ["id"] = "desecrated.stat_1998951374", ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "desecrated", }, - [362] = { + { ["id"] = "desecrated.stat_289128254", ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "desecrated", }, - [363] = { + { ["id"] = "desecrated.stat_3057012405", ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "desecrated", }, - [364] = { + { ["id"] = "desecrated.stat_1250712710", ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "desecrated", }, - [365] = { + { ["id"] = "desecrated.stat_3850614073", ["text"] = "Allies in your Presence have #% to all Elemental Resistances", ["type"] = "desecrated", }, - [366] = { + { ["id"] = "desecrated.stat_2586152168", ["text"] = "Archon recovery period expires #% faster", ["type"] = "desecrated", }, - [367] = { + { ["id"] = "desecrated.stat_3490187949", ["text"] = "Area contains # additional Abysses", ["type"] = "desecrated", }, - [368] = { + { ["id"] = "desecrated.stat_3757259819", ["text"] = "Area contains # additional packs of Beasts", ["type"] = "desecrated", }, - [369] = { + { ["id"] = "desecrated.stat_3309089125", ["text"] = "Area contains # additional packs of Bramble Monsters", ["type"] = "desecrated", }, - [370] = { + { ["id"] = "desecrated.stat_1436812886", ["text"] = "Area contains # additional packs of Ezomyte Monsters", ["type"] = "desecrated", }, - [371] = { + { ["id"] = "desecrated.stat_4130878258", ["text"] = "Area contains # additional packs of Faridun Monsters", ["type"] = "desecrated", }, - [372] = { + { ["id"] = "desecrated.stat_2949706590", ["text"] = "Area contains # additional packs of Iron Guards", ["type"] = "desecrated", }, - [373] = { + { ["id"] = "desecrated.stat_3592067990", ["text"] = "Area contains # additional packs of Plagued Monsters", ["type"] = "desecrated", }, - [374] = { + { ["id"] = "desecrated.stat_1689473577", ["text"] = "Area contains # additional packs of Transcended Monsters", ["type"] = "desecrated", }, - [375] = { + { ["id"] = "desecrated.stat_240445958", ["text"] = "Area contains # additional packs of Undead", ["type"] = "desecrated", }, - [376] = { + { ["id"] = "desecrated.stat_4181857719", ["text"] = "Area contains # additional packs of Vaal Monsters", ["type"] = "desecrated", }, - [377] = { + { ["id"] = "desecrated.stat_1827854662", ["text"] = "Area contains an additional Incubator Queen", ["type"] = "desecrated", }, - [378] = { + { ["id"] = "desecrated.stat_349586058", ["text"] = "Area has patches of Chilled Ground", ["type"] = "desecrated", }, - [379] = { + { ["id"] = "desecrated.stat_133340941", ["text"] = "Area has patches of Ignited Ground", ["type"] = "desecrated", }, - [380] = { + { ["id"] = "desecrated.stat_3190283174", ["text"] = "Area has patches of Mana Siphoning Ground", ["type"] = "desecrated", }, - [381] = { + { ["id"] = "desecrated.stat_3477720557", ["text"] = "Area has patches of Shocked Ground", ["type"] = "desecrated", }, - [382] = { + { ["id"] = "desecrated.stat_2741291867", ["text"] = "Area is overrun by the Abyssal", ["type"] = "desecrated", }, - [383] = { + { ["id"] = "desecrated.stat_300723956", ["text"] = "Attack Hits apply Incision", ["type"] = "desecrated", }, - [384] = { + { ["id"] = "desecrated.stat_3868118796", ["text"] = "Attacks Chain an additional time", ["type"] = "desecrated", }, - [385] = { + { ["id"] = "desecrated.stat_3762412853", ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", ["type"] = "desecrated", }, - [386] = { + { ["id"] = "desecrated.stat_1740229525", ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", ["type"] = "desecrated", }, - [387] = { + { ["id"] = "desecrated.stat_3398283493", ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", ["type"] = "desecrated", }, - [388] = { + { ["id"] = "desecrated.stat_2387539034", ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", ["type"] = "desecrated", }, - [389] = { + { ["id"] = "desecrated.stat_315791320", ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "desecrated", }, - [390] = { + { ["id"] = "desecrated.stat_429143663", ["text"] = "Banner Skills have #% increased Area of Effect", ["type"] = "desecrated", }, - [391] = { + { ["id"] = "desecrated.stat_2720982137", ["text"] = "Banner Skills have #% increased Duration", ["type"] = "desecrated", }, - [392] = { + { ["id"] = "desecrated.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "desecrated", }, - [393] = { + { ["id"] = "desecrated.stat_1776411443", ["text"] = "Break #% increased Armour", ["type"] = "desecrated", }, - [394] = { + { ["id"] = "desecrated.stat_1103616075", ["text"] = "Break Armour equal to #% of Physical Damage dealt", ["type"] = "desecrated", }, - [395] = { + { ["id"] = "desecrated.stat_1286199571", ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", ["type"] = "desecrated", }, - [396] = { + { ["id"] = "desecrated.stat_791928121", ["text"] = "Causes #% increased Stun Buildup", ["type"] = "desecrated", }, - [397] = { + { ["id"] = "desecrated.stat_3480095574", ["text"] = "Charms applied to you have #% increased Effect", ["type"] = "desecrated", }, - [398] = { + { ["id"] = "desecrated.stat_185580205", ["text"] = "Charms gain # charge per Second", ["type"] = "desecrated", }, - [399] = { + { ["id"] = "desecrated.stat_234296660", ["text"] = "Companions deal #% increased Damage", ["type"] = "desecrated", }, - [400] = { + { ["id"] = "desecrated.stat_666077204", ["text"] = "Companions have #% increased Attack Speed", ["type"] = "desecrated", }, - [401] = { + { ["id"] = "desecrated.stat_1805182458", ["text"] = "Companions have #% increased maximum Life", ["type"] = "desecrated", }, - [402] = { + { ["id"] = "desecrated.stat_1938221597", ["text"] = "Conquered Attribute Passive Skills also grant # to Dexterity", ["type"] = "desecrated", }, - [403] = { + { ["id"] = "desecrated.stat_3116427713", ["text"] = "Conquered Attribute Passive Skills also grant # to Intelligence", ["type"] = "desecrated", }, - [404] = { + { ["id"] = "desecrated.stat_3871530702", ["text"] = "Conquered Attribute Passive Skills also grant # to Strength", ["type"] = "desecrated", }, - [405] = { + { ["id"] = "desecrated.stat_1119086588", ["text"] = "Conquered Attribute Passive Skills also grant # to Tribute", ["type"] = "desecrated", }, - [406] = { + { ["id"] = "desecrated.stat_2552484522", ["text"] = "Conquered Attribute Passive Skills also grant # to all Attributes", ["type"] = "desecrated", }, - [407] = { + { ["id"] = "desecrated.stat_970480050", ["text"] = "Conquered Small Passive Skills also grant #% increased Armour", ["type"] = "desecrated", }, - [408] = { + { ["id"] = "desecrated.stat_8816597", ["text"] = "Conquered Small Passive Skills also grant #% increased Attack damage", ["type"] = "desecrated", }, - [409] = { + { ["id"] = "desecrated.stat_2601021356", ["text"] = "Conquered Small Passive Skills also grant #% increased Chaos damage", ["type"] = "desecrated", }, - [410] = { + { ["id"] = "desecrated.stat_1283490138", ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", ["type"] = "desecrated", }, - [411] = { + { ["id"] = "desecrated.stat_4240116297", ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Damage", ["type"] = "desecrated", }, - [412] = { + { ["id"] = "desecrated.stat_2780670304", ["text"] = "Conquered Small Passive Skills also grant #% increased Energy Shield", ["type"] = "desecrated", }, - [413] = { + { ["id"] = "desecrated.stat_468694293", ["text"] = "Conquered Small Passive Skills also grant #% increased Evasion Rating", ["type"] = "desecrated", }, - [414] = { + { ["id"] = "desecrated.stat_4264952559", ["text"] = "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", ["type"] = "desecrated", }, - [415] = { + { ["id"] = "desecrated.stat_1818915622", ["text"] = "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", ["type"] = "desecrated", }, - [416] = { + { ["id"] = "desecrated.stat_1829333149", ["text"] = "Conquered Small Passive Skills also grant #% increased Physical damage", ["type"] = "desecrated", }, - [417] = { + { ["id"] = "desecrated.stat_3038857426", ["text"] = "Conquered Small Passive Skills also grant #% increased Spell damage", ["type"] = "desecrated", }, - [418] = { + { ["id"] = "desecrated.stat_2475870935", ["text"] = "Conquered Small Passive Skills also grant #% increased Stun Threshold", ["type"] = "desecrated", }, - [419] = { + { ["id"] = "desecrated.stat_3343033032", ["text"] = "Conquered Small Passive Skills also grant Minions deal #% increased damage", ["type"] = "desecrated", }, - [420] = { + { ["id"] = "desecrated.stat_1658498488", ["text"] = "Corrupted Blood cannot be inflicted on you", ["type"] = "desecrated", }, - [421] = { + { ["id"] = "desecrated.stat_3417711605", ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "desecrated", }, - [422] = { + { ["id"] = "desecrated.stat_2653955271", ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "desecrated", }, - [423] = { + { ["id"] = "desecrated.stat_818778753", ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "desecrated", }, - [424] = { + { ["id"] = "desecrated.stat_538241406", ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "desecrated", }, - [425] = { + { ["id"] = "desecrated.stat_3146310524", ["text"] = "Dazes on Hit", ["type"] = "desecrated", }, - [426] = { + { ["id"] = "desecrated.stat_1238227257", ["text"] = "Debuffs on you expire #% faster", ["type"] = "desecrated", }, - [427] = { + { ["id"] = "desecrated.stat_1569101201", ["text"] = "Empowered Attacks deal #% increased Damage", ["type"] = "desecrated", }, - [428] = { + { ["id"] = "desecrated.stat_1746561819", ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", ["type"] = "desecrated", }, - [429] = { + { ["id"] = "desecrated.stat_212649958", ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", ["type"] = "desecrated", }, - [430] = { + { ["id"] = "desecrated.stat_359357545", ["text"] = "Enemies Hindered by you take #% increased Physical Damage", ["type"] = "desecrated", }, - [431] = { + { ["id"] = "desecrated.stat_1772929282", ["text"] = "Enemies you Curse have #% to Chaos Resistance", ["type"] = "desecrated", }, - [432] = { + { ["id"] = "desecrated.stat_2083058281", ["text"] = "Enemies you Mark take #% increased Damage", ["type"] = "desecrated", }, - [433] = { + { ["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", }, - [434] = { + { ["id"] = "desecrated.stat_752930724", ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", ["type"] = "desecrated", }, - [435] = { + { ["id"] = "desecrated.stat_2797971005", ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "desecrated", }, - [436] = { + { ["id"] = "desecrated.stat_3695891184", ["text"] = "Gain # Life per enemy killed", ["type"] = "desecrated", }, - [437] = { + { ["id"] = "desecrated.stat_1368271171", ["text"] = "Gain # Mana per enemy killed", ["type"] = "desecrated", }, - [438] = { + { ["id"] = "desecrated.stat_2709367754", ["text"] = "Gain # Rage on Melee Hit", ["type"] = "desecrated", }, - [439] = { + { ["id"] = "desecrated.stat_3292710273", ["text"] = "Gain # Rage when Hit by an Enemy", ["type"] = "desecrated", }, - [440] = { + { ["id"] = "desecrated.stat_3398787959", ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "desecrated", }, - [441] = { + { ["id"] = "desecrated.stat_2505884597", ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "desecrated", }, - [442] = { + { ["id"] = "desecrated.stat_825116955", ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", ["type"] = "desecrated", }, - [443] = { + { ["id"] = "desecrated.stat_3015669065", ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "desecrated", }, - [444] = { + { ["id"] = "desecrated.stat_1321054058", ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", ["type"] = "desecrated", }, - [445] = { + { ["id"] = "desecrated.stat_3278136794", ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "desecrated", }, - [446] = { + { ["id"] = "desecrated.stat_323800555", ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", ["type"] = "desecrated", }, - [447] = { + { ["id"] = "desecrated.stat_4019237939", ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "desecrated", }, - [448] = { + { ["id"] = "desecrated.stat_514290151", ["text"] = "Gain #% of Maximum Mana as Armour", ["type"] = "desecrated", }, - [449] = { + { ["id"] = "desecrated.stat_758893621", ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "desecrated", }, - [450] = { + { ["id"] = "desecrated.stat_3033371881", ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "desecrated", }, - [451] = { + { ["id"] = "desecrated.stat_1793740180", ["text"] = "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", ["type"] = "desecrated", }, - [452] = { + { ["id"] = "desecrated.stat_3398301358", ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "desecrated", }, - [453] = { + { ["id"] = "desecrated.stat_416040624", ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "desecrated", }, - [454] = { + { ["id"] = "desecrated.stat_821021828", ["text"] = "Grants # Life per Enemy Hit", ["type"] = "desecrated", }, - [455] = { + { ["id"] = "desecrated.stat_1980802737", ["text"] = "Grenade Skills Fire an additional Projectile", ["type"] = "desecrated", }, - [456] = { + { ["id"] = "desecrated.stat_2250681686", ["text"] = "Grenade Skills have +# Cooldown Use", ["type"] = "desecrated", }, - [457] = { + { ["id"] = "desecrated.stat_538981065", ["text"] = "Grenades have #% chance to activate a second time", ["type"] = "desecrated", }, - [458] = { + { ["id"] = "desecrated.stat_21071013", ["text"] = "Herald Skills deal #% increased Damage", ["type"] = "desecrated", }, - [459] = { + { ["id"] = "desecrated.stat_3855016469", ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "desecrated", }, - [460] = { + { ["id"] = "desecrated.stat_4270096386", ["text"] = "Hits have #% increased Critical Hit Chance against you", ["type"] = "desecrated", }, - [461] = { + { ["id"] = "desecrated.stat_1689748350", ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", ["type"] = "desecrated", }, - [462] = { + { ["id"] = "desecrated.stat_414821772", ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", ["type"] = "desecrated", }, - [463] = { + { ["id"] = "desecrated.stat_971590056", ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", ["type"] = "desecrated", }, - [464] = { + { ["id"] = "desecrated.stat_3987691524", ["text"] = "Inherent Rage loss starts 1 second later", ["type"] = "desecrated", }, - [465] = { + { ["id"] = "desecrated.stat_1078309513", ["text"] = "Invocated Spells deal #% increased Damage", ["type"] = "desecrated", }, - [466] = { + { ["id"] = "desecrated.stat_3711973554", ["text"] = "Invocated Spells have #% chance to consume half as much Energy", ["type"] = "desecrated", }, - [467] = { + { ["id"] = "desecrated.stat_1615901249", ["text"] = "Invocated skills have #% increased Maximum Energy", ["type"] = "desecrated", }, - [468] = { + { ["id"] = "desecrated.stat_2557965901", ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "desecrated", }, - [469] = { + { ["id"] = "desecrated.stat_707457662", ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "desecrated", }, - [470] = { + { ["id"] = "desecrated.stat_1570501432", ["text"] = "Leech Life #% faster", ["type"] = "desecrated", }, - [471] = { + { ["id"] = "desecrated.stat_55876295", ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "desecrated", }, - [472] = { + { ["id"] = "desecrated.stat_669069897", ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "desecrated", }, - [473] = { + { ["id"] = "desecrated.stat_1102738251", ["text"] = "Life Flasks gain # charges per Second", ["type"] = "desecrated", }, - [474] = { + { ["id"] = "desecrated.stat_1967051901", ["text"] = "Loads an additional bolt", ["type"] = "desecrated", }, - [475] = { + { ["id"] = "desecrated.stat_2200293569", ["text"] = "Mana Flasks gain # charges per Second", ["type"] = "desecrated", }, - [476] = { + { ["id"] = "desecrated.stat_3490187949", ["text"] = "Map contains # additional Abysses", ["type"] = "desecrated", }, - [477] = { + { ["id"] = "desecrated.stat_3873704640", ["text"] = "Map has #% increased Magic Monsters", ["type"] = "desecrated", }, - [478] = { + { ["id"] = "desecrated.stat_3793155082", ["text"] = "Map has #% increased number of Rare Monsters", ["type"] = "desecrated", }, - [479] = { + { ["id"] = "desecrated.stat_2741291867", ["text"] = "Map is overrun by the Abyssal", ["type"] = "desecrated", }, - [480] = { + { ["id"] = "desecrated.stat_2594634307", ["text"] = "Mark Skills have #% increased Skill Effect Duration", ["type"] = "desecrated", }, - [481] = { + { ["id"] = "desecrated.stat_1714971114", ["text"] = "Mark Skills have #% increased Use Speed", ["type"] = "desecrated", }, - [482] = { + { ["id"] = "desecrated.stat_2013356568", ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", ["type"] = "desecrated", }, - [483] = { + { ["id"] = "desecrated.stat_4236566306", ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "desecrated", }, - [484] = { + { ["id"] = "desecrated.stat_195270549", ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", ["type"] = "desecrated", }, - [485] = { + { ["id"] = "desecrated.stat_2479683456", ["text"] = "Minions Regenerate #% of maximum Life per second", ["type"] = "desecrated", }, - [486] = { + { ["id"] = "desecrated.stat_2639966148", ["text"] = "Minions Revive #% faster", ["type"] = "desecrated", }, - [487] = { + { ["id"] = "desecrated.stat_1589917703", ["text"] = "Minions deal #% increased Damage", ["type"] = "desecrated", }, - [488] = { + { ["id"] = "desecrated.stat_2337295272", ["text"] = "Minions deal #% increased Damage if you've Hit Recently", ["type"] = "desecrated", }, - [489] = { + { ["id"] = "desecrated.stat_943702197", ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", ["type"] = "desecrated", }, - [490] = { + { ["id"] = "desecrated.stat_1797815732", ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", ["type"] = "desecrated", }, - [491] = { + { ["id"] = "desecrated.stat_3119612865", ["text"] = "Minions have #% additional Physical Damage Reduction", ["type"] = "desecrated", }, - [492] = { + { ["id"] = "desecrated.stat_3811191316", ["text"] = "Minions have #% increased Area of Effect", ["type"] = "desecrated", }, - [493] = { + { ["id"] = "desecrated.stat_3091578504", ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "desecrated", }, - [494] = { + { ["id"] = "desecrated.stat_1691403182", ["text"] = "Minions have #% increased Cooldown Recovery Rate", ["type"] = "desecrated", }, - [495] = { + { ["id"] = "desecrated.stat_1854213750", ["text"] = "Minions have #% increased Critical Damage Bonus", ["type"] = "desecrated", }, - [496] = { + { ["id"] = "desecrated.stat_491450213", ["text"] = "Minions have #% increased Critical Hit Chance", ["type"] = "desecrated", }, - [497] = { + { ["id"] = "desecrated.stat_953593695", ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", ["type"] = "desecrated", }, - [498] = { + { ["id"] = "desecrated.stat_73032170", ["text"] = "Minions have #% increased Skill Speed with Command Skills", ["type"] = "desecrated", }, - [499] = { + { ["id"] = "desecrated.stat_770672621", ["text"] = "Minions have #% increased maximum Life", ["type"] = "desecrated", }, - [500] = { + { ["id"] = "desecrated.stat_3837707023", ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "desecrated", }, - [501] = { + { ["id"] = "desecrated.stat_1423639565", ["text"] = "Minions have #% to all Elemental Resistances", ["type"] = "desecrated", }, - [502] = { + { ["id"] = "desecrated.stat_3249412463", ["text"] = "Minions' Strikes have Melee Splash", ["type"] = "desecrated", }, - [503] = { + { ["id"] = "desecrated.stat_1898978455", ["text"] = "Monster Damage Penetrates #% Elemental Resistances", ["type"] = "desecrated", }, - [504] = { + { ["id"] = "desecrated.stat_3877264671", ["text"] = "Monster have #% increased Elemental Ailment Application", ["type"] = "desecrated", }, - [505] = { + { ["id"] = "desecrated.stat_1879340377", ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", ["type"] = "desecrated", }, - [506] = { + { ["id"] = "desecrated.stat_2539290279", ["text"] = "Monsters are Armoured", ["type"] = "desecrated", }, - [507] = { + { ["id"] = "desecrated.stat_2570249991", ["text"] = "Monsters are Evasive", ["type"] = "desecrated", }, - [508] = { + { ["id"] = "desecrated.stat_2200661314", ["text"] = "Monsters deal #% of Damage as Extra Chaos", ["type"] = "desecrated", }, - [509] = { + { ["id"] = "desecrated.stat_211727", ["text"] = "Monsters deal #% of Damage as Extra Cold", ["type"] = "desecrated", }, - [510] = { + { ["id"] = "desecrated.stat_92381065", ["text"] = "Monsters deal #% of Damage as Extra Fire", ["type"] = "desecrated", }, - [511] = { + { ["id"] = "desecrated.stat_512071314", ["text"] = "Monsters deal #% of Damage as Extra Lightning", ["type"] = "desecrated", }, - [512] = { + { ["id"] = "desecrated.stat_1309819744", ["text"] = "Monsters fire # additional Projectiles", ["type"] = "desecrated", }, - [513] = { + { ["id"] = "desecrated.stat_2887760183", ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", ["type"] = "desecrated", }, - [514] = { + { ["id"] = "desecrated.stat_57326096", ["text"] = "Monsters have #% Critical Damage Bonus", ["type"] = "desecrated", }, - [515] = { + { ["id"] = "desecrated.stat_95221307", ["text"] = "Monsters have #% chance to Poison on Hit", ["type"] = "desecrated", }, - [516] = { + { ["id"] = "desecrated.stat_2506820610", ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", ["type"] = "desecrated", }, - [517] = { + { ["id"] = "desecrated.stat_3222482040", ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", ["type"] = "desecrated", }, - [518] = { + { ["id"] = "desecrated.stat_1588049749", ["text"] = "Monsters have #% increased Accuracy Rating", ["type"] = "desecrated", }, - [519] = { + { ["id"] = "desecrated.stat_1994551050", ["text"] = "Monsters have #% increased Ailment Threshold", ["type"] = "desecrated", }, - [520] = { + { ["id"] = "desecrated.stat_3909654181", ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", ["type"] = "desecrated", }, - [521] = { + { ["id"] = "desecrated.stat_2753083623", ["text"] = "Monsters have #% increased Critical Hit Chance", ["type"] = "desecrated", }, - [522] = { + { ["id"] = "desecrated.stat_3998863698", ["text"] = "Monsters have #% increased Freeze Buildup", ["type"] = "desecrated", }, - [523] = { + { ["id"] = "desecrated.stat_1984618452", ["text"] = "Monsters have #% increased Shock Chance", ["type"] = "desecrated", }, - [524] = { + { ["id"] = "desecrated.stat_115425161", ["text"] = "Monsters have #% increased Stun Buildup", ["type"] = "desecrated", }, - [525] = { + { ["id"] = "desecrated.stat_4101943684", ["text"] = "Monsters have #% increased Stun Threshold", ["type"] = "desecrated", }, - [526] = { + { ["id"] = "desecrated.stat_1751584857", ["text"] = "Monsters inflict # Grasping Vine on Hit", ["type"] = "desecrated", }, - [527] = { + { ["id"] = "desecrated.stat_2508044078", ["text"] = "Monsters inflict #% increased Flammability Magnitude", ["type"] = "desecrated", }, - [528] = { + { ["id"] = "desecrated.stat_337935900", ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", ["type"] = "desecrated", }, - [529] = { + { ["id"] = "desecrated.stat_1266185101", ["text"] = "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", ["type"] = "desecrated", }, - [530] = { + { ["id"] = "desecrated.stat_1168851547", ["text"] = "Natural Rare Monsters in Area have # extra Abyssal Modifier", ["type"] = "desecrated", }, - [531] = { + { ["id"] = "desecrated.stat_1846980580", ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "desecrated", }, - [532] = { + { ["id"] = "desecrated.stat_1800303440", ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", ["type"] = "desecrated", }, - [533] = { + { ["id"] = "desecrated.stat_3394832998", ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", ["type"] = "desecrated", }, - [534] = { + { ["id"] = "desecrated.stat_3391917254", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "desecrated", }, - [535] = { + { ["id"] = "desecrated.stat_3859848445", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", ["type"] = "desecrated", }, - [536] = { + { ["id"] = "desecrated.stat_504915064", ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", ["type"] = "desecrated", }, - [537] = { + { ["id"] = "desecrated.stat_3429148113", ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "desecrated", }, - [538] = { + { ["id"] = "desecrated.stat_2822644689", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "desecrated", }, - [539] = { + { ["id"] = "desecrated.stat_3641543553", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", ["type"] = "desecrated", }, - [540] = { + { ["id"] = "desecrated.stat_715957346", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", ["type"] = "desecrated", }, - [541] = { + { ["id"] = "desecrated.stat_111835965", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", ["type"] = "desecrated", }, - [542] = { + { ["id"] = "desecrated.stat_1266413530", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", ["type"] = "desecrated", }, - [543] = { + { ["id"] = "desecrated.stat_1505023559", ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", ["type"] = "desecrated", }, - [544] = { + { ["id"] = "desecrated.stat_2912416697", ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", ["type"] = "desecrated", }, - [545] = { + { ["id"] = "desecrated.stat_3821543413", ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", ["type"] = "desecrated", }, - [546] = { + { ["id"] = "desecrated.stat_1022759479", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "desecrated", }, - [547] = { + { ["id"] = "desecrated.stat_2320654813", ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", ["type"] = "desecrated", }, - [548] = { + { ["id"] = "desecrated.stat_61644361", ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", ["type"] = "desecrated", }, - [549] = { + { ["id"] = "desecrated.stat_2149603090", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "desecrated", }, - [550] = { + { ["id"] = "desecrated.stat_2359002191", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", ["type"] = "desecrated", }, - [551] = { + { ["id"] = "desecrated.stat_1352561456", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "desecrated", }, - [552] = { + { ["id"] = "desecrated.stat_138421180", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", ["type"] = "desecrated", }, - [553] = { + { ["id"] = "desecrated.stat_2077117738", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", ["type"] = "desecrated", }, - [554] = { + { ["id"] = "desecrated.stat_3865605585", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "desecrated", }, - [555] = { + { ["id"] = "desecrated.stat_2704905000", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "desecrated", }, - [556] = { + { ["id"] = "desecrated.stat_2466785537", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "desecrated", }, - [557] = { + { ["id"] = "desecrated.stat_3856744003", ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", ["type"] = "desecrated", }, - [558] = { + { ["id"] = "desecrated.stat_2770044702", ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", ["type"] = "desecrated", }, - [559] = { + { ["id"] = "desecrated.stat_2272980012", ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", ["type"] = "desecrated", }, - [560] = { + { ["id"] = "desecrated.stat_1323216174", ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "desecrated", }, - [561] = { + { ["id"] = "desecrated.stat_179541474", ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", ["type"] = "desecrated", }, - [562] = { + { ["id"] = "desecrated.stat_3419203492", ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", ["type"] = "desecrated", }, - [563] = { + { ["id"] = "desecrated.stat_2066964205", ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", ["type"] = "desecrated", }, - [564] = { + { ["id"] = "desecrated.stat_1087531620", ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", ["type"] = "desecrated", }, - [565] = { + { ["id"] = "desecrated.stat_127081978", ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", ["type"] = "desecrated", }, - [566] = { + { ["id"] = "desecrated.stat_2783157569", ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", ["type"] = "desecrated", }, - [567] = { + { ["id"] = "desecrated.stat_2907381231", ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", ["type"] = "desecrated", }, - [568] = { + { ["id"] = "desecrated.stat_253641217", ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", ["type"] = "desecrated", }, - [569] = { + { ["id"] = "desecrated.stat_2976476845", ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", ["type"] = "desecrated", }, - [570] = { + { ["id"] = "desecrated.stat_942519401", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", ["type"] = "desecrated", }, - [571] = { + { ["id"] = "desecrated.stat_1185341308", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "desecrated", }, - [572] = { + { ["id"] = "desecrated.stat_1321104829", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", ["type"] = "desecrated", }, - [573] = { + { ["id"] = "desecrated.stat_391602279", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", ["type"] = "desecrated", }, - [574] = { + { ["id"] = "desecrated.stat_4092130601", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "desecrated", }, - [575] = { + { ["id"] = "desecrated.stat_462424929", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", ["type"] = "desecrated", }, - [576] = { + { ["id"] = "desecrated.stat_1166140625", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", ["type"] = "desecrated", }, - [577] = { + { ["id"] = "desecrated.stat_4257790560", ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", ["type"] = "desecrated", }, - [578] = { + { ["id"] = "desecrated.stat_3171212276", ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", ["type"] = "desecrated", }, - [579] = { + { ["id"] = "desecrated.stat_844449513", ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "desecrated", }, - [580] = { + { ["id"] = "desecrated.stat_1514844108", ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", ["type"] = "desecrated", }, - [581] = { + { ["id"] = "desecrated.stat_1944020877", ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", ["type"] = "desecrated", }, - [582] = { + { ["id"] = "desecrated.stat_221701169", ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", ["type"] = "desecrated", }, - [583] = { + { ["id"] = "desecrated.stat_4032352472", ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", ["type"] = "desecrated", }, - [584] = { + { ["id"] = "desecrated.stat_1777421941", ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", ["type"] = "desecrated", }, - [585] = { + { ["id"] = "desecrated.stat_3113764475", ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", ["type"] = "desecrated", }, - [586] = { + { ["id"] = "desecrated.stat_3579898587", ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", ["type"] = "desecrated", }, - [587] = { + { ["id"] = "desecrated.stat_2580617872", ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", ["type"] = "desecrated", }, - [588] = { + { ["id"] = "desecrated.stat_4173554949", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", ["type"] = "desecrated", }, - [589] = { + { ["id"] = "desecrated.stat_2392824305", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", ["type"] = "desecrated", }, - [590] = { + { ["id"] = "desecrated.stat_1495814176", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", ["type"] = "desecrated", }, - [591] = { + { ["id"] = "desecrated.stat_2056107438", ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", ["type"] = "desecrated", }, - [592] = { + { ["id"] = "desecrated.stat_3936121440", ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", ["type"] = "desecrated", }, - [593] = { + { ["id"] = "desecrated.stat_4180952808", ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", ["type"] = "desecrated", }, - [594] = { + { ["id"] = "desecrated.stat_412709880", ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", ["type"] = "desecrated", }, - [595] = { + { ["id"] = "desecrated.stat_160888068", ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", ["type"] = "desecrated", }, - [596] = { + { ["id"] = "desecrated.stat_2589572664", ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", ["type"] = "desecrated", }, - [597] = { + { ["id"] = "desecrated.stat_2709646369", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", ["type"] = "desecrated", }, - [598] = { + { ["id"] = "desecrated.stat_3669820740", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", ["type"] = "desecrated", }, - [599] = { + { ["id"] = "desecrated.stat_85367160", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", ["type"] = "desecrated", }, - [600] = { + { ["id"] = "desecrated.stat_3386297724", ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", ["type"] = "desecrated", }, - [601] = { + { ["id"] = "desecrated.stat_1034611536", ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", ["type"] = "desecrated", }, - [602] = { + { ["id"] = "desecrated.stat_3173882956", ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", ["type"] = "desecrated", }, - [603] = { + { ["id"] = "desecrated.stat_2256120736", ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", ["type"] = "desecrated", }, - [604] = { + { ["id"] = "desecrated.stat_2969557004", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "desecrated", }, - [605] = { + { ["id"] = "desecrated.stat_2131720304", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", ["type"] = "desecrated", }, - [606] = { + { ["id"] = "desecrated.stat_2135541924", ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", ["type"] = "desecrated", }, - [607] = { + { ["id"] = "desecrated.stat_1148433552", ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", ["type"] = "desecrated", }, - [608] = { + { ["id"] = "desecrated.stat_3939216292", ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", ["type"] = "desecrated", }, - [609] = { + { ["id"] = "desecrated.stat_2849546516", ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", ["type"] = "desecrated", }, - [610] = { + { ["id"] = "desecrated.stat_2534359663", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", ["type"] = "desecrated", }, - [611] = { + { ["id"] = "desecrated.stat_3106718406", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", ["type"] = "desecrated", }, - [612] = { + { ["id"] = "desecrated.stat_593241812", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", ["type"] = "desecrated", }, - [613] = { + { ["id"] = "desecrated.stat_3628935286", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", ["type"] = "desecrated", }, - [614] = { + { ["id"] = "desecrated.stat_2374711847", ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", ["type"] = "desecrated", }, - [615] = { + { ["id"] = "desecrated.stat_4258720395", ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "desecrated", }, - [616] = { + { ["id"] = "desecrated.stat_2334956771", ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "desecrated", }, - [617] = { + { ["id"] = "desecrated.stat_2726713579", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "desecrated", }, - [618] = { + { ["id"] = "desecrated.stat_525523040", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "desecrated", }, - [619] = { + { ["id"] = "desecrated.stat_3566150527", ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", ["type"] = "desecrated", }, - [620] = { + { ["id"] = "desecrated.stat_3191479793", ["text"] = "Offering Skills have #% increased Buff effect", ["type"] = "desecrated", }, - [621] = { + { ["id"] = "desecrated.stat_2957407601", ["text"] = "Offering Skills have #% increased Duration", ["type"] = "desecrated", }, - [622] = { + { ["id"] = "desecrated.stat_3787460122", ["text"] = "Offerings have #% increased Maximum Life", ["type"] = "desecrated", }, - [623] = { + { ["id"] = "desecrated.stat_2408625104", ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", ["type"] = "desecrated", }, - [624] = { + { ["id"] = "desecrated.stat_436406826", ["text"] = "Players are Marked for Death for # secondsafter killing a Rare or Unique monster", ["type"] = "desecrated", }, - [625] = { + { ["id"] = "desecrated.stat_554690751", ["text"] = "Players are periodically Cursed with Elemental Weakness", ["type"] = "desecrated", }, - [626] = { + { ["id"] = "desecrated.stat_2029171424", ["text"] = "Players are periodically Cursed with Enfeeble", ["type"] = "desecrated", }, - [627] = { + { ["id"] = "desecrated.stat_1629357380", ["text"] = "Players are periodically Cursed with Temporal Chains", ["type"] = "desecrated", }, - [628] = { + { ["id"] = "desecrated.stat_2549889921", ["text"] = "Players gain #% reduced Flask Charges", ["type"] = "desecrated", }, - [629] = { + { ["id"] = "desecrated.stat_4181072906", ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", ["type"] = "desecrated", }, - [630] = { + { ["id"] = "desecrated.stat_941368244", ["text"] = "Players have #% more Cooldown Recovery Rate", ["type"] = "desecrated", }, - [631] = { + { ["id"] = "desecrated.stat_4274247770", ["text"] = "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", ["type"] = "desecrated", }, - [632] = { + { ["id"] = "desecrated.stat_1365079333", ["text"] = "Players steal the Eaten Souls of Slain Rare Monsters in Area", ["type"] = "desecrated", }, - [633] = { + { ["id"] = "desecrated.stat_3552135623", ["text"] = "Prevent #% of Damage from Deflected Hits", ["type"] = "desecrated", }, - [634] = { + { ["id"] = "desecrated.stat_3932115504", ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", ["type"] = "desecrated", }, - [635] = { + { ["id"] = "desecrated.stat_2825946427", ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", ["type"] = "desecrated", }, - [636] = { + { ["id"] = "desecrated.stat_2468595624", ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", ["type"] = "desecrated", }, - [637] = { + { ["id"] = "desecrated.stat_3003542304", ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "desecrated", }, - [638] = { + { ["id"] = "desecrated.stat_4081947835", ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "desecrated", }, - [639] = { + { ["id"] = "desecrated.stat_2573406169", ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", ["type"] = "desecrated", }, - [640] = { + { ["id"] = "desecrated.stat_2706625504", ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", ["type"] = "desecrated", }, - [641] = { + { ["id"] = "desecrated.stat_2550456553", ["text"] = "Rare Monsters have # additional Modifier", ["type"] = "desecrated", }, - [642] = { + { ["id"] = "desecrated.stat_4033618138", ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", ["type"] = "desecrated", }, - [643] = { + { ["id"] = "desecrated.stat_2991045011", ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", ["type"] = "desecrated", }, - [644] = { + { ["id"] = "desecrated.stat_2023107756", ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "desecrated", }, - [645] = { + { ["id"] = "desecrated.stat_1781372024", ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", ["type"] = "desecrated", }, - [646] = { + { ["id"] = "desecrated.stat_1040141381", ["text"] = "Recover #% of maximum Life when you use a Warcry", ["type"] = "desecrated", }, - [647] = { + { ["id"] = "desecrated.stat_1604736568", ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "desecrated", }, - [648] = { + { ["id"] = "desecrated.stat_4121454694", ["text"] = "Recover #% of maximum Mana when a Charm is used", ["type"] = "desecrated", }, - [649] = { + { ["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", }, - [650] = { + { ["id"] = "desecrated.stat_3482326075", ["text"] = "Remnants can be collected from #% further away", ["type"] = "desecrated", }, - [651] = { + { ["id"] = "desecrated.stat_1999910726", ["text"] = "Remnants you create have #% increased effect", ["type"] = "desecrated", }, - [652] = { + { ["id"] = "desecrated.stat_4147510958", ["text"] = "Sealed Skills have # to maximum Seals", ["type"] = "desecrated", }, - [653] = { + { ["id"] = "desecrated.stat_3384867265", ["text"] = "Sealed Skills have #% increased Seal gain frequency", ["type"] = "desecrated", }, - [654] = { + { ["id"] = "desecrated.stat_2942439603", ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", ["type"] = "desecrated", }, - [655] = { + { ["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", }, - [656] = { + { ["id"] = "desecrated.stat_3200877707", ["text"] = "Skills have a #% chance to not consume Glory", ["type"] = "desecrated", }, - [657] = { + { ["id"] = "desecrated.stat_2544540062", ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", ["type"] = "desecrated", }, - [658] = { + { ["id"] = "desecrated.stat_2610562860", ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", ["type"] = "desecrated", }, - [659] = { + { ["id"] = "desecrated.stat_2840989393", ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", ["type"] = "desecrated", }, - [660] = { + { ["id"] = "desecrated.stat_944643028", ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", ["type"] = "desecrated", }, - [661] = { + { ["id"] = "desecrated.stat_533892981", ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", ["type"] = "desecrated", }, - [662] = { + { ["id"] = "desecrated.stat_1285594161", ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", ["type"] = "desecrated", }, - [663] = { + { ["id"] = "desecrated.stat_3858398337", ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "desecrated", }, - [664] = { + { ["id"] = "desecrated.stat_1426522529", ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "desecrated", }, - [665] = { + { ["id"] = "desecrated.stat_1309799717", ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "desecrated", }, - [666] = { + { ["id"] = "desecrated.stat_3088348485", ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", ["type"] = "desecrated", }, - [667] = { + { ["id"] = "desecrated.stat_2442527254", ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "desecrated", }, - [668] = { + { ["id"] = "desecrated.stat_1087108135", ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", ["type"] = "desecrated", }, - [669] = { + { ["id"] = "desecrated.stat_1834658952", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", ["type"] = "desecrated", }, - [670] = { + { ["id"] = "desecrated.stat_1892122971", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", ["type"] = "desecrated", }, - [671] = { + { ["id"] = "desecrated.stat_266564538", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", ["type"] = "desecrated", }, - [672] = { + { ["id"] = "desecrated.stat_3752589831", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", ["type"] = "desecrated", }, - [673] = { + { ["id"] = "desecrated.stat_945774314", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", ["type"] = "desecrated", }, - [674] = { + { ["id"] = "desecrated.stat_517664839", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", ["type"] = "desecrated", }, - [675] = { + { ["id"] = "desecrated.stat_147764878", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "desecrated", }, - [676] = { + { ["id"] = "desecrated.stat_1852184471", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", ["type"] = "desecrated", }, - [677] = { + { ["id"] = "desecrated.stat_1590846356", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", ["type"] = "desecrated", }, - [678] = { + { ["id"] = "desecrated.stat_821948283", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", ["type"] = "desecrated", }, - [679] = { + { ["id"] = "desecrated.stat_2809428780", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", ["type"] = "desecrated", }, - [680] = { + { ["id"] = "desecrated.stat_1160637284", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", ["type"] = "desecrated", }, - [681] = { + { ["id"] = "desecrated.stat_3409275777", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", ["type"] = "desecrated", }, - [682] = { + { ["id"] = "desecrated.stat_3222402650", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "desecrated", }, - [683] = { + { ["id"] = "desecrated.stat_1552666713", ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", ["type"] = "desecrated", }, - [684] = { + { ["id"] = "desecrated.stat_1994296038", ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "desecrated", }, - [685] = { + { ["id"] = "desecrated.stat_139889694", ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "desecrated", }, - [686] = { + { ["id"] = "desecrated.stat_394473632", ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", ["type"] = "desecrated", }, - [687] = { + { ["id"] = "desecrated.stat_1773308808", ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", ["type"] = "desecrated", }, - [688] = { + { ["id"] = "desecrated.stat_830345042", ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", ["type"] = "desecrated", }, - [689] = { + { ["id"] = "desecrated.stat_1417267954", ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "desecrated", }, - [690] = { + { ["id"] = "desecrated.stat_255840549", ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", ["type"] = "desecrated", }, - [691] = { + { ["id"] = "desecrated.stat_980177976", ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", ["type"] = "desecrated", }, - [692] = { + { ["id"] = "desecrated.stat_2768899959", ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "desecrated", }, - [693] = { + { ["id"] = "desecrated.stat_3774951878", ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", ["type"] = "desecrated", }, - [694] = { + { ["id"] = "desecrated.stat_3256879910", ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", ["type"] = "desecrated", }, - [695] = { + { ["id"] = "desecrated.stat_1337740333", ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", ["type"] = "desecrated", }, - [696] = { + { ["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", }, - [697] = { + { ["id"] = "desecrated.stat_1007380041", ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", ["type"] = "desecrated", }, - [698] = { + { ["id"] = "desecrated.stat_455816363", ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", ["type"] = "desecrated", }, - [699] = { + { ["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", }, - [700] = { + { ["id"] = "desecrated.stat_3513818125", ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", ["type"] = "desecrated", }, - [701] = { + { ["id"] = "desecrated.stat_1137305356", ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "desecrated", }, - [702] = { + { ["id"] = "desecrated.stat_484792219", ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", ["type"] = "desecrated", }, - [703] = { + { ["id"] = "desecrated.stat_654207792", ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "desecrated", }, - [704] = { + { ["id"] = "desecrated.stat_1320662475", ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", ["type"] = "desecrated", }, - [705] = { + { ["id"] = "desecrated.stat_2108821127", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", ["type"] = "desecrated", }, - [706] = { + { ["id"] = "desecrated.stat_442393998", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", ["type"] = "desecrated", }, - [707] = { + { ["id"] = "desecrated.stat_1145481685", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", ["type"] = "desecrated", }, - [708] = { + { ["id"] = "desecrated.stat_1602294220", ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", ["type"] = "desecrated", }, - [709] = { + { ["id"] = "desecrated.stat_3666476747", ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", ["type"] = "desecrated", }, - [710] = { + { ["id"] = "desecrated.stat_3700202631", ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", ["type"] = "desecrated", }, - [711] = { + { ["id"] = "desecrated.stat_1039268420", ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", ["type"] = "desecrated", }, - [712] = { + { ["id"] = "desecrated.stat_3665922113", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "desecrated", }, - [713] = { + { ["id"] = "desecrated.stat_318092306", ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", ["type"] = "desecrated", }, - [714] = { + { ["id"] = "desecrated.stat_4142814612", ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", ["type"] = "desecrated", }, - [715] = { + { ["id"] = "desecrated.stat_2690740379", ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", ["type"] = "desecrated", }, - [716] = { + { ["id"] = "desecrated.stat_4089835882", ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", ["type"] = "desecrated", }, - [717] = { + { ["id"] = "desecrated.stat_1494950893", ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", ["type"] = "desecrated", }, - [718] = { + { ["id"] = "desecrated.stat_2638756573", ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", ["type"] = "desecrated", }, - [719] = { + { ["id"] = "desecrated.stat_1896066427", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", ["type"] = "desecrated", }, - [720] = { + { ["id"] = "desecrated.stat_1432756708", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", ["type"] = "desecrated", }, - [721] = { + { ["id"] = "desecrated.stat_868556494", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", ["type"] = "desecrated", }, - [722] = { + { ["id"] = "desecrated.stat_4258000627", ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", ["type"] = "desecrated", }, - [723] = { + { ["id"] = "desecrated.stat_3395186672", ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", ["type"] = "desecrated", }, - [724] = { + { ["id"] = "desecrated.stat_693237939", ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "desecrated", }, - [725] = { + { ["id"] = "desecrated.stat_1653682082", ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "desecrated", }, - [726] = { + { ["id"] = "desecrated.stat_3065378291", ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", ["type"] = "desecrated", }, - [727] = { + { ["id"] = "desecrated.stat_4162678661", ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", ["type"] = "desecrated", }, - [728] = { + { ["id"] = "desecrated.stat_2202308025", ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", ["type"] = "desecrated", }, - [729] = { + { ["id"] = "desecrated.stat_2954360902", ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", ["type"] = "desecrated", }, - [730] = { + { ["id"] = "desecrated.stat_30438393", ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", ["type"] = "desecrated", }, - [731] = { + { ["id"] = "desecrated.stat_378796798", ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", ["type"] = "desecrated", }, - [732] = { + { ["id"] = "desecrated.stat_1756380435", ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "desecrated", }, - [733] = { + { ["id"] = "desecrated.stat_3225608889", ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", ["type"] = "desecrated", }, - [734] = { + { ["id"] = "desecrated.stat_2107703111", ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", ["type"] = "desecrated", }, - [735] = { + { ["id"] = "desecrated.stat_473917671", ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", ["type"] = "desecrated", }, - [736] = { + { ["id"] = "desecrated.stat_2474424958", ["text"] = "Spell Skills have # to maximum number of Summoned Totems", ["type"] = "desecrated", }, - [737] = { + { ["id"] = "desecrated.stat_1967040409", ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "desecrated", }, - [738] = { + { ["id"] = "desecrated.stat_555706343", ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", ["type"] = "desecrated", }, - [739] = { + { ["id"] = "desecrated.stat_1058934731", ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "desecrated", }, - [740] = { + { ["id"] = "desecrated.stat_3067892458", ["text"] = "Triggered Spells deal #% increased Spell Damage", ["type"] = "desecrated", }, - [741] = { + { ["id"] = "desecrated.stat_3891355829|2", ["text"] = "Upgrades Radius to Large", ["type"] = "desecrated", }, - [742] = { + { ["id"] = "desecrated.stat_3891355829|1", ["text"] = "Upgrades Radius to Medium", ["type"] = "desecrated", }, - [743] = { + { ["id"] = "desecrated.stat_1434716233", ["text"] = "Warcries Empower an additional Attack", ["type"] = "desecrated", }, - [744] = { + { ["id"] = "desecrated.stat_2567751411", ["text"] = "Warcry Skills have #% increased Area of Effect", ["type"] = "desecrated", }, - [745] = { + { ["id"] = "desecrated.stat_3007552094", ["text"] = "You have Unholy Might", ["type"] = "desecrated", }, - [746] = { + { ["id"] = "desecrated.stat_3694078435", ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", ["type"] = "desecrated", }, - [747] = { + { ["id"] = "desecrated.stat_886088880", ["text"] = "Your Heavy Stun buildup empties #% faster", ["type"] = "desecrated", }, - [748] = { + { ["id"] = "desecrated.stat_1265767008", ["text"] = "Your Minions are Gigantic if they have Revived Recently", ["type"] = "desecrated", @@ -36841,824 +38066,824 @@ return { ["id"] = "desecrated", ["label"] = "Desecrated", }, - [9] = { + { ["entries"] = { - [1] = { + { ["id"] = "sanctum.stat_2410906123", ["text"] = "# Resolve Aegis", ["type"] = "sanctum", }, - [2] = { + { ["id"] = "sanctum.stat_1040593638", ["text"] = "# metre to Dodge Roll distance", ["type"] = "sanctum", }, - [3] = { + { ["id"] = "sanctum.stat_142859883", ["text"] = "#% Resolve Mitigation from Enemy Hits", ["type"] = "sanctum", }, - [4] = { + { ["id"] = "sanctum.stat_3470883829", ["text"] = "#% additional Physical Damage Reduction", ["type"] = "sanctum", }, - [5] = { + { ["id"] = "sanctum.stat_774484840", ["text"] = "#% chance for Resolve Mitigation to be doubled when Hit by an Enemy", ["type"] = "sanctum", }, - [6] = { + { ["id"] = "sanctum.stat_2155917449", ["text"] = "#% chance for each of your Keys to upgrade on completing a Floor", ["type"] = "sanctum", }, - [7] = { + { ["id"] = "sanctum.stat_3870327403", ["text"] = "#% chance if you were to lose all your Honour to have 1 Honour instead", ["type"] = "sanctum", }, - [8] = { + { ["id"] = "sanctum.stat_2878762585", ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits", ["type"] = "sanctum", }, - [9] = { + { ["id"] = "sanctum.stat_2284543592", ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits if you've been Hit Recently", ["type"] = "sanctum", }, - [10] = { + { ["id"] = "sanctum.stat_1960517795", ["text"] = "#% chance to Avoid gaining an Affliction", ["type"] = "sanctum", }, - [11] = { + { ["id"] = "sanctum.stat_1737465970", ["text"] = "#% increased Armour", ["type"] = "sanctum", }, - [12] = { + { ["id"] = "sanctum.stat_1016362888", ["text"] = "#% increased Armour, Evasion and Energy Shield", ["type"] = "sanctum", }, - [13] = { + { ["id"] = "sanctum.stat_3882471944", ["text"] = "#% increased Evasion Rating", ["type"] = "sanctum", }, - [14] = { + { ["id"] = "sanctum.stat_1583320325", ["text"] = "#% increased Honour restored", ["type"] = "sanctum", }, - [15] = { + { ["id"] = "sanctum.stat_3096446459", ["text"] = "#% increased Merchant Prices", ["type"] = "sanctum", }, - [16] = { + { ["id"] = "sanctum.stat_1416455556", ["text"] = "#% increased Movement Speed", ["type"] = "sanctum", }, - [17] = { + { ["id"] = "sanctum.stat_1388771661", ["text"] = "#% increased Resolve Aegis", ["type"] = "sanctum", }, - [18] = { + { ["id"] = "sanctum.stat_978111083", ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "sanctum", }, - [19] = { + { ["id"] = "sanctum.stat_1798691236", ["text"] = "#% increased chance to Avoid Resolve Loss from Enemy Projectile Hits", ["type"] = "sanctum", }, - [20] = { + { ["id"] = "sanctum.stat_3134588943", ["text"] = "#% increased chance to avoid Honour loss from Enemy Melee Hits", ["type"] = "sanctum", }, - [21] = { + { ["id"] = "sanctum.stat_1707887759", ["text"] = "#% increased maximum Energy Shield", ["type"] = "sanctum", }, - [22] = { + { ["id"] = "sanctum.stat_3970123360", ["text"] = "#% increased maximum Honour", ["type"] = "sanctum", }, - [23] = { + { ["id"] = "sanctum.stat_1200789871", ["text"] = "#% increased maximum Life", ["type"] = "sanctum", }, - [24] = { + { ["id"] = "sanctum.stat_729354668", ["text"] = "#% increased quantity of Keys dropped by Monsters", ["type"] = "sanctum", }, - [25] = { + { ["id"] = "sanctum.stat_1680962389", ["text"] = "#% increased quantity of Relics dropped by Monsters", ["type"] = "sanctum", }, - [26] = { + { ["id"] = "sanctum.stat_3128852541", ["text"] = "#% to All Resistances", ["type"] = "sanctum", }, - [27] = { + { ["id"] = "sanctum.stat_2287831219", ["text"] = "#% to Honour Resistance", ["type"] = "sanctum", }, - [28] = { + { ["id"] = "sanctum.stat_3096543632", ["text"] = "#% to Maximum Honour Resistance", ["type"] = "sanctum", }, - [29] = { + { ["id"] = "sanctum.stat_3376488707", ["text"] = "#% to all Maximum Resistances", ["type"] = "sanctum", }, - [30] = { + { ["id"] = "sanctum.stat_386901949", ["text"] = "An additional Room is revealed on the Trial Map", ["type"] = "sanctum", }, - [31] = { + { ["id"] = "sanctum.stat_1307773596", ["text"] = "Aureus Coins are converted to Experience upon defeating the Herald of the Scourge", ["type"] = "sanctum", }, - [32] = { + { ["id"] = "sanctum.stat_315260783", ["text"] = "Aureus Coins are converted to Relics upon defeating the Herald of the Scourge", ["type"] = "sanctum", }, - [33] = { + { ["id"] = "sanctum.stat_1019656601", ["text"] = "Aureus Coins are converted to Tainted Currency upon defeating the Herald of the Scourge", ["type"] = "sanctum", }, - [34] = { + { ["id"] = "sanctum.stat_2207905451", ["text"] = "Bosses deal #% increased Damage", ["type"] = "sanctum", }, - [35] = { + { ["id"] = "sanctum.stat_3226329527", ["text"] = "Bosses take #% increased Damage", ["type"] = "sanctum", }, - [36] = { + { ["id"] = "sanctum.stat_1512067281", ["text"] = "Cannot be used with Trials below level #", ["type"] = "sanctum", }, - [37] = { + { ["id"] = "sanctum.stat_2283325632", ["text"] = "Cannot have Boons", ["type"] = "sanctum", }, - [38] = { + { ["id"] = "sanctum.stat_2545161750", ["text"] = "Cannot restore Honour", ["type"] = "sanctum", }, - [39] = { + { ["id"] = "sanctum.stat_2150725270", ["text"] = "Damage taken cannot be Absorbed", ["type"] = "sanctum", }, - [40] = { + { ["id"] = "sanctum.stat_502549687", ["text"] = "Duplicates up to # random Offer Reward upon defeating the Herald of the Scourge", ["type"] = "sanctum", }, - [41] = { + { ["id"] = "sanctum.stat_2363402715", ["text"] = "Fountains have #% chance to grant double Sacred Water", ["type"] = "sanctum", }, - [42] = { + { ["id"] = "sanctum.stat_2393318075", ["text"] = "Gain # Sacred Water at the start of the Trial", ["type"] = "sanctum", }, - [43] = { + { ["id"] = "sanctum.stat_4057192895", ["text"] = "Gain # Sacred Water when you complete a Room", ["type"] = "sanctum", }, - [44] = { + { ["id"] = "sanctum.sanctum_effect_0", ["text"] = "Has ", ["type"] = "sanctum", }, - [45] = { + { ["id"] = "sanctum.sanctum_effect_59406", ["text"] = "Has Adrenaline Vial", ["type"] = "sanctum", }, - [46] = { + { ["id"] = "sanctum.sanctum_effect_47837", ["text"] = "Has Ahkeli's Guard", ["type"] = "sanctum", }, - [47] = { + { ["id"] = "sanctum.sanctum_effect_9121", ["text"] = "Has All-Seeing Eye", ["type"] = "sanctum", }, - [48] = { + { ["id"] = "sanctum.sanctum_effect_6090", ["text"] = "Has Assassin's Blade", ["type"] = "sanctum", }, - [49] = { + { ["id"] = "sanctum.sanctum_effect_52622", ["text"] = "Has Balbala's Gift", ["type"] = "sanctum", }, - [50] = { + { ["id"] = "sanctum.sanctum_effect_41498", ["text"] = "Has Black Pearl", ["type"] = "sanctum", }, - [51] = { + { ["id"] = "sanctum.sanctum_effect_34448", ["text"] = "Has Black Smoke", ["type"] = "sanctum", }, - [52] = { + { ["id"] = "sanctum.sanctum_effect_40008", ["text"] = "Has Blunt Sword", ["type"] = "sanctum", }, - [53] = { + { ["id"] = "sanctum.sanctum_effect_19039", ["text"] = "Has Branded Balbalakh", ["type"] = "sanctum", }, - [54] = { + { ["id"] = "sanctum.sanctum_effect_25062", ["text"] = "Has Chains of Binding", ["type"] = "sanctum", }, - [55] = { + { ["id"] = "sanctum.sanctum_effect_60796", ["text"] = "Has Chipped Dice", ["type"] = "sanctum", }, - [56] = { + { ["id"] = "sanctum.sanctum_effect_6958", ["text"] = "Has Chiselled Stone", ["type"] = "sanctum", }, - [57] = { + { ["id"] = "sanctum.sanctum_effect_55502", ["text"] = "Has Corrosive Concoction", ["type"] = "sanctum", }, - [58] = { + { ["id"] = "sanctum.sanctum_effect_32085", ["text"] = "Has Costly Aid", ["type"] = "sanctum", }, - [59] = { + { ["id"] = "sanctum.sanctum_effect_30042", ["text"] = "Has Crystal Shard", ["type"] = "sanctum", }, - [60] = { + { ["id"] = "sanctum.sanctum_effect_62584", ["text"] = "Has Dark Pit", ["type"] = "sanctum", }, - [61] = { + { ["id"] = "sanctum.sanctum_effect_41921", ["text"] = "Has Deadly Snare", ["type"] = "sanctum", }, - [62] = { + { ["id"] = "sanctum.sanctum_effect_59642", ["text"] = "Has Death Toll", ["type"] = "sanctum", }, - [63] = { + { ["id"] = "sanctum.sanctum_effect_14131", ["text"] = "Has Deceptive Mirror", ["type"] = "sanctum", }, - [64] = { + { ["id"] = "sanctum.sanctum_effect_13598", ["text"] = "Has Dekhara's Necklace", ["type"] = "sanctum", }, - [65] = { + { ["id"] = "sanctum.sanctum_effect_5501", ["text"] = "Has Dishonoured Tattoo", ["type"] = "sanctum", }, - [66] = { + { ["id"] = "sanctum.sanctum_effect_45401", ["text"] = "Has Diverted River", ["type"] = "sanctum", }, - [67] = { + { ["id"] = "sanctum.sanctum_effect_24603", ["text"] = "Has Earned Honour", ["type"] = "sanctum", }, - [68] = { + { ["id"] = "sanctum.sanctum_effect_38167", ["text"] = "Has Enchanted Urn", ["type"] = "sanctum", }, - [69] = { + { ["id"] = "sanctum.sanctum_effect_35912", ["text"] = "Has Exhausted Wells", ["type"] = "sanctum", }, - [70] = { + { ["id"] = "sanctum.sanctum_effect_28313", ["text"] = "Has Fiendish Wings", ["type"] = "sanctum", }, - [71] = { + { ["id"] = "sanctum.sanctum_effect_44476", ["text"] = "Has Flooding Rivers", ["type"] = "sanctum", }, - [72] = { + { ["id"] = "sanctum.sanctum_effect_18125", ["text"] = "Has Forgotten Traditions", ["type"] = "sanctum", }, - [73] = { + { ["id"] = "sanctum.sanctum_effect_40142", ["text"] = "Has Fountain of Youth", ["type"] = "sanctum", }, - [74] = { + { ["id"] = "sanctum.sanctum_effect_15442", ["text"] = "Has Fright Mask", ["type"] = "sanctum", }, - [75] = { + { ["id"] = "sanctum.sanctum_effect_38171", ["text"] = "Has Garukhan's Favour", ["type"] = "sanctum", }, - [76] = { + { ["id"] = "sanctum.sanctum_effect_35767", ["text"] = "Has Gate Toll", ["type"] = "sanctum", }, - [77] = { + { ["id"] = "sanctum.sanctum_effect_32300", ["text"] = "Has Ghastly Scythe", ["type"] = "sanctum", }, - [78] = { + { ["id"] = "sanctum.sanctum_effect_45600", ["text"] = "Has Glass Shard", ["type"] = "sanctum", }, - [79] = { + { ["id"] = "sanctum.sanctum_effect_3157", ["text"] = "Has Glowing Orb", ["type"] = "sanctum", }, - [80] = { + { ["id"] = "sanctum.sanctum_effect_1198", ["text"] = "Has Golden Smoke", ["type"] = "sanctum", }, - [81] = { + { ["id"] = "sanctum.sanctum_effect_34171", ["text"] = "Has Haemorrhage", ["type"] = "sanctum", }, - [82] = { + { ["id"] = "sanctum.sanctum_effect_13820", ["text"] = "Has Hare Foot", ["type"] = "sanctum", }, - [83] = { + { ["id"] = "sanctum.sanctum_effect_28826", ["text"] = "Has Holy Water", ["type"] = "sanctum", }, - [84] = { + { ["id"] = "sanctum.sanctum_effect_62326", ["text"] = "Has Honed Claws", ["type"] = "sanctum", }, - [85] = { + { ["id"] = "sanctum.sanctum_effect_4682", ["text"] = "Has Honoured Challenger", ["type"] = "sanctum", }, - [86] = { + { ["id"] = "sanctum.sanctum_effect_359", ["text"] = "Has Hungry Fangs", ["type"] = "sanctum", }, - [87] = { + { ["id"] = "sanctum.sanctum_effect_44836", ["text"] = "Has Imperial Seal", ["type"] = "sanctum", }, - [88] = { + { ["id"] = "sanctum.sanctum_effect_35578", ["text"] = "Has Iron Manacles", ["type"] = "sanctum", }, - [89] = { + { ["id"] = "sanctum.sanctum_effect_61003", ["text"] = "Has Leaking Waterskin", ["type"] = "sanctum", }, - [90] = { + { ["id"] = "sanctum.sanctum_effect_21680", ["text"] = "Has Low Rivers", ["type"] = "sanctum", }, - [91] = { + { ["id"] = "sanctum.sanctum_effect_379", ["text"] = "Has Lustrous Lacquer", ["type"] = "sanctum", }, - [92] = { + { ["id"] = "sanctum.sanctum_effect_51140", ["text"] = "Has Lustrous Pearl", ["type"] = "sanctum", }, - [93] = { + { ["id"] = "sanctum.sanctum_effect_45428", ["text"] = "Has Mirror of Fortune", ["type"] = "sanctum", }, - [94] = { + { ["id"] = "sanctum.sanctum_effect_30866", ["text"] = "Has Moment's Peace", ["type"] = "sanctum", }, - [95] = { + { ["id"] = "sanctum.sanctum_effect_56996", ["text"] = "Has Myriad Aspersions", ["type"] = "sanctum", }, - [96] = { + { ["id"] = "sanctum.sanctum_effect_43834", ["text"] = "Has Orb of Negation", ["type"] = "sanctum", }, - [97] = { + { ["id"] = "sanctum.sanctum_effect_54204", ["text"] = "Has Orbala Statuette", ["type"] = "sanctum", }, - [98] = { + { ["id"] = "sanctum.sanctum_effect_44077", ["text"] = "Has Orbala's Leathers", ["type"] = "sanctum", }, - [99] = { + { ["id"] = "sanctum.sanctum_effect_29924", ["text"] = "Has Ornate Dagger", ["type"] = "sanctum", }, - [100] = { + { ["id"] = "sanctum.sanctum_effect_48548", ["text"] = "Has Pledge to the Afflicted", ["type"] = "sanctum", }, - [101] = { + { ["id"] = "sanctum.sanctum_effect_60079", ["text"] = "Has Pledge to the Deserted", ["type"] = "sanctum", }, - [102] = { + { ["id"] = "sanctum.sanctum_effect_62382", ["text"] = "Has Pledge to the Guileful", ["type"] = "sanctum", }, - [103] = { + { ["id"] = "sanctum.sanctum_effect_27532", ["text"] = "Has Pledge to the Powerful", ["type"] = "sanctum", }, - [104] = { + { ["id"] = "sanctum.sanctum_effect_28906", ["text"] = "Has Purple Smoke", ["type"] = "sanctum", }, - [105] = { + { ["id"] = "sanctum.sanctum_effect_31580", ["text"] = "Has Raincaller", ["type"] = "sanctum", }, - [106] = { + { ["id"] = "sanctum.sanctum_effect_56047", ["text"] = "Has Rapid Quicksand", ["type"] = "sanctum", }, - [107] = { + { ["id"] = "sanctum.sanctum_effect_17084", ["text"] = "Has Red Smoke", ["type"] = "sanctum", }, - [108] = { + { ["id"] = "sanctum.sanctum_effect_46242", ["text"] = "Has Reparations", ["type"] = "sanctum", }, - [109] = { + { ["id"] = "sanctum.sanctum_effect_30450", ["text"] = "Has Rusted Mallet", ["type"] = "sanctum", }, - [110] = { + { ["id"] = "sanctum.sanctum_effect_27130", ["text"] = "Has Sacred Mirror", ["type"] = "sanctum", }, - [111] = { + { ["id"] = "sanctum.sanctum_effect_41741", ["text"] = "Has Sanguine Vial", ["type"] = "sanctum", }, - [112] = { + { ["id"] = "sanctum.sanctum_effect_44243", ["text"] = "Has Scrying Crystal", ["type"] = "sanctum", }, - [113] = { + { ["id"] = "sanctum.sanctum_effect_35605", ["text"] = "Has Season of Famine", ["type"] = "sanctum", }, - [114] = { + { ["id"] = "sanctum.sanctum_effect_34499", ["text"] = "Has Sekhema's Cloak", ["type"] = "sanctum", }, - [115] = { + { ["id"] = "sanctum.sanctum_effect_48487", ["text"] = "Has Sharpened Arrowhead", ["type"] = "sanctum", }, - [116] = { + { ["id"] = "sanctum.sanctum_effect_16335", ["text"] = "Has Shattered Shield", ["type"] = "sanctum", }, - [117] = { + { ["id"] = "sanctum.sanctum_effect_51458", ["text"] = "Has Silver Chalice", ["type"] = "sanctum", }, - [118] = { + { ["id"] = "sanctum.sanctum_effect_24536", ["text"] = "Has Silver Tongue", ["type"] = "sanctum", }, - [119] = { + { ["id"] = "sanctum.sanctum_effect_53929", ["text"] = "Has Spiked Exit", ["type"] = "sanctum", }, - [120] = { + { ["id"] = "sanctum.sanctum_effect_13875", ["text"] = "Has Spiked Shell", ["type"] = "sanctum", }, - [121] = { + { ["id"] = "sanctum.sanctum_effect_9350", ["text"] = "Has Suspected Sympathiser", ["type"] = "sanctum", }, - [122] = { + { ["id"] = "sanctum.sanctum_effect_48875", ["text"] = "Has Tattered Blindfold", ["type"] = "sanctum", }, - [123] = { + { ["id"] = "sanctum.sanctum_effect_34561", ["text"] = "Has Trade Tariff", ["type"] = "sanctum", }, - [124] = { + { ["id"] = "sanctum.sanctum_effect_55120", ["text"] = "Has Tradition's Demand", ["type"] = "sanctum", }, - [125] = { + { ["id"] = "sanctum.sanctum_effect_16773", ["text"] = "Has UNUSED", ["type"] = "sanctum", }, - [126] = { + { ["id"] = "sanctum.sanctum_effect_50613", ["text"] = "Has Unassuming Brick", ["type"] = "sanctum", }, - [127] = { + { ["id"] = "sanctum.sanctum_effect_38381", ["text"] = "Has Unquenched Thirst", ["type"] = "sanctum", }, - [128] = { + { ["id"] = "sanctum.sanctum_effect_9853", ["text"] = "Has Untouchable", ["type"] = "sanctum", }, - [129] = { + { ["id"] = "sanctum.sanctum_effect_3716", ["text"] = "Has Upward Path", ["type"] = "sanctum", }, - [130] = { + { ["id"] = "sanctum.sanctum_effect_43384", ["text"] = "Has Veiled Sight", ["type"] = "sanctum", }, - [131] = { + { ["id"] = "sanctum.sanctum_effect_57507", ["text"] = "Has Viscous Ichor", ["type"] = "sanctum", }, - [132] = { + { ["id"] = "sanctum.sanctum_effect_24131", ["text"] = "Has Weakened Flesh", ["type"] = "sanctum", }, - [133] = { + { ["id"] = "sanctum.sanctum_effect_20573", ["text"] = "Has Winter Drought", ["type"] = "sanctum", }, - [134] = { + { ["id"] = "sanctum.sanctum_effect_46977", ["text"] = "Has Wooden Effigy", ["type"] = "sanctum", }, - [135] = { + { ["id"] = "sanctum.sanctum_effect_30473", ["text"] = "Has Worn Sandals", ["type"] = "sanctum", }, - [136] = { + { ["id"] = "sanctum.stat_2948404493", ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "sanctum", }, - [137] = { + { ["id"] = "sanctum.stat_4191312223", ["text"] = "Maximum Honour is 1", ["type"] = "sanctum", }, - [138] = { + { ["id"] = "sanctum.stat_1890519597", ["text"] = "Monsters deal #% increased Damage", ["type"] = "sanctum", }, - [139] = { + { ["id"] = "sanctum.stat_231205265", ["text"] = "Monsters have #% chance to drop double Sacred Water", ["type"] = "sanctum", }, - [140] = { + { ["id"] = "sanctum.stat_3909654181", ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", ["type"] = "sanctum", }, - [141] = { + { ["id"] = "sanctum.stat_3114474137", ["text"] = "Monsters take #% increased Damage", ["type"] = "sanctum", }, - [142] = { + { ["id"] = "sanctum.stat_199414195", ["text"] = "Rare Monsters deal #% increased Damage", ["type"] = "sanctum", }, - [143] = { + { ["id"] = "sanctum.stat_408585189", ["text"] = "Rare Monsters take #% increased Damage", ["type"] = "sanctum", }, - [144] = { + { ["id"] = "sanctum.stat_3889616543", ["text"] = "Resolve Aegis Recovers #% faster while not losing Resolve", ["type"] = "sanctum", }, - [145] = { + { ["id"] = "sanctum.stat_3621177126", ["text"] = "Resolve Mitigation from Enemy Hits is based on #% of Armour", ["type"] = "sanctum", }, - [146] = { + { ["id"] = "sanctum.stat_3865020351", ["text"] = "Restore # Honour on killing a Boss", ["type"] = "sanctum", }, - [147] = { + { ["id"] = "sanctum.stat_521869848", ["text"] = "Restore # Honour on picking up a Key", ["type"] = "sanctum", }, - [148] = { + { ["id"] = "sanctum.stat_2114314842", ["text"] = "Restore # Honour on room completion", ["type"] = "sanctum", }, - [149] = { + { ["id"] = "sanctum.stat_2492340460", ["text"] = "Restore # Honour on venerating a Maraketh Shrine", ["type"] = "sanctum", }, - [150] = { + { ["id"] = "sanctum.stat_3237367570", ["text"] = "Rooms are unknown on the Trial Map", ["type"] = "sanctum", }, - [151] = { + { ["id"] = "sanctum.stat_1175354969", ["text"] = "The Herald of the Scourge drops an additional Invocation", ["type"] = "sanctum", }, - [152] = { + { ["id"] = "sanctum.stat_290775436", ["text"] = "The Merchant has an additional Choice", ["type"] = "sanctum", }, - [153] = { + { ["id"] = "sanctum.stat_3182333322", ["text"] = "This item is destroyed when applied to a Trial", ["type"] = "sanctum", }, - [154] = { + { ["id"] = "sanctum.stat_3554921410", ["text"] = "Traps deal #% increased Damage", ["type"] = "sanctum", }, - [155] = { + { ["id"] = "sanctum.stat_3170238729", ["text"] = "When you gain a Key #% chance to gain another", ["type"] = "sanctum", }, - [156] = { + { ["id"] = "sanctum.stat_698936647", ["text"] = "Your Armour, Evasion and Energy Shield are zero", ["type"] = "sanctum", }, - [157] = { + { ["id"] = "sanctum.stat_2149490821", ["text"] = "Zarokh, the Temporal deals #% more Damage", ["type"] = "sanctum", }, - [158] = { + { ["id"] = "sanctum.stat_3840591093", ["text"] = "Zarokh, the Temporal drops Against the Darkness", ["type"] = "sanctum", }, - [159] = { + { ["id"] = "sanctum.stat_767926824", ["text"] = "Zarokh, the Temporal drops Blessed Bonds", ["type"] = "sanctum", }, - [160] = { + { ["id"] = "sanctum.stat_3059754769", ["text"] = "Zarokh, the Temporal drops Sandstorm Visage", ["type"] = "sanctum", }, - [161] = { + { ["id"] = "sanctum.stat_2821715641", ["text"] = "Zarokh, the Temporal drops Sekhema's Resolve", ["type"] = "sanctum", }, - [162] = { + { ["id"] = "sanctum.stat_2469854926", ["text"] = "Zarokh, the Temporal drops Temporalis", ["type"] = "sanctum", }, - [163] = { + { ["id"] = "sanctum.stat_3878191575", ["text"] = "Zarokh, the Temporal drops an additional Barya", ["type"] = "sanctum", }, - [164] = { + { ["id"] = "sanctum.stat_2226900052", ["text"] = "Zarokh, the Temporal takes #% more Damage", ["type"] = "sanctum", @@ -37667,649 +38892,654 @@ return { ["id"] = "sanctum", ["label"] = "Sanctum", }, - [10] = { + { ["entries"] = { - [1] = { + { ["id"] = "skill.alchemists_boon", ["text"] = "Grants Skill: Level # Alchemist's Boon", ["type"] = "skill", }, - [2] = { + { ["id"] = "skill.archmage", ["text"] = "Grants Skill: Level # Archmage", ["type"] = "skill", }, - [3] = { + { ["id"] = "skill.new_new_arctic_armour", ["text"] = "Grants Skill: Level # Arctic Armour", ["type"] = "skill", }, - [4] = { + { ["id"] = "skill.attrition", ["text"] = "Grants Skill: Level # Attrition", ["type"] = "skill", }, - [5] = { + { ["id"] = "skill.azmerian_swarm", ["text"] = "Grants Skill: Level # Azmerian Swarms", ["type"] = "skill", }, - [6] = { + { ["id"] = "skill.summon_azmerian_wolf", ["text"] = "Grants Skill: Level # Azmerian Wolf", ["type"] = "skill", }, - [7] = { + { ["id"] = "skill.barkskin", ["text"] = "Grants Skill: Level # Barkskin", ["type"] = "skill", }, - [8] = { + { ["id"] = "skill.barrier_invocation", ["text"] = "Grants Skill: Level # Barrier Invocation", ["type"] = "skill", }, - [9] = { + { ["id"] = "skill.berserk", ["text"] = "Grants Skill: Level # Berserk", ["type"] = "skill", }, - [10] = { + { ["id"] = "skill.black_powder_blitz_reservation", ["text"] = "Grants Skill: Level # Black Powder Blitz", ["type"] = "skill", }, - [11] = { + { ["id"] = "skill.blink", ["text"] = "Grants Skill: Level # Blink", ["type"] = "skill", }, - [12] = { + { ["id"] = "skill.blink_reservation", ["text"] = "Grants Skill: Level # Blink", ["type"] = "skill", }, - [13] = { + { ["id"] = "skill.bone_blast", ["text"] = "Grants Skill: Level # Bone Blast", ["type"] = "skill", }, - [14] = { + { ["id"] = "skill.briarpatch", ["text"] = "Grants Skill: Level # Briarpatch", ["type"] = "skill", }, - [15] = { + { ["id"] = "skill.exploding_poison_toad", ["text"] = "Grants Skill: Level # Bursting Fen Toad", ["type"] = "skill", }, - [16] = { + { ["id"] = "skill.hyena_cackle", ["text"] = "Grants Skill: Level # Cackling Companions", ["type"] = "skill", }, - [17] = { + { ["id"] = "skill.cast_on_block", ["text"] = "Grants Skill: Level # Cast on Block", ["type"] = "skill", }, - [18] = { + { ["id"] = "skill.cast_on_charm_use", ["text"] = "Grants Skill: Level # Cast on Charm Use", ["type"] = "skill", }, - [19] = { + { ["id"] = "skill.cast_on_critical_strike", ["text"] = "Grants Skill: Level # Cast on Critical", ["type"] = "skill", }, - [20] = { + { ["id"] = "skill.cast_on_dodge", ["text"] = "Grants Skill: Level # Cast on Dodge", ["type"] = "skill", }, - [21] = { + { ["id"] = "skill.cast_on_elemental_ailment", ["text"] = "Grants Skill: Level # Cast on Elemental Ailment", ["type"] = "skill", }, - [22] = { + { ["id"] = "skill.cast_on_minion_death", ["text"] = "Grants Skill: Level # Cast on Minion Death", ["type"] = "skill", }, - [23] = { + { ["id"] = "skill.chaosbolt", ["text"] = "Grants Skill: Level # Chaos Bolt", ["type"] = "skill", }, - [24] = { + { ["id"] = "skill.chaos_surge", ["text"] = "Grants Skill: Level # Chaotic Surge", ["type"] = "skill", }, - [25] = { + { ["id"] = "skill.charge_regulation", ["text"] = "Grants Skill: Level # Charge Regulation", ["type"] = "skill", }, - [26] = { + { ["id"] = "skill.coiling_bolts", ["text"] = "Grants Skill: Level # Coiling Bolts", ["type"] = "skill", }, - [27] = { + { ["id"] = "skill.combat_frenzy", ["text"] = "Grants Skill: Level # Combat Frenzy", ["type"] = "skill", }, - [28] = { + { ["id"] = "skill.requiem_ammo", ["text"] = "Grants Skill: Level # Compose Requiem", ["type"] = "skill", }, - [29] = { + { ["id"] = "skill.consecrate", ["text"] = "Grants Skill: Level # Consecrate", ["type"] = "skill", }, - [30] = { + { ["id"] = "skill.convalescence", ["text"] = "Grants Skill: Level # Convalescence", ["type"] = "skill", }, - [31] = { + { ["id"] = "skill.crackling_palm", ["text"] = "Grants Skill: Level # Crackling Palm", ["type"] = "skill", }, - [32] = { + { ["id"] = "skill.crushing_fear", ["text"] = "Grants Skill: Level # Crushing Fear", ["type"] = "skill", }, - [33] = { - ["id"] = "skill.corpse_cloud_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", }, - [35] = { + { ["id"] = "skill.defiance_banner_reservation", ["text"] = "Grants Skill: Level # Defiance Banner", ["type"] = "skill", }, - [36] = { + { ["id"] = "skill.discipline", ["text"] = "Grants Skill: Level # Discipline", ["type"] = "skill", }, - [37] = { + { ["id"] = "skill.dread_banner_reservation", ["text"] = "Grants Skill: Level # Dread Banner", ["type"] = "skill", }, - [38] = { + { ["id"] = "skill.elemental_conflux", ["text"] = "Grants Skill: Level # Elemental Conflux", ["type"] = "skill", }, - [39] = { + { ["id"] = "skill.elemental_invocation", ["text"] = "Grants Skill: Level # Elemental Invocation", ["type"] = "skill", }, - [40] = { + { ["id"] = "skill.unique_dusk_vigil_triggered_blazing_cluster", ["text"] = "Grants Skill: Level # Ember Fusillade", ["type"] = "skill", }, - [41] = { + { ["id"] = "skill.enervating_nova", ["text"] = "Grants Skill: Level # Enervating Nova", ["type"] = "skill", }, - [42] = { + { ["id"] = "skill.eternal_rage", ["text"] = "Grants Skill: Level # Eternal Rage", ["type"] = "skill", }, - [43] = { + { ["id"] = "skill.feast_of_flesh", ["text"] = "Grants Skill: Level # Feast of Flesh", ["type"] = "skill", }, - [44] = { + { ["id"] = "skill.feral_invocation", ["text"] = "Grants Skill: Level # Feral Invocation", ["type"] = "skill", }, - [45] = { + { ["id"] = "skill.fireball", ["text"] = "Grants Skill: Level # Fireball", ["type"] = "skill", }, - [46] = { + { ["id"] = "skill.firebolt", ["text"] = "Grants Skill: Level # Firebolt", ["type"] = "skill", }, - [47] = { + { ["id"] = "skill.freezing_shards", ["text"] = "Grants Skill: Level # Freezing Shards", ["type"] = "skill", }, - [48] = { + { ["id"] = "skill.fulmination", ["text"] = "Grants Skill: Level # Fulmination", ["type"] = "skill", }, - [49] = { + { ["id"] = "skill.future_past", ["text"] = "Grants Skill: Level # Future-Past", ["type"] = "skill", }, - [50] = { + { ["id"] = "skill.galvanic_field", ["text"] = "Grants Skill: Level # Galvanic Field", ["type"] = "skill", }, - [51] = { + { ["id"] = "skill.gemini_surge", ["text"] = "Grants Skill: Level # Gemini Surge", ["type"] = "skill", }, - [52] = { + { ["id"] = "skill.ghost_dance", ["text"] = "Grants Skill: Level # Ghost Dance", ["type"] = "skill", }, - [53] = { + { ["id"] = "skill.harbinger_of_madness", ["text"] = "Grants Skill: Level # Harbinger of Madness", ["type"] = "skill", }, - [54] = { + { ["id"] = "skill.heart_of_ice", ["text"] = "Grants Skill: Level # Heart of Ice", ["type"] = "skill", }, - [55] = { + { ["id"] = "skill.herald_of_ash", ["text"] = "Grants Skill: Level # Herald of Ash", ["type"] = "skill", }, - [56] = { + { ["id"] = "skill.herald_of_blood", ["text"] = "Grants Skill: Level # Herald of Blood", ["type"] = "skill", }, - [57] = { + { ["id"] = "skill.herald_of_ice", ["text"] = "Grants Skill: Level # Herald of Ice", ["type"] = "skill", }, - [58] = { + { ["id"] = "skill.herald_of_plague", ["text"] = "Grants Skill: Level # Herald of Plague", ["type"] = "skill", }, - [59] = { + { ["id"] = "skill.herald_of_thunder", ["text"] = "Grants Skill: Level # Herald of Thunder", ["type"] = "skill", }, - [60] = { + { ["id"] = "skill.atziri_herald", ["text"] = "Grants Skill: Level # Herald of the Royal Queen", ["type"] = "skill", }, - [61] = { + { ["id"] = "skill.his_foul_emergence", ["text"] = "Grants Skill: Level # His Foul Emergence", ["type"] = "skill", }, - [62] = { + { ["id"] = "skill.grave_command", ["text"] = "Grants Skill: Level # His Grave Command", ["type"] = "skill", }, - [63] = { + { ["id"] = "skill.scattering_calamity", ["text"] = "Grants Skill: Level # His Scattering Calamity", ["type"] = "skill", }, - [64] = { + { ["id"] = "skill.vile_disruption", ["text"] = "Grants Skill: Level # His Vile Intrusion", ["type"] = "skill", }, - [65] = { + { ["id"] = "skill.his_winnowing_flame", ["text"] = "Grants Skill: Level # His Winnowing Flame", ["type"] = "skill", }, - [66] = { + { ["id"] = "skill.icestorm", ["text"] = "Grants Skill: Level # Icestorm", ["type"] = "skill", }, - [67] = { + { ["id"] = "skill.impurity", ["text"] = "Grants Skill: Level # Impurity", ["type"] = "skill", }, - [68] = { + { ["id"] = "skill.iron_ward", ["text"] = "Grants Skill: Level # Iron Ward", ["type"] = "skill", }, - [69] = { + { ["id"] = "skill.life_remnants", ["text"] = "Grants Skill: Level # Life Remnants", ["type"] = "skill", }, - [70] = { - ["id"] = "skill.unique_breach_lightning_bolt", + { + ["id"] = "skill.lightning_bolt", ["text"] = "Grants Skill: Level # Lightning Bolt", ["type"] = "skill", }, - [71] = { - ["id"] = "skill.lightning_bolt", + { + ["id"] = "skill.unique_breach_lightning_bolt", ["text"] = "Grants Skill: Level # Lightning Bolt", ["type"] = "skill", }, - [72] = { + { ["id"] = "skill.lingering_illusion", ["text"] = "Grants Skill: Level # Lingering Illusion", ["type"] = "skill", }, - [73] = { + { ["id"] = "skill.living_bomb_player", ["text"] = "Grants Skill: Level # Living Bomb", ["type"] = "skill", }, - [74] = { + { ["id"] = "skill.magma_barrier", ["text"] = "Grants Skill: Level # Magma Barrier", ["type"] = "skill", }, - [75] = { + { ["id"] = "skill.malice", ["text"] = "Grants Skill: Level # Malice", ["type"] = "skill", }, - [76] = { + { ["id"] = "skill.mana_drain", ["text"] = "Grants Skill: Level # Mana Drain", ["type"] = "skill", }, - [77] = { + { ["id"] = "skill.mana_remnants", ["text"] = "Grants Skill: Level # Mana Remnants", ["type"] = "skill", }, - [78] = { + { ["id"] = "skill.midnight_star", ["text"] = "Grants Skill: Level # Midnight Zenith", ["type"] = "skill", }, - [79] = { + { ["id"] = "skill.mirage_archer", ["text"] = "Grants Skill: Level # Mirage Archer", ["type"] = "skill", }, - [80] = { + { ["id"] = "skill.mirror_of_refraction", ["text"] = "Grants Skill: Level # Mirror of Refraction", ["type"] = "skill", }, - [81] = { + { ["id"] = "skill.summon_mist_raven", ["text"] = "Grants Skill: Level # Mist Raven", ["type"] = "skill", }, - [82] = { + { ["id"] = "skill.molten_crash", ["text"] = "Grants Skill: Level # Molten Crash", ["type"] = "skill", }, - [83] = { + { ["id"] = "skill.triggered_molten_shower", ["text"] = "Grants Skill: Level # Molten Shower", ["type"] = "skill", }, - [84] = { + { ["id"] = "skill.overwhelming_presence", ["text"] = "Grants Skill: Level # Overwhelming Presence", ["type"] = "skill", }, - [85] = { + { ["id"] = "skill.parry", ["text"] = "Grants Skill: Level # Parry", ["type"] = "skill", }, - [86] = { + { ["id"] = "skill.phantasmal_arrow", ["text"] = "Grants Skill: Level # Phantasmal Arrow", ["type"] = "skill", }, - [87] = { + { ["id"] = "skill.pinnacle_of_power", ["text"] = "Grants Skill: Level # Pinnacle of Power", ["type"] = "skill", }, - [88] = { + { ["id"] = "skill.plague_bearer", ["text"] = "Grants Skill: Level # Plague Bearer", ["type"] = "skill", }, - [89] = { + { ["id"] = "skill.power_siphon", ["text"] = "Grants Skill: Level # Power Siphon", ["type"] = "skill", }, - [90] = { + { ["id"] = "skill.purity_of_fire", ["text"] = "Grants Skill: Level # Purity of Fire", ["type"] = "skill", }, - [91] = { + { ["id"] = "skill.purity_of_ice", ["text"] = "Grants Skill: Level # Purity of Ice", ["type"] = "skill", }, - [92] = { + { ["id"] = "skill.purity_of_lightning", ["text"] = "Grants Skill: Level # Purity of Lightning", ["type"] = "skill", }, - [93] = { + { ["id"] = "skill.raging_spirits", ["text"] = "Grants Skill: Level # Raging Spirits", ["type"] = "skill", }, - [94] = { + { ["id"] = "skill.shield_block", ["text"] = "Grants Skill: Level # Raise Shield", ["type"] = "skill", }, - [95] = { + { ["id"] = "skill.ravenous_swarm", ["text"] = "Grants Skill: Level # Ravenous Swarm", ["type"] = "skill", }, - [96] = { + { ["id"] = "skill.reap", ["text"] = "Grants Skill: Level # Reap", ["type"] = "skill", }, - [97] = { + { ["id"] = "skill.reapers_invocation", ["text"] = "Grants Skill: Level # Reaper's Invocation", ["type"] = "skill", }, - [98] = { + { ["id"] = "skill.summon_rhoa_mount", ["text"] = "Grants Skill: Level # Rhoa Mount", ["type"] = "skill", }, - [99] = { + { ["id"] = "skill.righteous_descent", ["text"] = "Grants Skill: Level # Righteous Descent", ["type"] = "skill", }, - [100] = { + { ["id"] = "skill.sigil_of_life", ["text"] = "Grants Skill: Level # Rite of Restoration", ["type"] = "skill", }, - [101] = { + { ["id"] = "skill.runic_tempering", ["text"] = "Grants Skill: Level # Runic Tempering", ["type"] = "skill", }, - [102] = { + { ["id"] = "skill.sacrifice", ["text"] = "Grants Skill: Level # Sacrifice", ["type"] = "skill", }, - [103] = { + { ["id"] = "skill.sanguine_revelry", ["text"] = "Grants Skill: Level # Sanguine Revelry", ["type"] = "skill", }, - [104] = { + { ["id"] = "skill.savage_fury", ["text"] = "Grants Skill: Level # Savage Fury", ["type"] = "skill", }, - [105] = { + { ["id"] = "skill.scavenged_plating", ["text"] = "Grants Skill: Level # Scavenged Plating", ["type"] = "skill", }, - [106] = { + { ["id"] = "skill.shard_scavenger", ["text"] = "Grants Skill: Level # Shard Scavenger", ["type"] = "skill", }, - [107] = { + { ["id"] = "skill.shattering_spite", ["text"] = "Grants Skill: Level # Shattering Spite", ["type"] = "skill", }, - [108] = { + { ["id"] = "skill.sigil_of_power", ["text"] = "Grants Skill: Level # Sigil of Power", ["type"] = "skill", }, - [109] = { + { ["id"] = "skill.siphon_elements", ["text"] = "Grants Skill: Level # Siphon Elements", ["type"] = "skill", }, - [110] = { + { ["id"] = "skill.summon_skeleton_warrior", ["text"] = "Grants Skill: Level # Skeletal Warrior Minion", ["type"] = "skill", }, - [111] = { + { ["id"] = "skill.nightfall_soaring_midnight", ["text"] = "Grants Skill: Level # Soaring Midnight", ["type"] = "skill", }, - [112] = { + { ["id"] = "skill.solar_orb", ["text"] = "Grants Skill: Level # Solar Orb", ["type"] = "skill", }, - [113] = { + { ["id"] = "skill.unique_earthbound_triggered_spark", ["text"] = "Grants Skill: Level # Spark", ["type"] = "skill", }, - [114] = { + { ["id"] = "skill.spellslinger_invocation", ["text"] = "Grants Skill: Level # Spellslinger", ["type"] = "skill", }, - [115] = { + { ["id"] = "skill.summon_spiraling_conspiracy", ["text"] = "Grants Skill: Level # Spiraling Conspiracy", ["type"] = "skill", }, - [116] = { + { ["id"] = "skill.spirit_vessel_companion", ["text"] = "Grants Skill: Level # Spirit Vessel", ["type"] = "skill", }, - [117] = { + { ["id"] = "skill.starborn_onslaught", ["text"] = "Grants Skill: Level # Starborn Onslaught", ["type"] = "skill", }, - [118] = { + { + ["id"] = "skill.the_stars_answer", + ["text"] = "Grants Skill: Level # The Stars Answer", + ["type"] = "skill", + }, + { ["id"] = "skill.cast_lightning_spell_on_hit", ["text"] = "Grants Skill: Level # Thundergod's Wrath", ["type"] = "skill", }, - [119] = { + { ["id"] = "skill.time_of_need", ["text"] = "Grants Skill: Level # Time of Need", ["type"] = "skill", }, - [120] = { + { ["id"] = "skill.trail_of_caltrops", ["text"] = "Grants Skill: Level # Trail of Caltrops", ["type"] = "skill", }, - [121] = { + { ["id"] = "skill.trinity", ["text"] = "Grants Skill: Level # Trinity", ["type"] = "skill", }, - [122] = { + { ["id"] = "skill.unleash", ["text"] = "Grants Skill: Level # Unleash", ["type"] = "skill", }, - [123] = { + { ["id"] = "skill.valakos_charge", ["text"] = "Grants Skill: Level # Valako's Charge", ["type"] = "skill", }, - [124] = { + { ["id"] = "skill.volatile_dead", ["text"] = "Grants Skill: Level # Volatile Dead", ["type"] = "skill", }, - [125] = { + { ["id"] = "skill.war_banner_reservation", ["text"] = "Grants Skill: Level # War Banner", ["type"] = "skill", }, - [126] = { + { ["id"] = "skill.ancient_gifts", ["text"] = "Grants Skill: Level # Wildwood's Gifts", ["type"] = "skill", }, - [127] = { + { ["id"] = "skill.wind_dancer", ["text"] = "Grants Skill: Level # Wind Dancer", ["type"] = "skill", }, - [128] = { + { ["id"] = "skill.withering_presence", ["text"] = "Grants Skill: Level # Withering Presence", ["type"] = "skill", }, - [129] = { + { ["id"] = "skill.wolf_pack", ["text"] = "Grants Skill: Level # Wolf Pack", ["type"] = "skill", diff --git a/src/Modules/Common.lua b/src/Modules/Common.lua index 97a6ff373..3ba68b685 100644 --- a/src/Modules/Common.lua +++ b/src/Modules/Common.lua @@ -900,14 +900,12 @@ function stringify(thing) elseif type(thing) == 'table' then local s = "{"; local keys = { } - for key in pairs(thing) do table.insert(keys, key) end + for key in pairs(thing) do t_insert(keys, key) end table.sort(keys) for _, k in ipairs(keys) do local v = thing[k] s = s.."\n\t" - if type(k) == 'number' then - s = s.."["..k.."] = " - else + if type(k) ~= 'number' then s = s.."[\""..k.."\"] = " end if type(v) == 'string' then