diff --git a/src/Classes/DropDownControl.lua b/src/Classes/DropDownControl.lua index f1245dfc1a..07c7efb2ad 100644 --- a/src/Classes/DropDownControl.lua +++ b/src/Classes/DropDownControl.lua @@ -8,7 +8,7 @@ local m_min = math.min local m_max = math.max local m_floor = math.floor -local DropDownClass = newClass("DropDownControl", "Control", "ControlHost", "TooltipHost", "SearchHost", function(self, anchor, rect, list, selFunc, tooltipText) +local DropDownClass = newClass("DropDownControl", "Control", "ControlHost", "TooltipHost", "SearchHost", function(self, anchor, rect, list, selFunc, tooltipText, ignoreSearchOrder) self.Control(anchor, rect) self.ControlHost() self.TooltipHost(tooltipText) @@ -28,7 +28,8 @@ local DropDownClass = newClass("DropDownControl", "Control", "ControlHost", "Too end end return StripEscapes(listVal) - end + end, + ignoreSearchOrder ) self.controls.scrollBar = new("ScrollBarControl", {"TOPRIGHT",self,"TOPRIGHT"}, {-1, 0, 18, 0}, (self.height - 4) * 4) self.controls.scrollBar.height = function() @@ -111,13 +112,14 @@ function DropDownClass:DrawSearchHighlights(label, searchInfo, x, y, width, heig local endX = 0 local last = 0 SetDrawColor(1, 1, 0, 0.2) + local strippedLabel = StripEscapes(label) for _, range in ipairs(searchInfo.ranges) do if range.from - last - 1 > 0 then - startX = DrawStringWidth(height, "VAR", label:sub(last + 1, range.from - 1)) + x + endX + startX = DrawStringWidth(height, "VAR", strippedLabel:sub(last + 1, range.from - 1)) + x + endX else startX = endX end - endX = DrawStringWidth(height, "VAR", label:sub(range.from, range.to)) + x + startX + endX = DrawStringWidth(height, "VAR", strippedLabel:sub(range.from, range.to)) + x + startX last = range.to DrawImage(nil, startX, y, endX - startX, height) diff --git a/src/Classes/SearchHost.lua b/src/Classes/SearchHost.lua index 60a65e6408..e7c2463911 100644 --- a/src/Classes/SearchHost.lua +++ b/src/Classes/SearchHost.lua @@ -4,11 +4,12 @@ -- Search host -- -local SearchHostClass = newClass("SearchHost", function(self, listAccessor, valueAccessor) +local SearchHostClass = newClass("SearchHost", function(self, listAccessor, valueAccessor, ignoreOrder) self.searchListAccessor = listAccessor self.valueAccessor = valueAccessor self.searchTerm = "" self.searchInfos = {} + self.ignoreOrder = ignoreOrder or false end) local function splitWords(s) @@ -34,7 +35,7 @@ local function wordsToCaselessPatterns(words) return patterns end -local function matchWords(searchWords, entry, valueAccessor) +local function matchWords(searchWords, entry, valueAccessor, ignoreOrder) local value = valueAccessor and valueAccessor(entry) or entry local searchInfo = { ranges = {}, matches = true } local lastMatchEnd = 0 @@ -43,16 +44,35 @@ local function matchWords(searchWords, entry, valueAccessor) if (from) then local range = { from = from, to = to } table.insert(searchInfo.ranges, range) - lastMatchEnd = to + if not ignoreOrder then + lastMatchEnd = to + end else -- at least one search word did not match at least once (respecting order) searchInfo.matches = false end end + if ignoreOrder then + -- sort to be in left to right order + table.sort(searchInfo.ranges, function(a, b) + return a.from < b.from + end) + -- merge overlapping ranges + local i = 1 + while searchInfo.ranges[i] do + local this = searchInfo.ranges[i] + local next = searchInfo.ranges[i + 1] + if next and next.from <= this.to then + this.to = next.to + table.remove(searchInfo.ranges, i + 1) + end + i = i + 1 + end + end return searchInfo end -local function matchTerm(searchTerm, list, valueAccessor) +local function matchTerm(searchTerm, list, valueAccessor, ignoreOrder) if not searchTerm or searchTerm == "" or not list then return {} end @@ -60,7 +80,7 @@ local function matchTerm(searchTerm, list, valueAccessor) local searchInfos = {} local searchPatterns = wordsToCaselessPatterns(splitWords(searchTerm)) for idx, entry in ipairs(list) do - searchInfos[idx] = matchWords(searchPatterns, entry, valueAccessor) + searchInfos[idx] = matchWords(searchPatterns, entry, valueAccessor, ignoreOrder) end return searchInfos end @@ -110,7 +130,7 @@ end function SearchHostClass:UpdateSearch() if self.searchListAccessor then - self.searchInfos = matchTerm(self.searchTerm, self.searchListAccessor(), self.valueAccessor) + self.searchInfos = matchTerm(self.searchTerm, self.searchListAccessor(), self.valueAccessor, self.ignoreOrder) self:UpdateMatchCount() end end diff --git a/src/Classes/TradeHelpers.lua b/src/Classes/TradeHelpers.lua index 853404e285..be5292828e 100644 --- a/src/Classes/TradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -79,33 +79,6 @@ end local _optionTradeStatMap --- These option stats are still needed for legacy items, but are no longer --- included in the trade API's 3.29 stats response. -local legacyOptionTradeStats = { - { - type = "explicit", - id = "explicit.stat_2878779644", - text = "Grants Level 20 Summon Bestial # Skill", - options = { - { id = 1, text = "rhoa" }, - { id = 2, text = "ursa" }, - { id = 3, text = "snake" }, - }, - }, - { - type = "explicit", - id = "explicit.stat_3642528642", - text = "Only affects Passives in # Ring", - options = { - { id = 1, text = "small" }, - { id = 2, text = "medium" }, - { id = 3, text = "large" }, - { id = 4, text = "very large" }, - { id = 5, text = "massive" }, - }, - }, -} - ---@param tradeStats table table of data from https://www.pathofexile.com/api/trade2/data/stats ---@return table optionTradeStatMap table containing helper data for matching trade option filters local function getOptionTradeStatMap(tradeStats) @@ -139,14 +112,6 @@ local function getOptionTradeStatMap(tradeStats) end end end - for _, entry in ipairs(legacyOptionTradeStats) do - local matchKey = entry.text:gsub("#", "(.*)"):lower() - optionTradeStatMap.patterns[matchKey] = optionTradeStatMap.patterns[matchKey] or { - type = entry.type, - options = entry.options, - tradeId = entry.id, - } - end _optionTradeStatMap = optionTradeStatMap return _optionTradeStatMap diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 7564354cb4..2cc37a1679 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -120,6 +120,7 @@ local function getStatEntries(modType) ["Rune"] = "rune", ["HeartOfTheWell"] = "explicit", ["AgainstTheDarkness"] = "explicit", + ["pseudo"] = "pseudo", } if tradeStatCategoryIndices[modType] then for _, cat in ipairs(tradeStats) do @@ -1389,6 +1390,25 @@ Remove: %s will be removed from the search results.]], term, term, term) end end end + local pseudoStats = getStatEntries("pseudo") + -- map stats and such which are clearly not relevant here + local ignoredStats = { + "^pseudo.lake", + "^pseudo.pseudo_lake", + "^pseudo.pseudo_logbook", + "^pseudo.pseudo_temple", + "^pseudo.pseudo_map", + "^pseudo.pseudo_ritual", + } + for _, entry in ipairs(pseudoStats or {}) do + for _, ignored in ipairs(ignoredStats) do + if entry.id:find(ignored) then + goto pseudoContinue + end + end + t_insert(mods, { label = s_format("^7%s (Pseudo)", entry.text), tradeId = entry.id }) + ::pseudoContinue:: + end return mods end -- amount of mod selectors: technically we could have 40, but the more we have the fewer @@ -1430,7 +1450,7 @@ Remove: %s will be removed from the search results.]], term, term, term) selectedMods[i] = copyTable(val) end setModSelectors(controls) - end) + end, nil, true) dropdown.shown = function() return not not selectedMods[i - 1] or i == 1 end diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index dd4e1e966f..0dd8eb2df6 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -9838,6 +9838,19 @@ return { ["type"] = "implicit", }, }, + ["2245_ShockProliferation"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1640259660", + ["text"] = "Shocks you inflict spread to other Enemies within 1.5 metres", + ["type"] = "implicit", + }, + }, ["2604_SummonTotemCastSpeed"] = { ["Boots"] = { ["max"] = 15, @@ -10645,6 +10658,20 @@ return { ["type"] = "implicit", }, }, + ["5086_ManaCostEfficiencyUniquePresence"] = { + ["Helmet"] = { + ["max"] = 46, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4094153038", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Cost Efficiency", + ["type"] = "implicit", + }, + }, ["5320_EnduranceChargePerSecond"] = { ["Chest"] = { ["max"] = 15, @@ -22768,6 +22795,16 @@ return { ["type"] = "explicit", }, }, + ["1498_MineCritChanceForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_214031493", + ["text"] = "#% increased Critical Strike Chance with Mines", + ["type"] = "explicit", + }, + }, ["1499_TwoHandedCritChanceForJewel"] = { ["AnyJewel"] = { ["max"] = 18, @@ -23212,6 +23249,26 @@ return { ["type"] = "explicit", }, }, + ["1528_TrapCritMultiplierForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1780168381", + ["text"] = "+#% to Critical Strike Multiplier with Traps", + ["type"] = "explicit", + }, + }, + ["1529_MineCritMultiplierForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2529112796", + ["text"] = "+#% to Critical Strike Multiplier with Mines", + ["type"] = "explicit", + }, + }, ["1530_FireCritMultiplierForJewel"] = { ["AnyJewel"] = { ["max"] = 18, @@ -26047,7 +26104,7 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_771127912", + ["id"] = "explicit.stat_1559341337", ["text"] = "Lose # Life per second", ["type"] = "explicit", }, @@ -26057,7 +26114,7 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_771127912", + ["id"] = "explicit.stat_1559341337", ["text"] = "Lose # Life per second", ["type"] = "explicit", }, @@ -26067,7 +26124,7 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_771127912", + ["id"] = "explicit.stat_1559341337", ["text"] = "Lose # Life per second", ["type"] = "explicit", }, @@ -49230,6 +49287,15 @@ return { ["type"] = "explicit", }, }, + ["6083_DeepwaterSwordFlammability"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814785829", + ["text"] = "Melee Strikes Curse Enemies with Flammability on Hit, ignoring Curse Limit", + ["type"] = "explicit", + }, + }, ["6084_CurseDuration"] = { ["sign"] = "", ["specialCaseData"] = { @@ -50056,6 +50122,16 @@ return { ["type"] = "explicit", }, }, + ["652_DeepwaterSwordGrantedSkillGhostCannons"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1273709603", + ["text"] = "Trigger level # Ghostly Artillery when you Attack with this Weapon", + ["type"] = "explicit", + }, + }, ["6538_MaximumEnergyShieldOnKillPercentMaven"] = { ["Chest"] = { ["max"] = 10, @@ -50849,6 +50925,58 @@ return { ["type"] = "explicit", }, }, + ["6914_ChillingConfluxMaven"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1190121450|1", + ["text"] = "You have Chilling Conflux for 3 seconds every 8 seconds", + ["type"] = "explicit", + }, + }, + ["6914_IgnitingConfluxMaven"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1190121450|3", + ["text"] = "You have Igniting Conflux for 3 seconds every 8 seconds", + ["type"] = "explicit", + }, + }, + ["6914_ShockingConfluxMaven"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1190121450|2", + ["text"] = "You have Shocking Conflux for 3 seconds every 8 seconds", + ["type"] = "explicit", + }, + }, + ["6914_SingleConflux"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1190121450|1", + ["text"] = "You have Chilling Conflux for 3 seconds every 8 seconds", + ["type"] = "explicit", + }, + }, ["6922_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { ["specialCaseData"] = { }, @@ -51519,6 +51647,15 @@ return { ["type"] = "explicit", }, }, + ["7960_DeepwaterSwordAlwaysHit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_270993809", + ["text"] = "Always Hits Burning Enemies", + ["type"] = "explicit", + }, + }, ["7967_LocalIncreasedPhysicalDamageAndImpaleChance"] = { ["1HAxe"] = { ["max"] = 25, @@ -53422,6 +53559,16 @@ return { ["type"] = "explicit", }, }, + ["919_DeepwaterSwordMeleeDamageWhileBurning"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1353128245", + ["text"] = "#% more Melee Damage while Burning", + ["type"] = "explicit", + }, + }, ["921_FlaskCurseImmunity"] = { ["specialCaseData"] = { }, diff --git a/src/Data/TradeSiteStats.lua b/src/Data/TradeSiteStats.lua index 7418eb80e0..a27b573369 100644 --- a/src/Data/TradeSiteStats.lua +++ b/src/Data/TradeSiteStats.lua @@ -3261,6 +3261,11 @@ return { ["text"] = "#% chance in Heists for Items to drop with an additional Socket", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1764672620", + ["text"] = "#% chance in Heists for Jeweller's Orbs to drop as Chromatic Orbs instead", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_533969887", ["text"] = "#% chance in Heists for Jeweller's Orbs to drop as Orbs of Fusing instead", @@ -3896,6 +3901,11 @@ return { ["text"] = "#% chance to Trigger Commandment of Inferno on Critical Strike", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_764329137", + ["text"] = "#% chance to Trigger Explosive Toad when you kill an Enemy", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_205619502", ["text"] = "#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", @@ -4091,6 +4101,11 @@ return { ["text"] = "#% chance to avoid Projectiles if you've taken Projectile Damage Recently", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_729118116", + ["text"] = "#% chance to avoid Projectiles that have Chained", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2155467472", ["text"] = "#% chance to be inflicted with Bleeding when Hit by an Attack", @@ -4296,6 +4311,11 @@ return { ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1793331740", + ["text"] = "#% chance to gain Phasing on Hit with this weapon", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3562211447", ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", @@ -4306,6 +4326,11 @@ return { ["text"] = "#% chance to gain Unholy Might for 4 seconds on Critical Strike", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3682839745", + ["text"] = "#% chance to gain a Brine Charge instead of an Endurance Charge", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_108334292", ["text"] = "#% chance to gain a Divine Charge on Hit", @@ -4486,11 +4511,6 @@ return { ["text"] = "#% chance to gain a Spirit Charge on Kill", ["type"] = "explicit", }, - { - ["id"] = "explicit.stat_3682839745", - ["text"] = "#% chance to gain a [BrineCharges|Brine Charge] instead of an Endurance Charge", - ["type"] = "explicit", - }, { ["id"] = "explicit.stat_2542650946", ["text"] = "#% chance to gain an Endurance Charge on Critical Strike", @@ -5236,6 +5256,11 @@ return { ["text"] = "#% increased Attack Speed per Frenzy Charge", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1635906349", + ["text"] = "#% increased Attack Speed per socketed Searching Eye Jewel", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_4268321763", ["text"] = "#% increased Attack Speed when on Full Life", @@ -5911,6 +5936,11 @@ return { ["text"] = "#% increased Critical Strike Chance per Grand Spectrum", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1714168814", + ["text"] = "#% increased Critical Strike Chance per socketed Hypnotic Eye Jewel", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2620656067", ["text"] = "#% increased Critical Strike Chance while Physical Aegis is depleted", @@ -5961,6 +5991,11 @@ return { ["text"] = "#% increased Critical Strike Chance with Lightning Skills", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_214031493", + ["text"] = "#% increased Critical Strike Chance with Mines", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2381842786", ["text"] = "#% increased Critical Strike Chance with One Handed Melee Weapons", @@ -6021,6 +6056,11 @@ return { ["text"] = "#% increased Damage for each Poison on you up to a maximum of 75%", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1351682252", + ["text"] = "#% increased Damage for each Trap and Mine you have", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_154272030", ["text"] = "#% increased Damage for each type of Abyss Jewel affecting you", @@ -6756,6 +6796,11 @@ return { ["text"] = "#% increased Effect of Shrine Buffs on you", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1674759049", + ["text"] = "#% increased Effect of Shrine Buffs on you for each 5% of Life Reserved", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1482572705", ["text"] = "#% increased Effect of Socketed Abyss Jewels", @@ -7606,11 +7651,21 @@ return { ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2814910323", + ["text"] = "#% increased Mana Cost Efficiency for 2 seconds after Spending a total of 800 Mana", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2407942498", ["text"] = "#% increased Mana Cost Efficiency of Minion Skills", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1601265558", + ["text"] = "#% increased Mana Cost Efficiency of Skills which throw Traps or Mines", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1355915086", ["text"] = "#% increased Mana Cost Efficiency per 10 Devotion", @@ -7741,6 +7796,11 @@ return { ["text"] = "#% increased Mana Reservation Efficiency of Skills per 250 total Attributes", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2265342288", + ["text"] = "#% increased Mana Reservation Efficiency of Skills that throw Mines", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2227180465", ["text"] = "#% increased Mana Reservation of Skills", @@ -8196,6 +8256,11 @@ return { ["text"] = "#% increased Physical Damage per Endurance Charge", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3081449522", + ["text"] = "#% increased Physical Damage per socketed Murderous Eye Jewel", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3853018505", ["text"] = "#% increased Physical Damage taken", @@ -8471,6 +8536,11 @@ return { ["text"] = "#% increased Quantity of Vendor Refresh Currencies dropped by Monsters in your Maps", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2416650879", + ["text"] = "#% increased Rage Cost Efficiency", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3415234440", ["text"] = "#% increased Rage Cost of Skills", @@ -8891,6 +8961,11 @@ return { ["text"] = "#% increased Totem Damage per 10 Devotion", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2357996603", + ["text"] = "#% increased Totem Duration", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_686254215", ["text"] = "#% increased Totem Life", @@ -9386,6 +9461,16 @@ return { ["text"] = "#% more Damage with Arrow Hits not at Close Range", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1702492342", + ["text"] = "#% more Damage with Mines if one of your Traps has Triggered Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2513988000", + ["text"] = "#% more Damage with Traps if you have Detonated a Mine Recently", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1340524145", ["text"] = "#% more Divination Cards found from Beyond Demons in your Maps that are followers of K'Tash", @@ -9461,6 +9546,11 @@ return { ["text"] = "#% more Maximum Physical Attack Damage", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1353128245", + ["text"] = "#% more Melee Damage while Burning", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3636096208", ["text"] = "#% more Melee Physical Damage during effect", @@ -11996,6 +12086,11 @@ return { ["text"] = "+# to Level of all Malevolence Gems", ["type"] = "explicit", }, + { + ["id"] = "explicit.indexable_skill_287", + ["text"] = "+# to Level of all Mana-Infused Staff Gems", + ["type"] = "explicit", + }, { ["id"] = "explicit.indexable_skill_256", ["text"] = "+# to Level of all Manabond Gems", @@ -12521,6 +12616,11 @@ return { ["text"] = "+# to Level of all Unearth Gems", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_4180346416", + ["text"] = "+# to Level of all Vaal Skill Gems", + ["type"] = "explicit", + }, { ["id"] = "explicit.indexable_skill_266", ["text"] = "+# to Level of all Vampiric Link Gems", @@ -13686,11 +13786,21 @@ return { ["text"] = "+#% to Critical Strike Multiplier with Lightning Skills", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2529112796", + ["text"] = "+#% to Critical Strike Multiplier with Mines", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_670153687", ["text"] = "+#% to Critical Strike Multiplier with One Handed Melee Weapons", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1780168381", + ["text"] = "+#% to Critical Strike Multiplier with Traps", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_252507949", ["text"] = "+#% to Critical Strike Multiplier with Two Handed Melee Weapons", @@ -15801,6 +15911,11 @@ return { ["text"] = "Abyss Pits in your Maps have #% chance to spawn all Monsters as at least Magic for each prior Pit closed", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1927544133", + ["text"] = "Abyss Pits in your Maps spawn #% increased Monsters for each prior Pit closed", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1028265433", ["text"] = "Abyssal Troves and Stygian Spires in your Maps have #% chance to drop an Abyss Scarab", @@ -16646,6 +16761,16 @@ return { ["text"] = "All Damage can Ignite", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2899274448", + ["text"] = "All Damage from Critical Strikes can apply Cold Ailments during effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1807432231", + ["text"] = "All Damage from Critical Strikes can apply Lightning Ailments during effect", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3669353918", ["text"] = "All Damage from Monsters' Hits can Freeze", @@ -18176,6 +18301,16 @@ return { ["text"] = "Allocates Unflinching if you have the matching modifier on Forbidden Flesh", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2460506030|5502", + ["text"] = "Allocates Unhallowed Rite if you have the matching modifier on Forbidden Flame", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1190333629|5502", + ["text"] = "Allocates Unhallowed Rite if you have the matching modifier on Forbidden Flesh", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2460506030|31344", ["text"] = "Allocates Unholy Authority if you have the matching modifier on Forbidden Flame", @@ -18396,6 +18531,11 @@ return { ["text"] = "Allocates Worthy Foe if you have the matching modifier on Forbidden Flesh", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_270993809", + ["text"] = "Always Hits Burning Enemies", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2499038519", ["text"] = "Always Sap while affected by Wrath", @@ -18571,6 +18711,11 @@ return { ["text"] = "Area contains 3 additional Magic Packs which have #% increased Attack, Cast and Movement Speed, and drop #% more items", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3187151138|3", + ["text"] = "Area contains Alva", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_25225034", ["text"] = "Area contains Drowning Orbs", @@ -18806,6 +18951,11 @@ return { ["text"] = "Area contains an Uul-Netol Breach", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1070816711", + ["text"] = "Area contains an additional Abyss", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2270693644", ["text"] = "Area contains an additional Clutching Talisman", @@ -18911,11 +19061,6 @@ return { ["text"] = "Area contains an additional Wild Harvest Boss", ["type"] = "explicit", }, - { - ["id"] = "explicit.stat_1070816711", - ["text"] = "Area contains an additional [ContainsAbyss|Abyss]", - ["type"] = "explicit", - }, { ["id"] = "explicit.stat_1612402470", ["text"] = "Area contains an additional guarded Exquisite Vaal Vessel", @@ -19816,11 +19961,21 @@ return { ["text"] = "Beyond Portals in your Maps have #% more Merging Radius", ["type"] = "explicit", }, + { + ["id"] = "explicit.pseudo_timeless_jewel_zorath", + ["text"] = "Binding # souls to phylacteries to sustain Zorath", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3604585015", ["text"] = "Bismuth Ore Deposits in your Maps have #% chance to add an additional Modifier to Monsters they affect", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3898949460", + ["text"] = "Bitter Frost", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3425389359", ["text"] = "Blacksmith's Whetstones found in your Maps have #% chance to drop as a full stack", @@ -21176,6 +21331,11 @@ return { ["text"] = "Currency Shards dropped by Harbingers in your Maps can drop as Currency Items instead", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3840847348", + ["text"] = "Curse Aura Skills reserve Life instead of Mana", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2965611853", ["text"] = "Curse Auras from Socketed Skills also affect you", @@ -21256,6 +21416,11 @@ return { ["text"] = "Curse Non-Cursed Enemies with Enfeeble on Hit", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2280341859", + ["text"] = "Curse Skills cost Life instead of Mana", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2378065031", ["text"] = "Curse Skills have #% increased Cast Speed", @@ -23476,6 +23641,11 @@ return { ["text"] = "Gain a Void Charge every # seconds", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1758488586", + ["text"] = "Gain a random Blood Shrine buff every 1 second", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3493440964", ["text"] = "Gain a random Shrine Buff for # seconds when you Kill a Rare or Unique Enemy", @@ -23816,11 +23986,31 @@ return { ["text"] = "Grants Level # Approaching Flames Skill", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1094971653", + ["text"] = "Grants Level # Aspect of Arakaali Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_937577116", + ["text"] = "Grants Level # Aspect of Lunaris Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4280547417", + ["text"] = "Grants Level # Aspect of Solaris Skill", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3914740665", ["text"] = "Grants Level # Aspect of the Avian Skill", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3054487153", + ["text"] = "Grants Level # Aspect of the Brine King Skill", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1265282021", ["text"] = "Grants Level # Aspect of the Cat Skill", @@ -24106,6 +24296,11 @@ return { ["text"] = "Grants Level # Ravenous Skill", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_4009462747", + ["text"] = "Grants Level # Savage Barnacle", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1540840", ["text"] = "Grants Level # Scorching Ray Skill", @@ -24201,6 +24396,21 @@ return { ["text"] = "Grants Level # Zealotry Skill", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2878779644|1", + ["text"] = "Grants Level 20 Summon Bestial Rhoa Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2878779644|3", + ["text"] = "Grants Level 20 Summon Bestial Snake Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2878779644|2", + ["text"] = "Grants Level 20 Summon Bestial Ursa Skill", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_367775264", ["text"] = "Grants Level 20 Summon Shaper Memory Grants Level 20 Shaper's Devastation, which will be used by Shaper Memory", @@ -24216,6 +24426,66 @@ return { ["text"] = "Grants Perfect Agony during effect", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3872739249|12", + ["text"] = "Grants Summon Greater Harbinger of Brutality Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872739249|10", + ["text"] = "Grants Summon Greater Harbinger of Directions Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872739249|9", + ["text"] = "Grants Summon Greater Harbinger of Focus Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872739249|11", + ["text"] = "Grants Summon Greater Harbinger of Storms Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872739249|8", + ["text"] = "Grants Summon Greater Harbinger of Time Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872739249|7", + ["text"] = "Grants Summon Greater Harbinger of the Arcane Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872739249|6", + ["text"] = "Grants Summon Harbinger of Brutality Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872739249|4", + ["text"] = "Grants Summon Harbinger of Directions Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872739249|3", + ["text"] = "Grants Summon Harbinger of Focus Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872739249|5", + ["text"] = "Grants Summon Harbinger of Storms Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872739249|2", + ["text"] = "Grants Summon Harbinger of Time Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3872739249|1", + ["text"] = "Grants Summon Harbinger of the Arcane Skill", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3081454623", ["text"] = "Grants a random Divination Buff for # seconds when Used", @@ -25341,6 +25611,11 @@ return { ["text"] = "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_4091694419", + ["text"] = "Increases and Reductions to your Evasion Rating also apply to your Spell Damage", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_103999915", ["text"] = "Increases to Cast Speed from Arcane Surge also applies to Movement Speed", @@ -26046,6 +26321,11 @@ return { ["text"] = "Lone Messenger", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1559341337", + ["text"] = "Lose # Life per second", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_771127912", ["text"] = "Lose # Life per second", @@ -26646,6 +26926,11 @@ return { ["text"] = "Melee Strike Skills deal Splash Damage to surrounding targets, with #% reduced Area of Effect", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3814785829", + ["text"] = "Melee Strikes Curse Enemies with Flammability on Hit, ignoring Curse Limit", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_802532569", ["text"] = "Melee Weapon Attacks have Culling Strike", @@ -26961,6 +27246,11 @@ return { ["text"] = "Minions have #% chance to Ignite", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2415223729", + ["text"] = "Minions have #% chance to Impale on Attack Hit per socketed Ghastly Eye Jewel", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2138548436", ["text"] = "Minions have #% chance to Maim Enemies on Hit with Attacks", @@ -27421,6 +27711,16 @@ return { ["text"] = "Monsters can only be Damaged while within # metres of a Player Players' modifiers to Light Radius also apply to this range", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_4136294199", + ["text"] = "Monsters cannot Block your Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_870219767", + ["text"] = "Monsters cannot Suppress your Spells", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1140978125", ["text"] = "Monsters cannot be Leeched from", @@ -27436,6 +27736,11 @@ return { ["text"] = "Monsters cannot be Taunted", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1455353008", + ["text"] = "Monsters cannot steal your Power, Frenzy or Endurance charges on Hit", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3448216135", ["text"] = "Monsters deal #% extra Physical Damage as Cold", @@ -28321,6 +28626,31 @@ return { ["text"] = "Only # Portal is opened to each of your Maps", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3642528642|3", + ["text"] = "Only affects Passives in Large Ring", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3642528642|5", + ["text"] = "Only affects Passives in Massive Ring", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3642528642|2", + ["text"] = "Only affects Passives in Medium Ring", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3642528642|1", + ["text"] = "Only affects Passives in Small Ring", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3642528642|4", + ["text"] = "Only affects Passives in Very Large Ring", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3418377329", ["text"] = "Only opens # Portal to Area", @@ -28391,6 +28721,21 @@ return { ["text"] = "Overwhelm #% Physical Damage Reduction", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3129228821", + ["text"] = "Pact Skills grant Boons instead of Afflictions", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3120620173", + ["text"] = "Pact Skills have #% increased Cast Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1144742318", + ["text"] = "Pact Skills have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_98977150", ["text"] = "Pain Attunement", @@ -28501,6 +28846,11 @@ return { ["text"] = "Passive Skills in Radius of Avatar of Fire can be Allocated without being connected to your tree Passage", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2422708892|12128", + ["text"] = "Passive Skills in Radius of Bitter Frost can be Allocated without being connected to your tree Passage", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2422708892|57279", ["text"] = "Passive Skills in Radius of Blood Magic can be Allocated without being connected to your tree Passage", @@ -28646,6 +28996,11 @@ return { ["text"] = "Passive Skills in Radius of Resolute Technique can be Allocated without being connected to your tree Passage", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2422708892|40351", + ["text"] = "Passive Skills in Radius of Roiling Tempest can be Allocated without being connected to your tree Passage", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2422708892|42343", ["text"] = "Passive Skills in Radius of Runebinder can be Allocated without being connected to your tree Passage", @@ -28686,6 +29041,11 @@ return { ["text"] = "Passive Skills in Radius of Versatile Combatant can be Allocated without being connected to your tree Passage", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2422708892|63903", + ["text"] = "Passive Skills in Radius of Voracious Flame can be Allocated without being connected to your tree Passage", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2422708892|23950", ["text"] = "Passive Skills in Radius of Wicked Ward can be Allocated without being connected to your tree Passage", @@ -28876,6 +29236,11 @@ return { ["text"] = "Petrified during Effect", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_489372526", + ["text"] = "Physical Damage Reduction is zero", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2424163939", ["text"] = "Physical Damage of Enemies Hitting you is Lucky", @@ -29932,18 +30297,18 @@ return { ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2220602676", - ["text"] = "Rare Monsters have Essence effects", + ["id"] = "explicit.stat_3938822425", + ["text"] = "Rare Monsters have Elemental Thorns reflecting # Elemental Damage", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3938822425", - ["text"] = "Rare Monsters have [ElementalThorns|Elemental Thorns] reflecting # Elemental Damage", + ["id"] = "explicit.stat_2220602676", + ["text"] = "Rare Monsters have Essence effects", ["type"] = "explicit", }, { ["id"] = "explicit.stat_3278889477", - ["text"] = "Rare Monsters have [PhysicalThorns|Physical Thorns] reflecting # Physical Damage", + ["text"] = "Rare Monsters have Physical Thorns reflecting # Physical Damage", ["type"] = "explicit", }, { @@ -30901,6 +31266,11 @@ return { ["text"] = "Rogue's Markers, Contracts and Blueprints cannot be found in Your Maps", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2903189090", + ["text"] = "Roiling Tempest", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_4080245957", ["text"] = "Runebinder", @@ -31371,6 +31741,1711 @@ return { ["text"] = "Skills Fire # additional Projectile for 4 seconds after you consume a total of 8 Steel Shards", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_4089743927|3|125", + ["text"] = "Skills Socketed in your Boots are Supported by level # Added Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|124", + ["text"] = "Skills Socketed in your Boots are Supported by level # Added Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|6", + ["text"] = "Skills Socketed in your Boots are Supported by level # Advanced Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|14", + ["text"] = "Skills Socketed in your Boots are Supported by level # Ancestral Call", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|121", + ["text"] = "Skills Socketed in your Boots are Supported by level # Arcane Surge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|120", + ["text"] = "Skills Socketed in your Boots are Supported by level # Archmage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|114", + ["text"] = "Skills Socketed in your Boots are Supported by level # Arrogance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|26", + ["text"] = "Skills Socketed in your Boots are Supported by level # Ballista Totem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|137", + ["text"] = "Skills Socketed in your Boots are Supported by level # Behead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|117", + ["text"] = "Skills Socketed in your Boots are Supported by level # Blasphemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|22", + ["text"] = "Skills Socketed in your Boots are Supported by level # Blastchain Mine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|162", + ["text"] = "Skills Socketed in your Boots are Supported by level # Blessed Call", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|116", + ["text"] = "Skills Socketed in your Boots are Supported by level # Blind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|115", + ["text"] = "Skills Socketed in your Boots are Supported by level # Bloodlust", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|132", + ["text"] = "Skills Socketed in your Boots are Supported by level # Bloodthirst", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|113", + ["text"] = "Skills Socketed in your Boots are Supported by level # Bonechill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|112", + ["text"] = "Skills Socketed in your Boots are Supported by level # Brutality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|67", + ["text"] = "Skills Socketed in your Boots are Supported by level # Burning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|111", + ["text"] = "Skills Socketed in your Boots are Supported by level # Cast On Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|108", + ["text"] = "Skills Socketed in your Boots are Supported by level # Cast on Melee Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|110", + ["text"] = "Skills Socketed in your Boots are Supported by level # Cast when Damage Taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|107", + ["text"] = "Skills Socketed in your Boots are Supported by level # Cast when Stunned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|106", + ["text"] = "Skills Socketed in your Boots are Supported by level # Cast while Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|105", + ["text"] = "Skills Socketed in your Boots are Supported by level # Chain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|104", + ["text"] = "Skills Socketed in your Boots are Supported by level # Chance to Bleed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|80", + ["text"] = "Skills Socketed in your Boots are Supported by level # Chance to Flee", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|101", + ["text"] = "Skills Socketed in your Boots are Supported by level # Charged Mines", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|77", + ["text"] = "Skills Socketed in your Boots are Supported by level # Charged Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|100", + ["text"] = "Skills Socketed in your Boots are Supported by level # Close Combat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|98", + ["text"] = "Skills Socketed in your Boots are Supported by level # Cold Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|97", + ["text"] = "Skills Socketed in your Boots are Supported by level # Cold to Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|96", + ["text"] = "Skills Socketed in your Boots are Supported by level # Concentrated Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|158", + ["text"] = "Skills Socketed in your Boots are Supported by level # Controlled Blaze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|95", + ["text"] = "Skills Socketed in your Boots are Supported by level # Controlled Destruction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|151", + ["text"] = "Skills Socketed in your Boots are Supported by level # Corrupting Cry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|46", + ["text"] = "Skills Socketed in your Boots are Supported by level # Damage on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|92", + ["text"] = "Skills Socketed in your Boots are Supported by level # Deadly Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|91", + ["text"] = "Skills Socketed in your Boots are Supported by level # Decay", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|90", + ["text"] = "Skills Socketed in your Boots are Supported by level # Efficacy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|89", + ["text"] = "Skills Socketed in your Boots are Supported by level # Elemental Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|88", + ["text"] = "Skills Socketed in your Boots are Supported by level # Elemental Proliferation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|87", + ["text"] = "Skills Socketed in your Boots are Supported by level # Endurance Charge on Melee Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|86", + ["text"] = "Skills Socketed in your Boots are Supported by level # Energy Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|140", + ["text"] = "Skills Socketed in your Boots are Supported by level # Eternal Blessing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|161", + ["text"] = "Skills Socketed in your Boots are Supported by level # Excommunicate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|159", + ["text"] = "Skills Socketed in your Boots are Supported by level # Expert Retaliation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|85", + ["text"] = "Skills Socketed in your Boots are Supported by level # Faster Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|84", + ["text"] = "Skills Socketed in your Boots are Supported by level # Faster Casting", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|83", + ["text"] = "Skills Socketed in your Boots are Supported by level # Faster Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|82", + ["text"] = "Skills Socketed in your Boots are Supported by level # Feeding Frenzy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|81", + ["text"] = "Skills Socketed in your Boots are Supported by level # Fire Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|127", + ["text"] = "Skills Socketed in your Boots are Supported by level # Fist of War", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|150", + ["text"] = "Skills Socketed in your Boots are Supported by level # Flamewood", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|160", + ["text"] = "Skills Socketed in your Boots are Supported by level # Focused Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|79", + ["text"] = "Skills Socketed in your Boots are Supported by level # Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|149", + ["text"] = "Skills Socketed in your Boots are Supported by level # Fresh Meat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|76", + ["text"] = "Skills Socketed in your Boots are Supported by level # Generosity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|164", + ["text"] = "Skills Socketed in your Boots are Supported by level # Hallow", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|93", + ["text"] = "Skills Socketed in your Boots are Supported by level # Hextouch", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|73", + ["text"] = "Skills Socketed in your Boots are Supported by level # Hypothermia", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|71", + ["text"] = "Skills Socketed in your Boots are Supported by level # Ignite Proliferation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|70", + ["text"] = "Skills Socketed in your Boots are Supported by level # Immolate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|68", + ["text"] = "Skills Socketed in your Boots are Supported by level # Increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|66", + ["text"] = "Skills Socketed in your Boots are Supported by level # Increased Critical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|65", + ["text"] = "Skills Socketed in your Boots are Supported by level # Increased Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|60", + ["text"] = "Skills Socketed in your Boots are Supported by level # Infernal Legion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|59", + ["text"] = "Skills Socketed in your Boots are Supported by level # Innervate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|23", + ["text"] = "Skills Socketed in your Boots are Supported by level # Inspiration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|16", + ["text"] = "Skills Socketed in your Boots are Supported by level # Intensify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|58", + ["text"] = "Skills Socketed in your Boots are Supported by level # Iron Grip", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|57", + ["text"] = "Skills Socketed in your Boots are Supported by level # Iron Will", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|51", + ["text"] = "Skills Socketed in your Boots are Supported by level # Life Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|134", + ["text"] = "Skills Socketed in your Boots are Supported by level # Lifetap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|50", + ["text"] = "Skills Socketed in your Boots are Supported by level # Lightning Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|156", + ["text"] = "Skills Socketed in your Boots are Supported by level # Locus Mine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|49", + ["text"] = "Skills Socketed in your Boots are Supported by level # Maim", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|144", + ["text"] = "Skills Socketed in your Boots are Supported by level # Manaforged Arrows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|138", + ["text"] = "Skills Socketed in your Boots are Supported by level # Mark On Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|45", + ["text"] = "Skills Socketed in your Boots are Supported by level # Melee Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|44", + ["text"] = "Skills Socketed in your Boots are Supported by level # Melee Splash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|63", + ["text"] = "Skills Socketed in your Boots are Supported by level # Minion Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|62", + ["text"] = "Skills Socketed in your Boots are Supported by level # Minion Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|61", + ["text"] = "Skills Socketed in your Boots are Supported by level # Minion Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|42", + ["text"] = "Skills Socketed in your Boots are Supported by level # Mirage Archer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|64", + ["text"] = "Skills Socketed in your Boots are Supported by level # More Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|54", + ["text"] = "Skills Socketed in your Boots are Supported by level # Multiple Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|39", + ["text"] = "Skills Socketed in your Boots are Supported by level # Multiple Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|38", + ["text"] = "Skills Socketed in your Boots are Supported by level # Multiple Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|40", + ["text"] = "Skills Socketed in your Boots are Supported by level # Multistrike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|141", + ["text"] = "Skills Socketed in your Boots are Supported by level # Overcharge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|33", + ["text"] = "Skills Socketed in your Boots are Supported by level # Physical to Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|32", + ["text"] = "Skills Socketed in your Boots are Supported by level # Pierce", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|130", + ["text"] = "Skills Socketed in your Boots are Supported by level # Pinpoint", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|29", + ["text"] = "Skills Socketed in your Boots are Supported by level # Power Charge On Critical", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|28", + ["text"] = "Skills Socketed in your Boots are Supported by level # Pulverise", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|27", + ["text"] = "Skills Socketed in your Boots are Supported by level # Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|145", + ["text"] = "Skills Socketed in your Boots are Supported by level # Returning Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|139", + ["text"] = "Skills Socketed in your Boots are Supported by level # Rupture", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|20", + ["text"] = "Skills Socketed in your Boots are Supported by level # Ruthless", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|17", + ["text"] = "Skills Socketed in your Boots are Supported by level # Spell Cascade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|41", + ["text"] = "Skills Socketed in your Boots are Supported by level # Spell Echo", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|15", + ["text"] = "Skills Socketed in your Boots are Supported by level # Spell Totem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|147", + ["text"] = "Skills Socketed in your Boots are Supported by level # Spellblade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|12", + ["text"] = "Skills Socketed in your Boots are Supported by level # Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|10", + ["text"] = "Skills Socketed in your Boots are Supported by level # Summon Phantasm", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|9", + ["text"] = "Skills Socketed in your Boots are Supported by level # Swift Assembly", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|8", + ["text"] = "Skills Socketed in your Boots are Supported by level # Trap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|7", + ["text"] = "Skills Socketed in your Boots are Supported by level # Trap and Mine Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|131", + ["text"] = "Skills Socketed in your Boots are Supported by level # Trinity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|5", + ["text"] = "Skills Socketed in your Boots are Supported by level # Unbound Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|4", + ["text"] = "Skills Socketed in your Boots are Supported by level # Unleash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|2", + ["text"] = "Skills Socketed in your Boots are Supported by level # Void Manipulation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|152", + ["text"] = "Skills Socketed in your Boots are Supported by level # Volatility", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|35", + ["text"] = "Skills Socketed in your Boots are Supported by level # Volley", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|126", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Added Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|125", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Added Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|124", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Added Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|6", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Advanced Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|14", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Ancestral Call", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|121", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Arcane Surge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|114", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Arrogance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|119", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Arrow Nova", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|26", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Ballista Totem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|118", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Barrage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|137", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Behead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|117", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Blasphemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|22", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Blastchain Mine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|162", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Blessed Call", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|116", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Blind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|115", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Bloodlust", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|112", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Brutality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|67", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Burning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|109", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Cast on Death", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|108", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Cast on Melee Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|107", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Cast when Stunned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|106", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Cast while Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|105", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Chain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|53", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Chance to Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|101", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Charged Mines", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|77", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Charged Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|100", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Close Combat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|99", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Cluster Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|98", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Cold Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|97", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Cold to Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|103", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Combustion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|158", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Controlled Blaze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|95", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Controlled Destruction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|133", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Cruelty", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|94", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|142", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Cursed Ground", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|46", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Damage on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|92", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Deadly Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|148", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Devour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|90", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Efficacy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|11", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Elemental Army", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|75", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Elemental Damage with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|89", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Elemental Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|88", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Elemental Proliferation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|87", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Endurance Charge on Melee Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|161", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Excommunicate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|163", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Exemplar", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|84", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Faster Casting", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|83", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Faster Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|150", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Flamewood", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|135", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Focused Ballista", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|79", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|149", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Fresh Meat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|164", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Hallow", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|143", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Hex Bloom", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|93", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Hextouch", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|21", + ["text"] = "Skills Socketed in your Gloves are Supported by level # High-Impact Mine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|72", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Ice Bite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|71", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Ignite Proliferation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|70", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Immolate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|69", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Impale", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|68", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|66", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Increased Critical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|65", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Increased Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|59", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Innervate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|23", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Inspiration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|16", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Intensify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|58", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Iron Grip", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|57", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Iron Will", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|56", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Item Rarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|55", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Knockback", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|24", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Less Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|52", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Life Gain on Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|134", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Lifetap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|49", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Maim", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|48", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Mana Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|144", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Manaforged Arrows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|138", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Mark On Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|47", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Meat Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|45", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Melee Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|44", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Melee Splash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|43", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Minefield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|42", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Mirage Archer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|64", + ["text"] = "Skills Socketed in your Gloves are Supported by level # More Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|39", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Multiple Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|40", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Multistrike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|37", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Nightblade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|141", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Overcharge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|136", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Overexertion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|33", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Physical to Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|130", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Pinpoint", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|29", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Power Charge On Critical", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|139", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Rupture", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|20", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Ruthless", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|17", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Spell Cascade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|41", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Spell Echo", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|15", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Spell Totem", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|147", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Spellblade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|12", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|25", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Swift Affliction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|9", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Swift Assembly", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|128", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Swiftbrand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|8", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Trap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|131", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Trinity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|4", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Unleash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|129", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Urgent Orders", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|34", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Vicious Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|2", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Void Manipulation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|35", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Volley", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|102", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Withering Touch", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|126", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Added Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|125", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Added Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|124", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Added Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|123", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Added Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|6", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Advanced Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|14", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Ancestral Call", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|121", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Arcane Surge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|120", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Archmage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|119", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Arrow Nova", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|118", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Barrage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|137", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Behead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|117", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Blasphemy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|162", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Blessed Call", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|116", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Blind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|115", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Bloodlust", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|132", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Bloodthirst", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|113", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Bonechill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|112", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Brutality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|67", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Burning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|111", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Cast On Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|108", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Cast on Melee Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|106", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Cast while Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|105", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Chain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|104", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Chance to Bleed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|80", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Chance to Flee", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|101", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Charged Mines", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|99", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Cluster Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|98", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Cold Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|97", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Cold to Fire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|96", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Concentrated Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|158", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Controlled Blaze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|95", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Controlled Destruction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|151", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Corrupting Cry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|133", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Cruelty", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|94", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|46", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Damage on Full Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|92", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Deadly Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|91", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Decay", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|148", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Devour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|90", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Efficacy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|11", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Elemental Army", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|75", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Elemental Damage with Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|89", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Elemental Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|161", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Excommunicate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|159", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Expert Retaliation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|85", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Faster Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|84", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Faster Casting", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|83", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Faster Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|82", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Feeding Frenzy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|81", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Fire Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|127", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Fist of War", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|150", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Flamewood", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|79", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|78", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Fortify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|1", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Greater Multiple Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|153", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Guardian's Blessing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|164", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Hallow", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|143", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Hex Bloom", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|93", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Hextouch", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|73", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Hypothermia", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|72", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Ice Bite", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|71", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Ignite Proliferation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|69", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Impale", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|68", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|66", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Increased Critical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|65", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Increased Critical Strikes", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|13", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Infused Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|59", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Innervate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|23", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Inspiration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|16", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Intensify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|57", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Iron Will", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|56", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Item Rarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|55", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Knockback", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|24", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Less Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|51", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Life Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|134", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Lifetap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|50", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Lightning Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|156", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Locus Mine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|48", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Mana Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|144", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Manaforged Arrows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|138", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Mark On Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|47", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Meat Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|44", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Melee Splash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|61", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Minion Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|42", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Mirage Archer", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|64", + ["text"] = "Skills Socketed in your Helmet are Supported by level # More Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|54", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Multiple Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|39", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Multiple Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|38", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Multiple Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|37", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Nightblade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|33", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Physical to Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|32", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Pierce", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|29", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Power Charge On Critical", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|28", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Pulverise", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|27", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|20", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Ruthless", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|154", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Sacrifice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|157", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Sadism", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|19", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Second Wind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|17", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Spell Cascade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|41", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Spell Echo", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|147", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Spellblade", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|12", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|10", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Summon Phantasm", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|25", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Swift Affliction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|8", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Trap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|7", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Trap and Mine Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|146", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Trauma", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|131", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Trinity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|4", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Unleash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|129", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Urgent Orders", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|34", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Vicious Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|3", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Vile Toxins", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|2", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Void Manipulation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|152", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Volatility", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|35", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Volley", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|102", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Withering Touch", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1504513372", ["text"] = "Skills Supported by Unleash have #% increased Seal gain frequency", @@ -31421,6 +33496,511 @@ return { ["text"] = "Skills gain a Base Life Cost equal to #% of Base Mana Cost", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_4089743927|4|126", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Added Chaos Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|125", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Added Cold Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|122", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Additional Accuracy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|6", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Advanced Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|14", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Ancestral Call", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|114", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Arrogance", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|118", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Barrage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|137", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Behead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|22", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Blastchain Mine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|162", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Blessed Call", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|116", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Blind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|115", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Bloodlust", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|132", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Bloodthirst", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|113", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Bonechill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|112", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Brutality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|67", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Burning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|111", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Cast On Critical Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|108", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Cast on Melee Kill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|107", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Cast when Stunned", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|106", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Cast while Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|105", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Chain", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|53", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Chance to Poison", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|101", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Charged Mines", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|100", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Close Combat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|99", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Cluster Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|103", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Combustion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|96", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Concentrated Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|158", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Controlled Blaze", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|95", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Controlled Destruction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|151", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Corrupting Cry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|30", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Critical Strike Affliction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|133", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Cruelty", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|94", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|92", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Deadly Ailments", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|91", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Decay", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|148", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Devour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|90", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Efficacy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|11", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Elemental Army", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|89", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Elemental Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|88", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Elemental Proliferation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|87", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Endurance Charge on Melee Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|86", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Energy Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|140", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Eternal Blessing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|161", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Excommunicate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|163", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Exemplar", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|85", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Faster Attacks", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|82", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Feeding Frenzy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|81", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Fire Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|127", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Fist of War", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|150", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Flamewood", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|160", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Focused Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|79", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|78", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Fortify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|149", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Fresh Meat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|155", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Frigid Bond", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|76", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Generosity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|1", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Greater Multiple Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|153", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Guardian's Blessing", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|21", + ["text"] = "Skills granted by your Passive Tree are Supported by level # High-Impact Mine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|71", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Ignite Proliferation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|70", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Immolate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|68", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Increased Area of Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|66", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Increased Critical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|60", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Infernal Legion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|13", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Infused Channelling", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|16", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Intensify", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|58", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Iron Grip", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|55", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Knockback", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|24", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Less Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|134", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Lifetap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|48", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Mana Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|144", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Manaforged Arrows", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|138", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Mark On Hit", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|47", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Meat Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|45", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Melee Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|44", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Melee Splash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|43", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Minefield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|63", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Minion Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|62", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Minion Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|64", + ["text"] = "Skills granted by your Passive Tree are Supported by level # More Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|54", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Multiple Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|39", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Multiple Totems", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|141", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Overcharge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|33", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Physical to Lightning", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|31", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Point Blank", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|28", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Pulverise", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|27", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|145", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Returning Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|139", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Rupture", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|20", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Ruthless", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|154", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Sacrifice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|19", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Second Wind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|18", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Slower Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|12", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|25", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Swift Affliction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|128", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Swiftbrand", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|8", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Trap", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|131", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Trinity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|4", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Unleash", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|2", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Void Manipulation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|35", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Volley", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3528761893", ["text"] = "Skills have +#% to Critical Strike Chance for each Warcry Exerting them", @@ -31451,6 +34031,11 @@ return { ["text"] = "Skills used by Spectral Totems deal #% more Damage", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1372249491", + ["text"] = "Skills used by Traps and Mines have #% increased Area of Effect", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_4050593908", ["text"] = "Skills used by Traps have #% increased Area of Effect", @@ -32311,6 +34896,11 @@ return { ["text"] = "Socketed Gems are Supported by Level # Combustion", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_961135393", + ["text"] = "Socketed Gems are Supported by Level # Combustion", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_991044906", ["text"] = "Socketed Gems are Supported by Level # Communion", @@ -33996,6 +36586,11 @@ return { ["text"] = "Socketed Slam Gems are Supported by Level 25 Earthbreaker", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3361806635", + ["text"] = "Socketed Spells are Supported by level # Crab Totem", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1688834903", ["text"] = "Socketed Spells have #% reduced Mana Cost", @@ -34281,6 +36876,26 @@ return { ["text"] = "Stun Threshold is based on Energy Shield instead of Life", ["type"] = "explicit", }, + { + ["id"] = "explicit.pseudo_timeless_jewel_amanamu", + ["text"] = "Subjugating # souls in the thrall of Amanamu", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_kurgal", + ["text"] = "Subjugating # souls in the thrall of Kurgal", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_tecrod", + ["text"] = "Subjugating # souls in the thrall of Tecrod", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.pseudo_timeless_jewel_ulaman", + ["text"] = "Subjugating # souls in the thrall of Ulaman", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3464137628", ["text"] = "Suffixes Cannot Be Changed", @@ -34686,6 +37301,11 @@ return { ["text"] = "The Effect of Chill on you is reversed", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3440719546", + ["text"] = "The Effect of Chill on you is reversed while on Chilled ground", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_4070390513", ["text"] = "The Grey Wind Howls used by this Graft also grants #% chance to Avoid Elemental Ailments", @@ -34786,6 +37406,11 @@ return { ["text"] = "Throw an additional Mine", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2130824945", + ["text"] = "Throw up to # additional Trap if dual wielding", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_51196661", ["text"] = "Tier 1-15 Maps found have #% chance to become 1 tier higher", @@ -34886,6 +37511,11 @@ return { ["text"] = "Totems gain +#% to all Elemental Resistances", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1778855371", + ["text"] = "Totems have #% increased Movement Speed", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_4016251064", ["text"] = "Totems which would be killed by Enemies become Spectral Totems for # seconds instead", @@ -35196,6 +37826,11 @@ return { ["text"] = "Trigger level # Ceaseless Flesh once every second", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1273709603", + ["text"] = "Trigger level # Ghostly Artillery when you Attack with this Weapon", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1925643497", ["text"] = "Trigger level 20 Suspend in Time on Casting a Spell", @@ -35901,6 +38536,11 @@ return { ["text"] = "Voltaxic Sulphite Veins and Chests in your Maps have #% chance to contain double Sulphite", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3458351769", + ["text"] = "Voracious Flame", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1798031916", ["text"] = "Vulnerability has #% reduced Reservation if Cast as an Aura", @@ -36676,6 +39316,11 @@ return { ["text"] = "You always Ignite while Burning", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_790453126", + ["text"] = "You and Allies near your Banner have +#% to Damage over Time Multiplier per 2 Valour consumed for that Banner", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_113536037", ["text"] = "You and Enemies in your Presence count as moving while affected by Elemental Ailments", @@ -37111,6 +39756,11 @@ return { ["text"] = "You have Brutal Shrine Buff while affected by no Flasks", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1190121450|1", + ["text"] = "You have Chilling Conflux for 3 seconds every 8 seconds", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1196333117", ["text"] = "You have Consecrated Ground around you while stationary if Strength is your highest Attribute", @@ -37181,6 +39831,11 @@ return { ["text"] = "You have Greater Skeletal Shrine Buff while affected by no Flasks", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1190121450|3", + ["text"] = "You have Igniting Conflux for 3 seconds every 8 seconds", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3909952544", ["text"] = "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness", @@ -37311,6 +39966,11 @@ return { ["text"] = "You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1190121450|2", + ["text"] = "You have Shocking Conflux for 3 seconds every 8 seconds", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1085545682", ["text"] = "You have Tailwind if you have dealt a Critical Strike Recently", @@ -37701,6 +40361,11 @@ return { ["text"] = "Your Maps contain an Ultimatum Encounter", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1070816711", + ["text"] = "Your Maps contain an additional Abyss", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_504850499", ["text"] = "Your Maps contain an additional Harbinger", @@ -37726,11 +40391,6 @@ return { ["text"] = "Your Maps contain an additional Shrine", ["type"] = "explicit", }, - { - ["id"] = "explicit.stat_1070816711", - ["text"] = "Your Maps contain an additional [ContainsAbyss|Abyss]", - ["type"] = "explicit", - }, { ["id"] = "explicit.stat_2810286377", ["text"] = "Your Maps contain an additional pack with a Rare monster", @@ -37826,6 +40486,11 @@ return { ["text"] = "Your Maps have #% increased chance to contain a Smuggler's Cache", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_4111037980", + ["text"] = "Your Maps have #% increased chance to contain an Abyss", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1561678231", ["text"] = "Your Maps have #% increased chance to contain an Expedition Encounter", @@ -37836,11 +40501,6 @@ return { ["text"] = "Your Maps have #% increased chance to contain an Ultimatum Encounter", ["type"] = "explicit", }, - { - ["id"] = "explicit.stat_4111037980", - ["text"] = "Your Maps have #% increased chance to contain an [ContainsAbyss|Abyss]", - ["type"] = "explicit", - }, { ["id"] = "explicit.stat_2750973094", ["text"] = "Your Maps have +#% chance to be haunted by a Tormented Spirit", @@ -37932,28 +40592,28 @@ return { ["type"] = "explicit", }, { - ["id"] = "explicit.stat_4154778375", - ["text"] = "Your Maps have +#% chance to contain an Expedition Encounter", + ["id"] = "explicit.stat_4278144676", + ["text"] = "Your Maps have +#% chance to contain an Abyss", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_4098286334", - ["text"] = "Your Maps have +#% chance to contain an Imprisoned Monster", + ["id"] = "explicit.stat_827686764", + ["text"] = "Your Maps have +#% chance to contain an Abyss per 2% increased Pack Size", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1365687125", - ["text"] = "Your Maps have +#% chance to contain an Ultimatum Encounter", + ["id"] = "explicit.stat_4154778375", + ["text"] = "Your Maps have +#% chance to contain an Expedition Encounter", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_4278144676", - ["text"] = "Your Maps have +#% chance to contain an [ContainsAbyss|Abyss]", + ["id"] = "explicit.stat_4098286334", + ["text"] = "Your Maps have +#% chance to contain an Imprisoned Monster", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_827686764", - ["text"] = "Your Maps have +#% chance to contain an [ContainsAbyss|Abyss] per 2% increased Pack Size", + ["id"] = "explicit.stat_1365687125", + ["text"] = "Your Maps have +#% chance to contain an Ultimatum Encounter", ["type"] = "explicit", }, { @@ -38001,6 +40661,11 @@ return { ["text"] = "Your Maps have a #% chance to contain an additional Shrine", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2399560930", + ["text"] = "Your Maps have no chance to contain Abysses", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1981776737", ["text"] = "Your Maps have no chance to contain Blight Encounters", @@ -38041,11 +40706,6 @@ return { ["text"] = "Your Maps have no chance to contain Ultimatum Encounters", ["type"] = "explicit", }, - { - ["id"] = "explicit.stat_2399560930", - ["text"] = "Your Maps have no chance to contain [ContainsAbyss|Abysses]", - ["type"] = "explicit", - }, { ["id"] = "explicit.stat_328145899", ["text"] = "Your Maps have no chance to contain the Sacred Grove", @@ -38301,21 +40961,6 @@ return { ["text"] = "Zealotry has no Reservation", ["type"] = "explicit", }, - { - ["id"] = "explicit.stat_1927544133", - ["text"] = "[ContainsAbyss|Abyss] Pits in your Maps spawn #% increased Monsters for each prior Pit closed", - ["type"] = "explicit", - }, - { - ["id"] = "explicit.stat_3898949460", - ["text"] = "[KeystoneColdPurist|Bitter Frost]", - ["type"] = "explicit", - }, - { - ["id"] = "explicit.stat_3458351769", - ["text"] = "[KeystoneFirePurist|Voracious Flame]", - ["type"] = "explicit", - }, }, ["id"] = "explicit", ["label"] = "Explicit", @@ -38407,6 +41052,31 @@ return { ["text"] = "#% additional Physical Damage Reduction while stationary", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_204458505", + ["text"] = "#% chance for Elemental Resistances to count as being 90% against Enemy Hits", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3927388937", + ["text"] = "#% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1232004574", + ["text"] = "#% chance that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2710292678", + ["text"] = "#% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1829869055", + ["text"] = "#% chance that if you would gain a Crab Barrier, you instead gain up to your maximum number of Crab Barriers", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2705185939", ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", @@ -38442,6 +41112,11 @@ return { ["text"] = "#% chance to Avoid being Chilled", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3706656107", + ["text"] = "#% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1514829491", ["text"] = "#% chance to Avoid being Frozen", @@ -38452,6 +41127,11 @@ return { ["text"] = "#% chance to Avoid being Ignited", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_4271082039", + ["text"] = "#% chance to Avoid being Ignited while on Low Life", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_4053951709", ["text"] = "#% chance to Avoid being Poisoned", @@ -38482,6 +41162,11 @@ return { ["text"] = "#% chance to Cause Monsters to Flee", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2674214144", + ["text"] = "#% chance to Curse Enemies which Hit you with a random Hex, ignoring Curse Limit", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2950697759", ["text"] = "#% chance to Curse Enemies with Punishment on Hit", @@ -38502,6 +41187,11 @@ return { ["text"] = "#% chance to Freeze", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2168861013", + ["text"] = "#% chance to Freeze Enemies for 1 second when they Hit you", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1858426568", ["text"] = "#% chance to Freeze with Melee Weapons", @@ -38582,11 +41272,26 @@ return { ["text"] = "#% chance to Poison with Melee Weapons", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_532324017", + ["text"] = "#% chance to Sap Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3057853352", + ["text"] = "#% chance to Sap Enemies in Chilling Areas", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2113677718", ["text"] = "#% chance to Sap Enemies when you Block their Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_606940191", + ["text"] = "#% chance to Scorch Enemies", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_779391868", ["text"] = "#% chance to Scorch Enemies when you Block their Damage", @@ -38602,16 +41307,41 @@ return { ["text"] = "#% chance to Shock with Melee Weapons", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_875143443", + ["text"] = "#% chance to Steal Power, Frenzy, and Endurance Charges on Hit", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_280213220", ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3657377047", + ["text"] = "#% chance to Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_723388324", + ["text"] = "#% chance to Trigger Socketed Spells when you Spend at least # Mana on an Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3302736916", + ["text"] = "#% chance to Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_763611529", ["text"] = "#% chance to Unnerve Enemies for 4 seconds on Hit", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1519615863", ["text"] = "#% chance to cause Bleeding on Hit", @@ -38632,6 +41362,11 @@ return { ["text"] = "#% chance to double Stun Duration", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_414749123", + ["text"] = "#% chance to gain Adrenaline for 2 Seconds when Leech is removed by Filling Unreserved Life", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3023957681", ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", @@ -38642,6 +41377,11 @@ return { ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_911695185", + ["text"] = "#% chance to gain a Frenzy Charge on Critical Strike at Close Range", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2323242761", ["text"] = "#% chance to gain a Frenzy Charge on Hit", @@ -38662,6 +41402,16 @@ return { ["text"] = "#% chance to gain a Power Charge on Kill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1936544447", + ["text"] = "#% chance to gain a Power Charge when you Throw a Trap", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_498214257", + ["text"] = "#% chance to gain a Power, Frenzy or Endurance Charge on Kill", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1054322244", ["text"] = "#% chance to gain an Endurance Charge on Kill", @@ -38677,11 +41427,46 @@ return { ["text"] = "#% chance to gain an additional Vaal Soul on Kill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_991168463", + ["text"] = "#% chance to grant a Frenzy Charge to nearby Allies on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2367680009", + ["text"] = "#% chance to grant a Power Charge to nearby Allies on Kill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2238174408", + ["text"] = "#% chance to inflict Brittle", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1749278976", ["text"] = "#% chance to inflict Brittle on Enemies when you Block their Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2630708439", + ["text"] = "#% chance to inflict Cold Exposure on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2523122963", + ["text"] = "#% chance to inflict Corrosion on Hit with Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3602667353", + ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1957711555", + ["text"] = "#% chance to inflict Withered for 2 seconds on Hit", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1469603435", ["text"] = "#% chance to take 20% less Area Damage from Hits per 2% Overcapped Cold Resistance", @@ -38772,6 +41557,11 @@ return { ["text"] = "#% increased Area of Effect of Aura Skills", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_250553316", + ["text"] = "#% increased Area of Effect per Enemy killed recently, up to 25%", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2866361420", ["text"] = "#% increased Armour", @@ -38787,6 +41577,16 @@ return { ["text"] = "#% increased Armour from Equipped Helmet and Gloves", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_749219868", + ["text"] = "#% increased Armour per 100 Reserved Mana", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2843214518", ["text"] = "#% increased Attack Damage", @@ -38837,6 +41637,11 @@ return { ["text"] = "#% increased Attack Speed per Frenzy Charge", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_4268321763", + ["text"] = "#% increased Attack Speed when on Full Life", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3550868361", ["text"] = "#% increased Attack Speed with Axes", @@ -39217,6 +42022,11 @@ return { ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_485151258", + ["text"] = "#% increased Damage with Hits and Ailments against Ignited Enemies", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3935936274", ["text"] = "#% increased Damage with Ignite from Melee Weapons", @@ -39257,6 +42067,11 @@ return { ["text"] = "#% increased Dexterity", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2022724400", + ["text"] = "#% increased Dexterity if Strength is higher than Intelligence", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2419712247", ["text"] = "#% increased Duration of Ailments on Enemies", @@ -39297,6 +42112,16 @@ return { ["text"] = "#% increased Effect of Cold Ailments", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3995650818", + ["text"] = "#% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_782230869", ["text"] = "#% increased Effect of Non-Damaging Ailments", @@ -39322,6 +42147,11 @@ return { ["text"] = "#% increased Effect of Shock from Melee Weapons", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1939175721", + ["text"] = "#% increased Effect of Shrine Buffs on you", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1482572705", ["text"] = "#% increased Effect of Socketed Abyss Jewels", @@ -39447,6 +42277,11 @@ return { ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_156734303", + ["text"] = "#% increased Evasion Rating during Onslaught", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_623823763", ["text"] = "#% increased Evasion Rating from Equipped Helmet and Boots", @@ -39457,6 +42292,11 @@ return { ["text"] = "#% increased Evasion Rating per 10 Intelligence", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3147253569", + ["text"] = "#% increased Evasion Rating per 500 Maximum Mana", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_660404777", ["text"] = "#% increased Evasion Rating per Frenzy Charge", @@ -39572,6 +42412,11 @@ return { ["text"] = "#% increased Global Defences", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2695354435", + ["text"] = "#% increased Global Evasion Rating when on Low Life", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1310194496", ["text"] = "#% increased Global Physical Damage", @@ -39657,6 +42502,11 @@ return { ["text"] = "#% increased Mana Reservation Efficiency of Skills", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1212083058", + ["text"] = "#% increased Mana Reservation Efficiency of Skills per 250 total Attributes", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2227180465", ["text"] = "#% increased Mana Reservation of Skills", @@ -39672,6 +42522,11 @@ return { ["text"] = "#% increased Maximum Energy Shield from Equipped Gloves and Boots", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2217962305", + ["text"] = "#% increased Maximum Life if no Equipped Items are Corrupted", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2013799819", ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", @@ -39712,6 +42567,11 @@ return { ["text"] = "#% increased Minion Accuracy Rating", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_4047895119", + ["text"] = "#% increased Minion Attack Speed per 50 Dexterity", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2306522833", ["text"] = "#% increased Monster Movement Speed", @@ -39732,11 +42592,26 @@ return { ["text"] = "#% increased Movement Speed if Corrupted", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2223256941", + ["text"] = "#% increased Movement Speed per 1800 Evasion Rating, up to 25%", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3393547195", + ["text"] = "#% increased Movement Speed when on Full Life", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3684879618", ["text"] = "#% increased Movement Speed while Phasing", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2825197711", + ["text"] = "#% increased Movement Speed while on Full Energy Shield", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1456551059", ["text"] = "#% increased Perception speed", @@ -39782,6 +42657,11 @@ return { ["text"] = "#% increased Physical Damage with Maces or Sceptres", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_766615564", + ["text"] = "#% increased Physical Damage with Ranged Weapons", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1430255627", ["text"] = "#% increased Physical Damage with Spell Skills", @@ -39827,6 +42707,11 @@ return { ["text"] = "#% increased Projectile Attack Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1426001733", + ["text"] = "#% increased Projectile Attack Damage per 400 Accuracy Rating", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1839076647", ["text"] = "#% increased Projectile Damage", @@ -39882,6 +42767,11 @@ return { ["text"] = "#% increased Rarity of Items found", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2929867083", + ["text"] = "#% increased Rarity of Items found when on Low Life", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2587176568", ["text"] = "#% increased Reservation Efficiency of Skills", @@ -39917,6 +42807,11 @@ return { ["text"] = "#% increased Spell Critical Strike Chance", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3775574601", + ["text"] = "#% increased Spell Critical Strike Chance per 100 Player Maximum Life", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2974417149", ["text"] = "#% increased Spell Damage", @@ -40042,6 +42937,11 @@ return { ["text"] = "#% increased Warcry Buff Effect", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1316278494", ["text"] = "#% increased Warcry Speed", @@ -40122,6 +43022,11 @@ return { ["text"] = "#% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2733459550", + ["text"] = "#% less Damage taken per 5 Rage, up to a maximum of 30%", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_170394517", ["text"] = "#% more Accuracy Rating", @@ -40132,6 +43037,21 @@ return { ["text"] = "#% more Monster Life", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1814782245", + ["text"] = "#% more Physical Damage with Unarmed Melee Attacks", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3972229254", + ["text"] = "#% of Armour also applies to Chaos Damage taken from Hits", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2200571612", + ["text"] = "#% of Armour also applies to Lightning Damage taken from Hits", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_141810208", ["text"] = "#% of Attack Damage Leeched as Life", @@ -40157,6 +43077,11 @@ return { ["text"] = "#% of Chaos Damage Leeched as Life", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3967028570", + ["text"] = "#% of Chaos Damage is taken from Mana before Life", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2459451600", ["text"] = "#% of Cold Damage Leeched as Life", @@ -40182,6 +43107,21 @@ return { ["text"] = "#% of Cold Damage taken Recouped as Life", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3812562802", + ["text"] = "#% of Damage dealt by your Totems is Leeched to you as Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3691190311", + ["text"] = "#% of Damage from Hits is taken from Marked Target's Life before you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2762445213", + ["text"] = "#% of Damage from Hits is taken from your nearest Totem's Life before you", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_458438597", ["text"] = "#% of Damage is taken from Mana before Life", @@ -40197,11 +43137,26 @@ return { ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_743992531", + ["text"] = "#% of Damage you Reflect to Enemies when Hit is leeched as Life", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_720395808", ["text"] = "#% of Elemental Damage Leeched as Life", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1175213674", + ["text"] = "#% of Elemental Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2731249891", + ["text"] = "#% of Fire Damage Converted to Chaos Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1743742391", ["text"] = "#% of Fire Damage Leeched as Life", @@ -40222,6 +43177,11 @@ return { ["text"] = "#% of Fire Damage from Hits taken as Lightning Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3205239847", + ["text"] = "#% of Fire Damage from Hits taken as Physical Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1742651309", ["text"] = "#% of Fire Damage taken Recouped as Life", @@ -40252,6 +43212,16 @@ return { ["text"] = "#% of Lightning Damage taken Recouped as Life", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2458962764", + ["text"] = "#% of Maximum Life Converted to Energy Shield", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1092987622", + ["text"] = "#% of Melee Physical Damage taken reflected to Attacker", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3593843976", ["text"] = "#% of Physical Attack Damage Leeched as Life", @@ -40357,6 +43327,11 @@ return { ["text"] = "#% reduced Chaos Damage taken", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3762784591", + ["text"] = "#% reduced Chaos Damage taken over time", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1874553720", ["text"] = "#% reduced Chill Duration on you", @@ -40407,6 +43382,11 @@ return { ["text"] = "#% reduced Elemental Ailment Duration on you", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_76848920", + ["text"] = "#% reduced Elemental Resistances", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1443060084", ["text"] = "#% reduced Enemy Stun Threshold", @@ -40497,6 +43477,11 @@ return { ["text"] = "+# Physical Damage taken from Attack Hits", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3612407781", + ["text"] = "+# Physical Damage taken from Projectile Attacks", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3182714256", ["text"] = "+# Prefix Modifier allowed", @@ -40612,6 +43597,11 @@ return { ["text"] = "+# to Level of Socketed Duration Gems", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3571342795", + ["text"] = "+# to Level of Socketed Elemental Gems", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_339179093", ["text"] = "+# to Level of Socketed Fire Gems", @@ -40622,6 +43612,11 @@ return { ["text"] = "+# to Level of Socketed Gems", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1344805487", + ["text"] = "+# to Level of Socketed Herald Gems", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1719423857", ["text"] = "+# to Level of Socketed Intelligence Gems", @@ -40642,6 +43637,11 @@ return { ["text"] = "+# to Level of Socketed Minion Gems", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3852526385", + ["text"] = "+# to Level of Socketed Movement Gems", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_516565950", ["text"] = "+# to Level of Socketed Physical Gems", @@ -40712,6 +43712,16 @@ return { ["text"] = "+# to Level of all Physical Spell Skill Gems", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3235814433", + ["text"] = "+# to Level of all Raise Spectre Gems", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2739830820", + ["text"] = "+# to Level of all Raise Zombie Gems", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_4180346416", ["text"] = "+# to Level of all Vaal Skill Gems", @@ -40797,6 +43807,11 @@ return { ["text"] = "+# to maximum Energy Shield (Local)", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2094299742", + ["text"] = "+# to maximum Fortification", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_335507772", ["text"] = "+# to maximum Fortification", @@ -40807,6 +43822,11 @@ return { ["text"] = "+# to maximum Life", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2927667525", + ["text"] = "+# to maximum Life if there are no Life Modifiers on other Equipped Items", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1050105434", ["text"] = "+# to maximum Mana", @@ -40817,6 +43837,11 @@ return { ["text"] = "+# to maximum number of Raised Zombies", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2056575682", + ["text"] = "+# to maximum number of Summoned Holy Relics", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_4253454700", ["text"] = "+#% Chance to Block (Shields)", @@ -40827,6 +43852,16 @@ return { ["text"] = "+#% Chance to Block Attack Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3304203764", + ["text"] = "+#% Chance to Block Attack Damage from Cursed Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1061631617", + ["text"] = "+#% Chance to Block Attack Damage per 50 Strength", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2166444903", ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", @@ -40842,6 +43877,16 @@ return { ["text"] = "+#% Chance to Block Spell Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_816458107", + ["text"] = "+#% Chance to Block Spell Damage per Power Charge", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2253286128", + ["text"] = "+#% Chance to Block Spell Damage while on Low Life", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2120297997", ["text"] = "+#% Chance to Block Spell Damage while wielding a Staff", @@ -40867,6 +43912,11 @@ return { ["text"] = "+#% Pack Size", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3416410609", + ["text"] = "+#% chance to Block Projectile Attack Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2021058489", ["text"] = "+#% chance to Evade Attack Hits", @@ -40907,6 +43957,11 @@ return { ["text"] = "+#% to Chaos Resistance", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_392168009", + ["text"] = "+#% to Chaos Resistance during any Flask Effect", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1950806024", ["text"] = "+#% to Cold Damage over Time Multiplier", @@ -40952,6 +44007,11 @@ return { ["text"] = "+#% to Critical Strike Multiplier for Spells while wielding a Staff", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_956384511", + ["text"] = "+#% to Critical Strike Multiplier per 1% Chance to Block Attack Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_4219746989", ["text"] = "+#% to Critical Strike Multiplier with Axes", @@ -41002,6 +44062,11 @@ return { ["text"] = "+#% to Damage over Time Multiplier for Bleeding", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3504652942", + ["text"] = "+#% to Damage over Time Multiplier for Poison per Frenzy Charge", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3382807662", ["text"] = "+#% to Fire Damage over Time Multiplier", @@ -41142,6 +44207,11 @@ return { ["text"] = "+#% to all maximum Resistances", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3635566977", + ["text"] = "+#% to all maximum Resistances while you have no Endurance Charges", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_4124805414", ["text"] = "+#% to maximum Chance to Block Attack Damage", @@ -41187,6 +44257,16 @@ return { ["text"] = "1% less Damage Taken per # Strength", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1493090598", + ["text"] = "35% chance to avoid being Stunned for each Herald Buff affecting you", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_628716294", + ["text"] = "Action Speed cannot be modified to below Base Value", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3531280422", ["text"] = "Adds # to # Chaos Damage", @@ -41197,11 +44277,21 @@ return { ["text"] = "Adds # to # Chaos Damage (Local)", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_4294344579", + ["text"] = "Adds # to # Chaos Damage for each Curse on the Enemy", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_674553446", ["text"] = "Adds # to # Chaos Damage to Attacks", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_117885424", + ["text"] = "Adds # to # Chaos Damage to Attacks per 80 Strength", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2300399854", ["text"] = "Adds # to # Chaos Damage to Spells", @@ -41227,6 +44317,11 @@ return { ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1109700751", + ["text"] = "Adds # to # Cold Damage to Retaliation Skills", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2469416729", ["text"] = "Adds # to # Cold Damage to Spells", @@ -41312,11 +44407,26 @@ return { ["text"] = "Adds # to # Physical Damage to Spells", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_4052117756", + ["text"] = "All Damage can Freeze", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_264042990", ["text"] = "All Damage from Hits with This Weapon can Poison", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2740018301", + ["text"] = "All Sockets Linked", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2648570028", + ["text"] = "Ancestral Bond", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1592278124", ["text"] = "Anger has #% increased Aura Effect", @@ -41327,6 +44437,11 @@ return { ["text"] = "Anger has #% increased Mana Reservation Efficiency", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_91242932", + ["text"] = "Animated and Manifested Minions' Melee Strikes deal Splash Damage to surrounding targets", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2351239732", ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", @@ -41362,16 +44477,36 @@ return { ["text"] = "Area contains #% increased number of Runic Monster Markers", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3159649981|1", + ["text"] = "Area contains Medved, Feller of Heroes", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1994562755", ["text"] = "Area contains Metamorph Monsters", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3159649981|4", + ["text"] = "Area contains Olroth, Origin of the Fall", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1145451936", ["text"] = "Area contains The Sacred Grove", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3159649981|3", + ["text"] = "Area contains Uhtred, Covetous Traitor", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3159649981|2", + ["text"] = "Area contains Vorana, Last to Fall", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_392469782", ["text"] = "Area contains a Breach", @@ -41417,6 +44552,11 @@ return { ["text"] = "Area contains an Invasion Boss", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1070816711", + ["text"] = "Area contains an additional Abyss", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_504850499", ["text"] = "Area contains an additional Harbinger", @@ -41457,11 +44597,6 @@ return { ["text"] = "Area contains an additional Underground Area", ["type"] = "implicit", }, - { - ["id"] = "implicit.stat_1070816711", - ["text"] = "Area contains an additional [ContainsAbyss|Abyss]", - ["type"] = "implicit", - }, { ["id"] = "implicit.stat_1612402470", ["text"] = "Area contains an additional guarded Exquisite Vaal Vessel", @@ -41522,6 +44657,16 @@ return { ["text"] = "Area is infested with Fungal Growths Map's Item Quantity Modifiers also affect Blight Chest count at 25% value Can be Anointed up to 3 times", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1792283443|2", + ["text"] = "Area is influenced by The Elder", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1792283443|1", + ["text"] = "Area is influenced by The Shaper", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_279246355", ["text"] = "Area is inhabited by an additional Invasion Boss", @@ -41542,6 +44687,11 @@ return { ["text"] = "Areas contain an Ultimatum Encounter", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1671639542", + ["text"] = "Armour is increased by #% of Overcapped Fire Resistance", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1001077145", ["text"] = "Arrows Chain +# times", @@ -41567,6 +44717,11 @@ return { ["text"] = "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2778228111", + ["text"] = "Attack Skills have Added Lightning Damage equal to #% of maximum Mana", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2146663823", ["text"] = "Attacks Exerted by Ancestral Cry deal #% increased Damage", @@ -41602,6 +44757,11 @@ return { ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3133323410", + ["text"] = "Bleeding Enemies you Kill Explode, dealing #% of their Maximum Life as Physical Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1901158930", ["text"] = "Bleeding cannot be inflicted on you", @@ -41617,6 +44777,11 @@ return { ["text"] = "Bleeding you inflict deals Damage #% faster", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_4170725899", + ["text"] = "Blight has #% increased Hinder Duration", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1801289192", ["text"] = "Bone Offering has #% increased Effect", @@ -41627,11 +44792,21 @@ return { ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3512432760", + ["text"] = "Can be Allflame Crafted as if Rare Cannot gain Intangibility", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_52068049", ["text"] = "Can be Anointed", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1161337167", + ["text"] = "Can be modified while Corrupted", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2224292784", ["text"] = "Can have up to # additional Trap placed at a time", @@ -41652,6 +44827,11 @@ return { ["text"] = "Cannot be Blinded", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_283649372", + ["text"] = "Cannot be Chilled", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_876831634", ["text"] = "Cannot be Frozen", @@ -41677,6 +44857,26 @@ return { ["text"] = "Cannot be Shocked", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2916280114", + ["text"] = "Cannot be Stunned by Suppressed Spell Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_612223930", + ["text"] = "Cannot inflict Freeze or Chill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4198497576", + ["text"] = "Cannot inflict Ignite", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_990377349", + ["text"] = "Cannot inflict Shock", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_4082780964", ["text"] = "Cannot roll Caster Modifiers", @@ -41707,6 +44907,21 @@ return { ["text"] = "Cannot roll Modifiers of Non-Physical Damage Types", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1865744989", + ["text"] = "Chaos Damage taken does not bypass Energy Shield", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_887556907", + ["text"] = "Chaos Damage taken does not bypass Energy Shield while not on Low Life", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_496075050", + ["text"] = "Cold Resistance is #%", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3001853534", ["text"] = "Contains a Forge that can Combine Crucible Passive Skill Trees", @@ -41727,6 +44942,16 @@ return { ["text"] = "Corrupted Blood cannot be inflicted on you", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1911037487", + ["text"] = "Corrupted Soul", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2485187927", + ["text"] = "Create a Blighted Spore when your Skills or Minions Kill a Rare Monster", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3311869501", ["text"] = "Creates Chilled Ground on Use", @@ -41767,6 +44992,11 @@ return { ["text"] = "Curse Enemies with Elemental Weakness on Hit", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2048643052", + ["text"] = "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1625819882", ["text"] = "Curse Enemies with Enfeeble on Hit", @@ -41782,11 +45012,21 @@ return { ["text"] = "Curse Enemies with Frostbite on Hit", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2922377850", + ["text"] = "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3433724931", ["text"] = "Curse Enemies with Temporal Chains on Hit", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3477714116", + ["text"] = "Curse Enemies with Vulnerability on Block", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3967845372", ["text"] = "Curse Enemies with Vulnerability on Hit", @@ -41817,6 +45057,11 @@ return { ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3629143471", + ["text"] = "Damage of Enemies Hitting you is Unlucky while you are on Full Life", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1211769158", ["text"] = "Damage with Weapons Penetrates #% Cold Resistance", @@ -41892,6 +45137,11 @@ return { ["text"] = "Drops Scorched Ground while moving, lasting # seconds", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3002060175", + ["text"] = "Drops Shocked Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2103621252", ["text"] = "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every second", @@ -41912,6 +45162,11 @@ return { ["text"] = "Elemental Overload", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_85576425", + ["text"] = "Elemental Resistances are Zero", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3617955571", ["text"] = "Enduring Cry has #% increased Cooldown Recovery Rate", @@ -41922,6 +45177,11 @@ return { ["text"] = "Enemies Cannot Leech Life From you", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_4164361381", + ["text"] = "Enemies display their Monster Category", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1220361974", ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", @@ -41937,16 +45197,41 @@ return { ["text"] = "Enemies you've Hit Recently have #% reduced Life Regeneration rate", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1308467455", + ["text"] = "Eternal Youth", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2358015838", + ["text"] = "Evasion Rating is increased by Overcapped Cold Resistance", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_145598447", + ["text"] = "Everlasting Sacrifice", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3239978999", ["text"] = "Excavated Chests have a #% chance to contain twice as many Items", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2765129230", + ["text"] = "Excommunicate Enemies on Melee Hit for # second", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1569101201", ["text"] = "Exerted Attacks deal #% increased Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_763311546", + ["text"] = "Fire Resistance is #%", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_114734841", ["text"] = "Flasks applied to you have #% increased Effect", @@ -41992,6 +45277,11 @@ return { ["text"] = "Gain # Life per Enemy Killed", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3915702459", + ["text"] = "Gain # Life when you lose an Endurance Charge", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_820939409", ["text"] = "Gain # Mana per Enemy Hit with Attacks", @@ -42022,6 +45312,11 @@ return { ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3086896309", + ["text"] = "Gain #% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1599775597", ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", @@ -42032,6 +45327,11 @@ return { ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_13172430", + ["text"] = "Gain #% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_67280387", ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", @@ -42047,6 +45347,11 @@ return { ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3492297134", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_979246511", ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", @@ -42072,11 +45377,26 @@ return { ["text"] = "Gain 1 Rage on Hit with Attacks", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3535421504", + ["text"] = "Gain Added Chaos Damage equal to #% of Ward", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3221795893", + ["text"] = "Gain Arcane Surge when you use a Movement Skill", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_581055101", ["text"] = "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items at #% of the value", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2287328323", + ["text"] = "Gain Sacrificial Zeal when you use a Skill, dealing you #% of the Skill's Mana Cost as Physical Damage per Second", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3868549606", ["text"] = "Gain a Frenzy Charge after Spending a total of 200 Mana", @@ -42107,6 +45427,21 @@ return { ["text"] = "Gain up to maximum Endurance Charges when you take a Critical Strike", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2236460050", + ["text"] = "Gems Socketed in Blue Sockets gain #% increased Experience", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3799930101", + ["text"] = "Gems Socketed in Green Sockets have +#% to Quality", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2886998024", + ["text"] = "Gems Socketed in Red Sockets have +# to Level", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3637727672", ["text"] = "General's Cry has #% increased Cooldown Recovery Rate", @@ -42157,11 +45492,21 @@ return { ["text"] = "Grants Level # Anger Skill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1265282021", + ["text"] = "Grants Level # Aspect of the Cat Skill", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3736925508", ["text"] = "Grants Level # Assassin's Mark Skill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3985468650", + ["text"] = "Grants Level # Blood Offering Skill", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3511815065", ["text"] = "Grants Level # Clarity Skill", @@ -42187,6 +45532,11 @@ return { ["text"] = "Grants Level # Discipline Skill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2498303876", + ["text"] = "Grants Level # Doryani's Touch Skill", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3792821911", ["text"] = "Grants Level # Elemental Weakness Skill", @@ -42222,6 +45572,11 @@ return { ["text"] = "Grants Level # Malevolence Skill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1904419785", + ["text"] = "Grants Level # Petrification Statue Skill", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_4184565463", ["text"] = "Grants Level # Pride Skill", @@ -42247,6 +45602,11 @@ return { ["text"] = "Grants Level # Purity of Lightning Skill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_636370122", + ["text"] = "Grants Level # Ravenous Skill", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3536689603", ["text"] = "Grants Level # Sniper's Mark Skill", @@ -42277,6 +45637,26 @@ return { ["text"] = "Grants Level # Zealotry Skill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2878779644|2", + ["text"] = "Grants Level 20 Summon Bestial Ursa Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2918150296", + ["text"] = "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3872739249|9", + ["text"] = "Grants Summon Greater Harbinger of Focus Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2195137717", + ["text"] = "Half of your Strength is added to your Minions", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3527617737", ["text"] = "Has # Abyssal Sockets", @@ -42332,6 +45712,11 @@ return { ["text"] = "Herald of Thunder has #% increased Buff Effect", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_32859524", + ["text"] = "Hexes applied by Socketed Curse Skills are Reflected back to you", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2839577586", ["text"] = "Hits have #% chance to ignore Enemy Physical Damage Reduction", @@ -42357,6 +45742,11 @@ return { ["text"] = "Ignites you inflict spread to other Enemies within # metre", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2413219096", + ["text"] = "Immortal Ambition", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1954526925", ["text"] = "Immune to Curses if Corrupted", @@ -42377,11 +45767,26 @@ return { ["text"] = "Increases and Reductions to Light Radius also apply to Accuracy", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3519807287", + ["text"] = "Increases and Reductions to Light Radius also apply to Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_4100175081", ["text"] = "Increases and Reductions to Maximum Energy Shield instead apply to Ward", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3942379359", + ["text"] = "Increases and Reductions to Minion Maximum Life also apply to you at #% of their value", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4091694419", + ["text"] = "Increases and Reductions to your Evasion Rating also apply to your Spell Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_631097842", ["text"] = "Infernal Cry has #% increased Area of Effect", @@ -42402,11 +45807,31 @@ return { ["text"] = "Inflict Lightning Exposure on Hit, applying #% to Lightning Resistance", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1345113611", + ["text"] = "Inflict non-Damaging Ailments as though dealing #% more Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_354080151", + ["text"] = "Inner Conviction", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1134560807", ["text"] = "Intimidating Cry has #% increased Cooldown Recovery Rate", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_573347393", + ["text"] = "Iron Grip", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4092697134", + ["text"] = "Iron Will", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3909846940", ["text"] = "Item drops on Death if Equipped by an Animated Guardian", @@ -42417,6 +45842,11 @@ return { ["text"] = "Item sells for much more to vendors", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_281201999", + ["text"] = "Knockback direction is reversed", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_221309863", ["text"] = "Left ring slot: #% increased Duration of Ailments on You", @@ -42452,6 +45882,11 @@ return { ["text"] = "Left ring slot: Minions take #% increased Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1942151132", + ["text"] = "Lightning Resistance is #%", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_4175197580", ["text"] = "Malevolence has #% increased Aura Effect", @@ -42467,21 +45902,86 @@ return { ["text"] = "Map Crafting options for this Map have no cost", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2563183002|3", + ["text"] = "Map contains Al-Hezmin's Citadel Item Quantity increases amount of Rewards Al-Hezmin drops by 20% of its value", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2563183002|1", + ["text"] = "Map contains Baran's Citadel Item Quantity increases amount of Rewards Baran drops by 20% of its value", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2563183002|4", + ["text"] = "Map contains Drox's Citadel Item Quantity increases amount of Rewards Drox drops by 20% of its value", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2563183002|2", + ["text"] = "Map contains Veritania's Citadel Item Quantity increases amount of Rewards Veritania drops by 20% of its value", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3624393862|3", + ["text"] = "Map is occupied by The Constrictor", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3624393862|1", + ["text"] = "Map is occupied by The Enslaver", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3624393862|2", + ["text"] = "Map is occupied by The Eradicator", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3624393862|4", + ["text"] = "Map is occupied by The Purifier", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1166417447", ["text"] = "Melee Hits Fortify", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1586164348", + ["text"] = "Minion Life is increased by their Overcapped Fire Resistance", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2479683456", ["text"] = "Minions Regenerate #% of Life per second", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_128585622", + ["text"] = "Minions are Aggressive", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1589917703", ["text"] = "Minions deal #% increased Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_247168950", + ["text"] = "Minions gain #% of Elemental Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1236638414", + ["text"] = "Minions gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1994549323", + ["text"] = "Minions have #% chance to Freeze, Shock and Ignite", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3375935924", ["text"] = "Minions have #% increased Attack Speed", @@ -42497,6 +45997,11 @@ return { ["text"] = "Minions have #% increased Cast Speed", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_446070669", + ["text"] = "Minions have #% increased Critical Strike Chance per Maximum Power Charge you have", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_174664100", ["text"] = "Minions have #% increased Movement Speed", @@ -42507,6 +46012,16 @@ return { ["text"] = "Minions have #% increased maximum Life", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3374054207", + ["text"] = "Minions have +#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2762046953", + ["text"] = "Minions have +#% Chance to Block Spell Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1423639565", ["text"] = "Minions have +#% to all Elemental Resistances", @@ -42542,6 +46057,11 @@ return { ["text"] = "Monsters have Onslaught", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_935326447", + ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2656027173", ["text"] = "Natural inhabitants of this area have been removed", @@ -42562,16 +46082,51 @@ return { ["text"] = "Nearby Enemies are Crushed", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3733114005", + ["text"] = "Nearby Enemies are Scorched", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1177959871", + ["text"] = "Nearby Enemies cannot deal Critical Strikes", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_668145148", + ["text"] = "Nearby Enemies have #% to all Resistances", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2774148053", ["text"] = "Nearby Enemies have Malediction", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1063263585", + ["text"] = "Nearby Enemy Monsters have at least #% of Life Reserved", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3484267929", + ["text"] = "Nearby allies Recover #% of your Maximum Life when you Die", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3469279727", + ["text"] = "Nearby stationary Enemies gain a Grasping Vine every second", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1661253443", ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2262007777", + ["text"] = "Non-instant Mana Recovery from Flasks is also Recovered as Life", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1520059289", ["text"] = "Onslaught", @@ -42582,6 +46137,11 @@ return { ["text"] = "Overwhelm #% Physical Damage Reduction", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_977063976", ["text"] = "Players' Vaal Skills do not apply Soul Gain Prevention", @@ -42622,6 +46182,11 @@ return { ["text"] = "Pride has #% increased Mana Reservation Efficiency", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_383509486", + ["text"] = "Projectiles Chain +# times while you have Phasing", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2067062068", ["text"] = "Projectiles Pierce # additional Targets", @@ -42632,6 +46197,11 @@ return { ["text"] = "Projectiles Pierce # additional Targets", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_97250660", + ["text"] = "Projectiles Pierce an additional Target while you have Phasing", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_883169830", ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", @@ -42722,6 +46292,16 @@ return { ["text"] = "Quality applies to Pack Size instead of Item Quantity", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_699756626", + ["text"] = "Quicksilver Flasks you Use also apply to nearby Allies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_16924183", + ["text"] = "Raise Zombie does not require a corpse", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3645693773", ["text"] = "Raised Spectres have #% increased Damage", @@ -42732,6 +46312,16 @@ return { ["text"] = "Raised Zombies deal #% increased Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2397408229", + ["text"] = "Rampage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1807705940", + ["text"] = "Recover # Life when you Suppress Spell Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2023107756", ["text"] = "Recover #% of Life on Kill", @@ -42752,11 +46342,31 @@ return { ["text"] = "Recover #% of your maximum Mana when you Block", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3681057026", + ["text"] = "Recover Energy Shield equal to #% of Armour when you Block", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3868184702", + ["text"] = "Reflects # Lightning Damage to Melee Attackers", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3767873853", ["text"] = "Reflects # Physical Damage to Melee Attackers", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1445684883", + ["text"] = "Reflects # to # Physical Damage to Attackers on Block", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2161482953", + ["text"] = "Regenerate # Life per Second while on Low Life", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3325883026", ["text"] = "Regenerate # Life per second", @@ -42787,6 +46397,11 @@ return { ["text"] = "Regenerate # Mana per second while wielding a Staff", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2504632495", + ["text"] = "Regenerate #% Life over one second when Hit while Sane", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_991194404", ["text"] = "Regenerate #% of Energy Shield per Second while affected by Discipline", @@ -42802,6 +46417,11 @@ return { ["text"] = "Regenerate #% of Life per second", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1960833438", + ["text"] = "Regenerate #% of Life per second per 500 Player Maximum Energy Shield", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_989800292", ["text"] = "Regenerate #% of Life per second per Endurance Charge", @@ -42882,16 +46502,41 @@ return { ["text"] = "Right ring slot: Minions take #% increased Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_613752285", + ["text"] = "Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_41178696", + ["text"] = "Scorch Enemies in Close Range when you Block", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_261342933", ["text"] = "Secrets of Suffering", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_956038713", + ["text"] = "Shared Suffering", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2706994884", + ["text"] = "Shocked Enemies you Kill Explode, dealing #% of their Life as Lightning Damage which cannot Shock", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_424549222", ["text"] = "Shocks you inflict spread to other Enemies within # metre", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1640259660", + ["text"] = "Shocks you inflict spread to other Enemies within 1.5 metres", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3059357595", ["text"] = "Skeletons deal #% increased Damage", @@ -42907,6 +46552,21 @@ return { ["text"] = "Skills fire an additional Projectile", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2538411280", + ["text"] = "Skills which Exert an Attack have #% chance to not count that Attack", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1917661185", + ["text"] = "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_5955083", + ["text"] = "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1837040413", ["text"] = "Slaying Enemies close together can attract monsters from Beyond this realm", @@ -42927,16 +46587,36 @@ return { ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1647529598", + ["text"] = "Socketed Gems are Supported by Level # Added Lightning Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3922006600", ["text"] = "Socketed Gems are Supported by Level # Arrogance", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_539747809", + ["text"] = "Socketed Gems are Supported by Level # Blasphemy", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2643665787", ["text"] = "Socketed Gems are Supported by Level # Chain", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2388360415", + ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1679136", ["text"] = "Socketed Gems are Supported by Level # Cruelty", @@ -42952,6 +46632,11 @@ return { ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_928701213", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2169938251", ["text"] = "Socketed Gems are Supported by Level # Faster Casting", @@ -42997,11 +46682,26 @@ return { ["text"] = "Socketed Gems are Supported by Level # Multiple Projectiles", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_254728692", + ["text"] = "Socketed Gems are Supported by Level # Pierce", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_369650395", ["text"] = "Socketed Gems are Supported by Level # Rage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2962840349", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1002855537", + ["text"] = "Socketed Gems are Supported by Level # Vile Toxins", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1567462963", ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", @@ -43017,6 +46717,11 @@ return { ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3878987051", + ["text"] = "Socketed Gems are supported by Level # Cast on Death", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1079148723", ["text"] = "Socketed Gems are supported by Level # Cast when Stunned", @@ -43067,6 +46772,11 @@ return { ["text"] = "Socketed Gems have #% increased Reservation Efficiency", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2816901897", + ["text"] = "Socketed Gems have #% less Mana Cost", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2865550257", ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", @@ -43087,6 +46797,11 @@ return { ["text"] = "Spells have a #% chance to deal Double Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3362832740", + ["text"] = "Spells you Cast have Added Spell Damage equal to #% of the Damage of your Main Hand Weapon", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_563547620", ["text"] = "Spend Energy Shield before Mana for Costs of Socketed Skills", @@ -43102,6 +46817,21 @@ return { ["text"] = "Stun Threshold is increased by Overcapped Fire Resistance", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_221328679", + ["text"] = "Summoned Raging Spirits' Melee Strikes deal Fire-only Splash Damage to Surrounding Targets", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1021552211", + ["text"] = "Summoned Skeleton Warriors are Permanent and Follow you Summon Skeletons cannot Summon more than 1 Skeleton Warrior", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4294267596", + ["text"] = "Take no Extra Damage from Critical Strikes", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2005503156", ["text"] = "Taunts nearby Enemies on use", @@ -43112,11 +46842,31 @@ return { ["text"] = "Tempest Shield has #% increased Buff Effect", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1723061251", + ["text"] = "Totems Reflect #% of their maximum Life as Fire Damage to nearby Enemies when Hit", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1809006367", ["text"] = "Totems gain +#% to all Elemental Resistances", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_881645355", + ["text"] = "Transfiguration of Body", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2571899044", + ["text"] = "Transfiguration of Mind", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3268519799", + ["text"] = "Transfiguration of Soul", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2546859843", ["text"] = "Trap Skills have #% increased Skill Effect Duration", @@ -43127,6 +46877,16 @@ return { ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_825352061", + ["text"] = "Trigger Level # Death Aura when Equipped", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1024189516", + ["text"] = "Trigger Level # Feast of Flesh every 5 seconds", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1523888729", ["text"] = "Trigger Level # Fiery Impact on Melee Hit with this Weapon", @@ -43137,6 +46897,11 @@ return { ["text"] = "Trigger Level # Flame Dash when you use a Socketed Skill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_208447205", + ["text"] = "Trigger Level # Fog of War when your Trap is triggered", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2935409762", ["text"] = "Trigger Level # Rain of Arrows when you Attack with a Bow", @@ -43147,6 +46912,16 @@ return { ["text"] = "Trigger Level # Summon Taunting Contraption when you use a Flask", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_767464019", + ["text"] = "Trigger Level # Toxic Rain when you Attack with a Bow", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1869144397", + ["text"] = "Trigger Level # Void Gaze when you use a Skill", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3591112611", ["text"] = "Trigger a Socketed Elemental Spell on Block, with a # second Cooldown", @@ -43157,31 +46932,71 @@ return { ["text"] = "Triggered Spells deal #% increased Spell Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3250579936", + ["text"] = "Triggers Level # Abberath's Fury when Equipped", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_779168081", ["text"] = "Triggers Level # Corpse Walk when Equipped", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2602585351", + ["text"] = "Triggers Level # Elemental Aegis when Equipped", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1892084828", ["text"] = "Triggers Level # Physical Aegis when Equipped", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3664803307", + ["text"] = "Triggers Level # Summon Arbalists when Equipped", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1643688236", ["text"] = "Unaffected by Burning Ground", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_4014328139", + ["text"] = "Unaffected by Chill while Leeching Mana", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3653191834", ["text"] = "Unaffected by Chilled Ground", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3809896400", + ["text"] = "Unaffected by Curses", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1575046591", + ["text"] = "Unaffected by Damaging Ailments", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_4004298002", ["text"] = "Unaffected by Desecrated Ground", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1953432004", + ["text"] = "Unaffected by Poison", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4102393882", + ["text"] = "Unaffected by Shock while Leeching Energy Shield", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2234049899", ["text"] = "Unaffected by Shocked Ground", @@ -43322,6 +47137,16 @@ return { ["text"] = "Warcry Skills have +# seconds to Cooldown", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3281809492", + ["text"] = "When Hit, gain a random Movement Speed modifier from #% reduced to #% increased, until Hit again", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_820827484", + ["text"] = "When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage equal to #% of Sacrificed Mana for 4 seconds", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3326567914", ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Attack Damage", @@ -44062,6 +47887,11 @@ return { ["text"] = "While a Unique Enemy is in your Presence, #% increased Lightning Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_4094153038", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Mana Cost Efficiency", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1516326076", ["text"] = "While a Unique Enemy is in your Presence, #% increased Mine Throwing Speed", @@ -44437,6 +48267,11 @@ return { ["text"] = "You and nearby Allies deal #% increased Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_637766438", + ["text"] = "You and nearby allies gain #% increased Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3577248251", ["text"] = "You and your Minions take #% reduced Reflected Damage", @@ -44452,6 +48287,11 @@ return { ["text"] = "You can apply # additional Curses", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_4197792189", + ["text"] = "You can be Touched by Tormented Spirits", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2451060005", ["text"] = "You can catch Corrupted Fish", @@ -44472,11 +48312,51 @@ return { ["text"] = "You cannot be Maimed", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_798111687", + ["text"] = "You cannot be Shocked while at maximum Endurance Charges", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2514424018", ["text"] = "You gain Onslaught for # seconds on Hit", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2654043939", + ["text"] = "You gain Onslaught for # seconds on using a Vaal Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3909952544", + ["text"] = "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2761538350", + ["text"] = "You have Lesser Brutal Shrine Buff", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3779398176", + ["text"] = "You have Lesser Massive Shrine Buff", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1959256242", + ["text"] = "You have Onslaught while not on Low Mana", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4274075490", + ["text"] = "You have Onslaught while you have Cat's Agility", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3492654051", + ["text"] = "You have Phasing if you have Blocked Recently", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1032751668", ["text"] = "You have Vaal Pact if you've dealt a Critical Strike Recently", @@ -44492,6 +48372,31 @@ return { ["text"] = "You take #% reduced Extra Damage from Critical Strikes", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1139878780", + ["text"] = "Your Chaos Damage can Ignite", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1261612903", + ["text"] = "Your Cold Damage can Ignite but not Freeze or Chill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2949096603", + ["text"] = "Your Fire Damage can Shock but not Ignite", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1367119630", + ["text"] = "Your Hexes can affect Hexproof Enemies", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1011772129", + ["text"] = "Your Lightning Damage can Freeze but not Shock", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_358129101", ["text"] = "Your Maps are haunted by an additional Tormented Spirit", @@ -44532,6 +48437,11 @@ return { ["text"] = "Your Maps contain an Ultimatum Encounter", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1070816711", + ["text"] = "Your Maps contain an additional Abyss", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_504850499", ["text"] = "Your Maps contain an additional Harbinger", @@ -44557,11 +48467,6 @@ return { ["text"] = "Your Maps contain an additional Shrine", ["type"] = "implicit", }, - { - ["id"] = "implicit.stat_1070816711", - ["text"] = "Your Maps contain an additional [ContainsAbyss|Abyss]", - ["type"] = "implicit", - }, { ["id"] = "implicit.stat_2810286377", ["text"] = "Your Maps contain an additional pack with a Rare monster", @@ -44592,6 +48497,16 @@ return { ["text"] = "Your Movement Speed is #% of its base value", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_99487834", + ["text"] = "Your Skills deal you #% of Mana Spent on Upfront Skill Mana Costs as Physical Damage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_632761194", + ["text"] = "Zealot's Oath", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_4096052153", ["text"] = "Zealotry has #% increased Aura Effect", @@ -48804,6 +52719,11 @@ return { ["text"] = "+#% Chance to Block (Shields)", ["type"] = "fractured", }, + { + ["id"] = "fractured.stat_1702195217", + ["text"] = "+#% Chance to Block Attack Damage", + ["type"] = "fractured", + }, { ["id"] = "fractured.stat_1214532298", ["text"] = "+#% Chance to Block Attack Damage if there are at least 5 nearby Enemies", @@ -53396,12 +57316,12 @@ return { }, { ["id"] = "fractured.stat_3938822425", - ["text"] = "Rare Monsters have [ElementalThorns|Elemental Thorns] reflecting # Elemental Damage", + ["text"] = "Rare Monsters have Elemental Thorns reflecting # Elemental Damage", ["type"] = "fractured", }, { ["id"] = "fractured.stat_3278889477", - ["text"] = "Rare Monsters have [PhysicalThorns|Physical Thorns] reflecting # Physical Damage", + ["text"] = "Rare Monsters have Physical Thorns reflecting # Physical Damage", ["type"] = "fractured", }, { @@ -54585,6 +58505,11 @@ return { ["text"] = "#% chance to Avoid being Stunned while Channelling Snipe", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_1012291104", ["text"] = "#% chance to Blind Enemies on Hit with Spells", @@ -54620,11 +58545,21 @@ return { ["text"] = "#% chance to Freeze", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_2168861013", + ["text"] = "#% chance to Freeze Enemies for 1 second when they Hit you", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_3915210550", ["text"] = "#% chance to Freeze, Shock and Ignite if you haven't Crit Recently", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_1335054179", ["text"] = "#% chance to Ignite", @@ -54640,6 +58575,16 @@ return { ["text"] = "#% chance to Impale on Spell Hit", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_3885634897", ["text"] = "#% chance to Poison on Hit (Local)", @@ -55140,11 +59085,26 @@ return { ["text"] = "#% increased Area of Effect while you have Arcane Surge", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_1746347097", + ["text"] = "#% increased Aspect of the Avian Buff Effect", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_4065740293", ["text"] = "#% increased Aspect of the Cat Buff Effect", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_1883691564", + ["text"] = "#% increased Aspect of the Crab Buff Effect", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_2030415947", + ["text"] = "#% increased Aspect of the Spider Debuff Effect", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_1961975107", ["text"] = "#% increased Assassin's Mark Curse Effect", @@ -55330,6 +59290,11 @@ return { ["text"] = "#% increased Caustic Arrow Duration", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_3196823591", ["text"] = "#% increased Charge Recovery", @@ -55360,6 +59325,11 @@ return { ["text"] = "#% increased Cleave Damage", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_3371538704", ["text"] = "#% increased Cold Snap Area of Effect", @@ -55605,6 +59575,11 @@ return { ["text"] = "#% increased Effect of Curses on you while on Consecrated Ground", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_870531513", + ["text"] = "#% increased Effect of Herald Buffs on you", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_2545584555", ["text"] = "#% increased Effect of Withered", @@ -55810,6 +59785,11 @@ return { ["text"] = "#% increased Eye of Winter Projectile Speed", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_3013187834", ["text"] = "#% increased Fire Damage per 1% Fire Resistance above 75%", @@ -56055,11 +60035,21 @@ return { ["text"] = "#% increased Glacial Hammer Damage", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_1389153006", ["text"] = "#% increased Global Defences", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_3061969105", ["text"] = "#% increased Ground Slam Area of Effect", @@ -56265,6 +60255,11 @@ return { ["text"] = "#% increased Lightning Arrow Damage", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_1978232370", ["text"] = "#% increased Lightning Spire Trap Throwing Speed", @@ -56340,6 +60335,11 @@ return { ["text"] = "#% increased Manabond Damage", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_1949390531", ["text"] = "#% increased Molten Shell Buff Effect", @@ -56790,6 +60790,11 @@ return { ["text"] = "#% increased Storm Rain Damage", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_82475304", ["text"] = "#% increased Summon Reaper Cooldown Recovery Rate", @@ -56920,6 +60925,11 @@ return { ["text"] = "#% increased Vulnerability Duration", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_1528965411", ["text"] = "#% increased Warlord's Mark Curse Effect", @@ -56990,6 +61000,11 @@ return { ["text"] = "#% more Rogue's Marker value of primary Heist Target", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_141810208", + ["text"] = "#% of Attack Damage Leeched as Life", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_2186742030", ["text"] = "#% of Attack Physical Damage Converted to Cold Damage", @@ -57195,6 +61210,11 @@ return { ["text"] = "+# to Level of all Physical Spell Skill Gems", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_4283407333", + ["text"] = "+# to Level of all Skill Gems", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_124131830", ["text"] = "+# to Level of all Spell Skill Gems", @@ -57790,6 +61810,11 @@ return { ["text"] = "Allocates Arcane Chemistry", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_2954116742|60085", + ["text"] = "Allocates Arcane Conservation", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_2954116742|53573", ["text"] = "Allocates Arcane Expanse", @@ -58195,6 +62220,11 @@ return { ["text"] = "Allocates Constitution", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_2954116742|20261", + ["text"] = "Allocates Contemplative Meditation", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_2954116742|5823", ["text"] = "Allocates Coordination", @@ -60300,6 +64330,11 @@ return { ["text"] = "Area contains an Empowered Mirage which covers the entire Map", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_1070816711", + ["text"] = "Area contains an additional Abyss", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_1992047981", ["text"] = "Area contains an additional Gloom Shrine", @@ -60330,11 +64365,6 @@ return { ["text"] = "Area contains an additional Strongbox", ["type"] = "enchant", }, - { - ["id"] = "enchant.stat_1070816711", - ["text"] = "Area contains an additional [ContainsAbyss|Abyss]", - ["type"] = "enchant", - }, { ["id"] = "enchant.stat_3747734818", ["text"] = "Area contains hunted traitors", @@ -60381,13 +64411,13 @@ return { ["type"] = "enchant", }, { - ["id"] = "enchant.stat_1671749203", - ["text"] = "Areas contain Ritual Altars", + ["id"] = "enchant.stat_3564826949", + ["text"] = "Areas contain Abysses", ["type"] = "enchant", }, { - ["id"] = "enchant.stat_3564826949", - ["text"] = "Areas contain [ContainsAbyss|Abysses]", + ["id"] = "enchant.stat_1671749203", + ["text"] = "Areas contain Ritual Altars", ["type"] = "enchant", }, { @@ -60460,6 +64490,16 @@ return { ["text"] = "Attacks Exerted by Seismic Cry deal #% increased Damage", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_1501151168", ["text"] = "Attacks with Energy Blades Penetrate #% Lightning Resistance", @@ -60940,109 +64980,109 @@ return { ["text"] = "Delirium Reward Bars fill #% faster in your Maps", ["type"] = "enchant", }, - { - ["id"] = "enchant.delirium_reward_incubators", - ["text"] = "Delirium Reward Type: Delirium Reward Type: (×#)", - ["type"] = "enchant", - }, { ["id"] = "enchant.delirium_reward_abyss", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Abyss Items (×#)", + ["text"] = "Delirium Reward Type: Abyss Items", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_armour", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Armour (×#)", + ["text"] = "Delirium Reward Type: Armour", ["type"] = "enchant", }, { - ["id"] = "enchant.delirium_reward_metamorphosis", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Blight Items (×#)", + ["id"] = "enchant.delirium_reward_blight", + ["text"] = "Delirium Reward Type: Blight Items", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_breach", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Breach Items (×#)", + ["text"] = "Delirium Reward Type: Breach Items", + ["type"] = "enchant", + }, + { + ["id"] = "enchant.delirium_reward_metamorphosis", + ["text"] = "Delirium Reward Type: Catalysts", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_currency", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Currency (×#)", + ["text"] = "Delirium Reward Type: Currency", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_divinationcards", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Divination Cards (×#)", + ["text"] = "Delirium Reward Type: Divination Cards", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_essences", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Essences (×#)", + ["text"] = "Delirium Reward Type: Essences", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_perandus", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Expedition Items (×#)", + ["text"] = "Delirium Reward Type: Expedition Items", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_fossils", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Fossils (×#)", + ["text"] = "Delirium Reward Type: Fossils", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_fragments", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Fragments (×#)", + ["text"] = "Delirium Reward Type: Fragments", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_gems", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Gems (×#)", + ["text"] = "Delirium Reward Type: Gems", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_trinkets", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Jewellery (×#)", + ["text"] = "Delirium Reward Type: Jewellery", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_labyrinth", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Labyrinth Items (×#)", + ["text"] = "Delirium Reward Type: Labyrinth Items", ["type"] = "enchant", }, { - ["id"] = "enchant.delirium_reward_blight", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Legion Items (×#)", + ["id"] = "enchant.delirium_reward_incubators", + ["text"] = "Delirium Reward Type: Legion Items", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_maps", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Map Items (×#)", + ["text"] = "Delirium Reward Type: Map Items", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_generic", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Miscellaneous Items (×#)", + ["text"] = "Delirium Reward Type: Miscellaneous Items", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_scarabs", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Scarabs (×#)", + ["text"] = "Delirium Reward Type: Scarabs", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_talismans", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Talismans (×#)", + ["text"] = "Delirium Reward Type: Talismans", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_uniques", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Unique Items (×#)", + ["text"] = "Delirium Reward Type: Unique Items", ["type"] = "enchant", }, { ["id"] = "enchant.delirium_reward_weapon", - ["text"] = "Delirium Reward Type: Delirium Reward Type: Weapons (×#)", + ["text"] = "Delirium Reward Type: Weapons", ["type"] = "enchant", }, { @@ -61705,6 +65745,11 @@ return { ["text"] = "Has #% increased Elemental Damage", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_3837805260", ["text"] = "Has no Blue Sockets", @@ -62305,6 +66350,11 @@ return { ["text"] = "Melee Hits Fortify", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_3206381437", + ["text"] = "Melee Hits which Stun have #% chance to Fortify", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_3675300253", ["text"] = "Melee Strike Skills deal Splash Damage to surrounding targets", @@ -64236,13 +68286,13 @@ return { ["type"] = "enchant", }, { - ["id"] = "enchant.stat_1671749203", - ["text"] = "Your Maps contain Ritual Altars", + ["id"] = "enchant.stat_3564826949", + ["text"] = "Your Maps contain Abysses", ["type"] = "enchant", }, { - ["id"] = "enchant.stat_3564826949", - ["text"] = "Your Maps contain [ContainsAbyss|Abysses]", + ["id"] = "enchant.stat_1671749203", + ["text"] = "Your Maps contain Ritual Altars", ["type"] = "enchant", }, { @@ -64260,6 +68310,11 @@ return { ["text"] = "Your Maps contain an Ultimatum Encounter", ["type"] = "enchant", }, + { + ["id"] = "enchant.stat_1070816711", + ["text"] = "Your Maps contain an additional Abyss", + ["type"] = "enchant", + }, { ["id"] = "enchant.stat_1992047981", ["text"] = "Your Maps contain an additional Gloom Shrine", @@ -64285,11 +68340,6 @@ return { ["text"] = "Your Maps contain an additional Shrine", ["type"] = "enchant", }, - { - ["id"] = "enchant.stat_1070816711", - ["text"] = "Your Maps contain an additional [ContainsAbyss|Abyss]", - ["type"] = "enchant", - }, { ["id"] = "enchant.stat_3747734818", ["text"] = "Your Maps contain hunted traitors", @@ -67477,6 +71527,11 @@ return { ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", ["type"] = "crafted", }, + { + ["id"] = "crafted.stat_19803471", + ["text"] = "+#% Chance to Block Spell Damage", + ["type"] = "crafted", + }, { ["id"] = "crafted.stat_2266636761", ["text"] = "+#% Chaos Resistance against Damage Over Time",