diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 7564354cb4..daaa2a860a 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -17,7 +17,7 @@ local utils = LoadModule("Modules/Utils") -- exist yet, but might exist in the future local tradeCategoryNames = { ["Ring"] = { "Ring" }, - ["Amulet"] = { "Amulet" }, + ["Amulet"] = { "Amulet", "Amulet: Talisman" }, ["Belt"] = { "Belt" }, ["Chest"] = { "Body Armour", "Body Armour: Armour", "Body Armour: Armour/Energy Shield", "Body Armour: Armour/Evasion", "Body Armour: Armour/Evasion/Energy Shield", "Body Armour: Energy Shield", "Body Armour: Evasion", "Body Armour: Evasion/Energy Shield", -- "Body Armour: Ward" @@ -120,6 +120,7 @@ local function getStatEntries(modType) ["Rune"] = "rune", ["HeartOfTheWell"] = "explicit", ["AgainstTheDarkness"] = "explicit", + ["Enchant"] = "enchant", } if tradeStatCategoryIndices[modType] then for _, cat in ipairs(tradeStats) do @@ -412,6 +413,7 @@ function TradeQueryGeneratorClass:InitMods() self.modData = { ["Explicit"] = { }, ["Implicit"] = { }, + ["Enchant"] = {}, ["Corrupted"] = { }, ["Scourge"] = { }, ["Eater"] = { }, @@ -484,33 +486,40 @@ function TradeQueryGeneratorClass:InitMods() { ["AnyJewel"] = "AnyJewel" }) -- implicit mods + local function processImplicit(baseEntry, modId, modType) + local mod = copyTable(data.itemMods.ItemExclusive[modId] or error("mod id doesn't exist " .. modId)) + mod.type = modType + + -- create trade type mask for base type + local maskOverride = {} + for tradeName, typeNames in pairs(tradeCategoryNames) do + for _, typeName in ipairs(typeNames) do + local entryName = baseEntry.type + if baseEntry.subType then + entryName = entryName .. ": " .. baseEntry.subType + end + if typeName == entryName then + maskOverride[tradeName] = true; + break + end + end + end + + -- mask found process implicit mod this avoids processing unimplemented bases + if next(maskOverride) ~= nil then + self:ProcessMod("", mod, tradeQueryStatsParsed, regularItemMask, maskOverride) + end + end for _, entry in pairsSortByKey(data.itemBases) do if entry.type == "Graft" then goto continue end for _, modId in ipairs(entry.implicitIds or {}) do - local mod = copyTable(data.itemMods.ItemExclusive[modId] or error("mod id doesn't exist " .. modId)) - mod.type = "Implicit" - - -- create trade type mask for base type - local maskOverride = {} - for tradeName, typeNames in pairs(tradeCategoryNames) do - for _, typeName in ipairs(typeNames) do - local entryName = entry.type - if entry.subType then - entryName = entryName .. ": " .. entry.subType - end - if typeName == entryName then - maskOverride[tradeName] = true; - break - end - end - end - - -- mask found process implicit mod this avoids processing unimplemented bases - if next(maskOverride) ~= nil then - self:ProcessMod("", mod, tradeQueryStatsParsed, regularItemMask, maskOverride) - end + processImplicit(entry, modId, "Implicit") + end + -- talismans have implicit-like enchants on the bases + for _, modId in ipairs(entry.enchantIds or {}) do + processImplicit(entry, modId, "Enchant") end ::continue:: end @@ -769,6 +778,7 @@ function TradeQueryGeneratorClass:ExecuteQuery() if self.calcContext.options.includeCorrupted then self:GenerateModWeights(self.modData["Corrupted"]) end + self:GenerateModWeights(self.modData["Enchant"]) if self.calcContext.options.includeScourge then self:GenerateModWeights(self.modData["Scourge"]) end @@ -1119,8 +1129,8 @@ function TradeQueryGeneratorClass:RequestQuery(slot, context, statWeights, callb end if isAmuletSlot then - controls.includeTalisman = new("CheckBoxControl", {"TOPRIGHT",lastItemAnchor,"BOTTOMRIGHT"}, {0, 5, 18}, "Talisman Mods:", function(state) end) - controls.includeTalisman.state = (self.lastIncludeTalisman == nil or self.lastIncludeTalisman == true) + controls.includeTalisman = new("CheckBoxControl", { "TOPRIGHT", lastItemAnchor, "BOTTOMRIGHT" }, { 0, 5, 18 }, "Talisman Mods:", function(state) end, "Whether talisman enchant mods should be included. Disabled by default due to the maximum filter limit.") + controls.includeTalisman.state = not not self.lastIncludeTalisman updateLastAnchor(controls.includeTalisman) end diff --git a/src/Data/Bases/amulet.lua b/src/Data/Bases/amulet.lua index 623aa790d2..9a9f7ba01c 100644 --- a/src/Data/Bases/amulet.lua +++ b/src/Data/Bases/amulet.lua @@ -748,6 +748,7 @@ itemBases["Chieftain Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "16% increased Area of Effect", + enchantIds = { "TalismanEnchantAreaOfEffect", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, @@ -765,6 +766,7 @@ itemBases["Gargantuan Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "15% increased maximum Life", + enchantIds = { "TalismanEnchantMaximumLifeIncreasePercent", }, enchantModTypes = { { "resource", "life" }, }, cannotBeAnointed = true, req = { }, @@ -781,6 +783,7 @@ itemBases["Goliath Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "Projectiles Pierce 3 additional Targets", + enchantIds = { "TalismanEnchantAdditionalPierce", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, @@ -798,6 +801,7 @@ itemBases["Rhoa Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "Gain 15% of Maximum Life as Extra Armour", + enchantIds = { "TalismanEnchantMaximumLifeAddedAsArmour", }, enchantModTypes = { { "defences" }, }, cannotBeAnointed = true, req = { }, @@ -815,6 +819,7 @@ itemBases["Blood Viper Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "20% increased Cooldown Recovery Rate", + enchantIds = { "TalismanEnchantGlobalCooldownRecovery", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, @@ -832,6 +837,7 @@ itemBases["Chimeral Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "30% increased Projectile Speed", + enchantIds = { "TalismanEnchantProjectileSpeed", }, enchantModTypes = { { "speed" }, }, cannotBeAnointed = true, req = { }, @@ -849,6 +855,7 @@ itemBases["Squid Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "30% increased maximum Mana", + enchantIds = { "TalismanEnchantMaximumManaIncreasePercent", }, enchantModTypes = { { "resource", "mana" }, }, cannotBeAnointed = true, req = { }, @@ -866,6 +873,7 @@ itemBases["Sand Spitter Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "12% increased Movement Speed", + enchantIds = { "TalismanEnchantMovementVelocity", }, enchantModTypes = { { "speed" }, }, cannotBeAnointed = true, req = { }, @@ -883,6 +891,7 @@ itemBases["Shield Crab Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "30% increased Global Defences", + enchantIds = { "TalismanEnchantAllDefences", }, enchantModTypes = { { "defences" }, }, cannotBeAnointed = true, req = { }, @@ -900,6 +909,7 @@ itemBases["Goatman Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "Hits ignore Enemy Physical Damage Reduction", + enchantIds = { "TalismanEnchantIgnoreEnemyArmour", }, enchantModTypes = { { "physical" }, }, cannotBeAnointed = true, req = { }, @@ -917,6 +927,7 @@ itemBases["Devourer Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "Damage Penetrates 15% Fire Resistance", + enchantIds = { "TalismanEnchantFireResistancePenetration", }, enchantModTypes = { { "elemental_damage", "damage", "elemental", "fire" }, }, cannotBeAnointed = true, req = { }, @@ -934,6 +945,7 @@ itemBases["Plagued Arachnid Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "35% increased Effect of Withered", + enchantIds = { "TalismanEnchantWitheredEffect", }, enchantModTypes = { { "chaos" }, }, cannotBeAnointed = true, req = { }, @@ -951,6 +963,7 @@ itemBases["Watcher Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "Damage Penetrates 15% Lightning Resistance", + enchantIds = { "TalismanEnchantLightningResistancePenetration", }, enchantModTypes = { { "elemental_damage", "damage", "elemental", "lightning" }, }, cannotBeAnointed = true, req = { }, @@ -968,6 +981,7 @@ itemBases["Savage Crab Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "Damage Penetrates 15% Cold Resistance", + enchantIds = { "TalismanEnchantColdResistancePenetration", }, enchantModTypes = { { "elemental_damage", "damage", "elemental", "cold" }, }, cannotBeAnointed = true, req = { }, @@ -985,6 +999,7 @@ itemBases["Flame Hellion Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "+4% to maximum Fire Resistance", + enchantIds = { "TalismanEnchantMaximumFireResist", }, enchantModTypes = { { "elemental", "fire", "resistance" }, }, cannotBeAnointed = true, req = { }, @@ -1002,6 +1017,7 @@ itemBases["Frost Hellion Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "+4% to maximum Cold Resistance", + enchantIds = { "TalismanEnchantMaximumColdResist", }, enchantModTypes = { { "elemental", "cold", "resistance" }, }, cannotBeAnointed = true, req = { }, @@ -1019,6 +1035,7 @@ itemBases["Lynx Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "+4% to maximum Lightning Resistance", + enchantIds = { "TalismanEnchantMaximumLightningResistance", }, enchantModTypes = { { "elemental", "lightning", "resistance" }, }, cannotBeAnointed = true, req = { }, @@ -1036,6 +1053,7 @@ itemBases["Ape Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "+1 to Minimum Endurance, Frenzy and Power Charges", + enchantIds = { "TalismanEnchantMinimumEndurancePowerFrenzyCharges", }, enchantModTypes = { { "endurance_charge", "power_charge", "frenzy_charge" }, }, cannotBeAnointed = true, req = { }, @@ -1053,6 +1071,7 @@ itemBases["Wolf Alpha Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "+40% to Global Critical Strike Multiplier", + enchantIds = { "TalismanEnchantCriticalStrikeMultiplier", }, enchantModTypes = { { "damage", "critical" }, }, cannotBeAnointed = true, req = { }, @@ -1070,6 +1089,7 @@ itemBases["Magma Hound Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "Unaffected by Ignite", + enchantIds = { "TalismanEnchantUnaffectedByIgnite", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, @@ -1087,6 +1107,7 @@ itemBases["Pitbull Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "Warcries Exert 1 additional Attack", + enchantIds = { "TalismanEnchantWarcriesExertAnAdditionalAttack", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, @@ -1104,6 +1125,7 @@ itemBases["Ursa Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "30% increased Effect of your Marks", + enchantIds = { "TalismanEnchantMarkEffect", }, enchantModTypes = { { "caster", "curse" }, }, cannotBeAnointed = true, req = { }, @@ -1121,6 +1143,7 @@ itemBases["Taurus Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "+1 to Maximum Endurance Charges", + enchantIds = { "TalismanEnchantMaximumEnduranceCharges", }, enchantModTypes = { { "endurance_charge" }, }, cannotBeAnointed = true, req = { }, @@ -1138,6 +1161,7 @@ itemBases["Retch Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "+1 to Maximum Power Charges", + enchantIds = { "TalismanEnchantIncreasedMaximumPowerCharges", }, enchantModTypes = { { "power_charge" }, }, cannotBeAnointed = true, req = { }, @@ -1155,6 +1179,7 @@ itemBases["Cobra Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "+1 to Maximum Frenzy Charges", + enchantIds = { "TalismanEnchantMaximumFrenzyCharges", }, enchantModTypes = { { "frenzy_charge" }, }, cannotBeAnointed = true, req = { }, @@ -1172,6 +1197,7 @@ itemBases["Carrion Queen Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "+1 to maximum number of Spectres", + enchantIds = { "TalismanEnchantMaximumSpectreCount", }, enchantModTypes = { { "minion" }, }, cannotBeAnointed = true, req = { }, @@ -1189,6 +1215,7 @@ itemBases["Scrabbler Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "+2 to Level of all Herald Skill Gems", + enchantIds = { "TalismanEnchantGlobalHeraldGemlevel", }, enchantModTypes = { { "gem" }, }, cannotBeAnointed = true, req = { }, @@ -1206,6 +1233,7 @@ itemBases["Black Widow Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "Utility Flasks gain 2 Charges every 3 seconds", + enchantIds = { "TalismanEnchantUtilityFlaskPassiveChargeGain", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, @@ -1223,6 +1251,7 @@ itemBases["Scorpion Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "+20% to Damage over Time Multiplier", + enchantIds = { "TalismanEnchantGlobalDamageOverTimeMultiplier", }, enchantModTypes = { { "dot_multi", "damage" }, }, cannotBeAnointed = true, req = { }, @@ -1240,6 +1269,7 @@ itemBases["Tiger Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "8% increased Action Speed", + enchantIds = { "TalismanEnchantActionSpeedReduction", }, enchantModTypes = { { "speed" }, }, cannotBeAnointed = true, req = { }, @@ -1257,6 +1287,7 @@ itemBases["Vulture Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "Skills fire an additional Projectile", + enchantIds = { "TalismanEnchantAdditionalProjectiles", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, @@ -1274,6 +1305,7 @@ itemBases["Rhex Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "100% of Cold and Lightning Damage from Hits taken as Fire Damage", + enchantIds = { "TalismanEnchantColdAndLightningDamageTakenAsFire", }, enchantModTypes = { { "elemental", "fire", "cold", "lightning" }, }, cannotBeAnointed = true, req = { }, @@ -1291,6 +1323,7 @@ itemBases["Hybrid Arachnid Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "Minions have +30% to Damage over Time Multiplier", + enchantIds = { "TalismanEnchantMinionDotMultiplier", }, enchantModTypes = { { "damage", "minion" }, }, cannotBeAnointed = true, req = { }, @@ -1308,6 +1341,7 @@ itemBases["Octopus Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "20% chance to Freeze Enemies for 1 second when they Hit you", + enchantIds = { "TalismanEnchantFreezeEnemiesWhenHitChance", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, @@ -1325,6 +1359,7 @@ itemBases["Spider Crab Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "+15% to Quality of all Skill Gems", + enchantIds = { "TalismanEnchantGlobalSkillGemQuality", }, enchantModTypes = { { "gem" }, }, cannotBeAnointed = true, req = { }, @@ -1342,6 +1377,7 @@ itemBases["Great Maw Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "15% increased Attributes", + enchantIds = { "TalismanEnchantPercentageAllAttributes", }, enchantModTypes = { { "attribute" }, }, cannotBeAnointed = true, req = { }, @@ -1359,6 +1395,7 @@ itemBases["Croaker Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "+1 to Level of all Skill Gems", + enchantIds = { "TalismanEnchantGlobalSkillGemLevel", }, enchantModTypes = { { "gem" }, }, cannotBeAnointed = true, req = { }, @@ -1376,6 +1413,7 @@ itemBases["Craicic Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "100% increased Aspect of the Crab Buff Effect", + enchantIds = { "TalismanEnchantCrabAspectBuffEffect", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, @@ -1393,6 +1431,7 @@ itemBases["Fenumal Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "100% increased Aspect of the Spider Debuff Effect", + enchantIds = { "TalismanEnchantSpiderAspectDebuffEffect", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, @@ -1410,6 +1449,7 @@ itemBases["Saqawine Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "100% increased Aspect of the Avian Buff Effect", + enchantIds = { "TalismanEnchantAvianAspectBuffEffect", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, @@ -1427,6 +1467,7 @@ itemBases["Farric Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "100% increased Aspect of the Cat Buff Effect", + enchantIds = { "TalismanEnchantCatAspectBuffEffect", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, @@ -1445,6 +1486,7 @@ itemBases["Greatwolf Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "44% increased Damage per Moon Rite completed", + enchantIds = { "TalismanEnchantGreatwolf", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, @@ -1462,6 +1504,7 @@ itemBases["Black Maw Talisman"] = { influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicitModTypes = { }, enchant = "Has 1 Socket", + enchantIds = { "TalismanHasOneSocket_", }, enchantModTypes = { { }, }, cannotBeAnointed = true, req = { }, diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index dd4e1e966f..014c564562 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -8213,6 +8213,578 @@ return { }, }, }, + ["Enchant"] = { + ["10630_UnaffectedByIgnite"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2635869389", + ["text"] = "Unaffected by Ignite", + ["type"] = "enchant", + }, + }, + ["10727_WarcriesExertAnAdditionalAttack"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1434716233", + ["text"] = "Warcries Exert # additional Attack", + ["type"] = "enchant", + }, + }, + ["10782_WitheredEffect"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2545584555", + ["text"] = "#% increased Effect of Withered", + ["type"] = "enchant", + }, + }, + ["1206_PercentageAllAttributes"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "enchant", + }, + }, + ["1265_GlobalDamageOverTimeMultiplier"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3988349707", + ["text"] = "+#% to Damage over Time Multiplier", + ["type"] = "enchant", + }, + }, + ["1266_MinionDotMultiplier"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2759003954", + ["text"] = "Minions have +#% to Damage over Time Multiplier", + ["type"] = "enchant", + }, + }, + ["1511_CriticalStrikeMultiplier"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "enchant", + }, + }, + ["1593_MaximumLifeIncreasePercent"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "enchant", + }, + }, + ["1603_MaximumManaIncreasePercent"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "enchant", + }, + }, + ["1646_MaximumFireResist"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "enchant", + }, + }, + ["1652_MaximumColdResist"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "enchant", + }, + }, + ["1657_MaximumLightningResistance"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "enchant", + }, + }, + ["1813_AdditionalPierce"] = { + ["Amulet"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "enchant", + }, + }, + ["1815_AdditionalProjectiles"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_74338099", + ["text"] = "Skills fire an additional Projectile", + ["type"] = "enchant", + }, + }, + ["1819_ProjectileSpeed"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "enchant", + }, + }, + ["1821_MovementVelocity"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "enchant", + }, + }, + ["1827_MaximumEnduranceCharges"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1515657623", + ["text"] = "+# to Maximum Endurance Charges", + ["type"] = "enchant", + }, + }, + ["1832_MaximumFrenzyCharges"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4078695", + ["text"] = "+# to Maximum Frenzy Charges", + ["type"] = "enchant", + }, + }, + ["1837_IncreasedMaximumPowerCharges"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_227523295", + ["text"] = "+# to Maximum Power Charges", + ["type"] = "enchant", + }, + }, + ["1903_AreaOfEffect"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "enchant", + }, + }, + ["2184_MaximumSpectreCount"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_125218179", + ["text"] = "+# to maximum number of Spectres", + ["type"] = "enchant", + }, + }, + ["2624_MarkEffect"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_803185500", + ["text"] = "#% increased Effect of your Marks", + ["type"] = "enchant", + }, + }, + ["2867_AllDefences"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "enchant", + }, + }, + ["3015_FireResistancePenetration"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "enchant", + }, + }, + ["3017_ColdResistancePenetration"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "enchant", + }, + }, + ["3018_LightningResistancePenetration"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "enchant", + }, + }, + ["3215_ColdAndLightningDamageTakenAsFire"] = { + ["Amulet"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3554587210", + ["text"] = "#% of Cold and Lightning Damage from Hits taken as Fire Damage", + ["type"] = "enchant", + }, + }, + ["4571_ActionSpeedReduction"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2878959938", + ["text"] = "#% increased Action Speed", + ["type"] = "enchant", + }, + }, + ["4678_GlobalSkillGemLevel"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4283407333", + ["text"] = "+# to Level of all Skill Gems", + ["type"] = "enchant", + }, + }, + ["4679_GlobalSkillGemQuality"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3655769732", + ["text"] = "+#% to Quality of all Skill Gems", + ["type"] = "enchant", + }, + }, + ["4835_AvianAspectBuffEffect"] = { + ["Amulet"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1746347097", + ["text"] = "#% increased Aspect of the Avian Buff Effect", + ["type"] = "enchant", + }, + }, + ["4838_CatAspectBuffEffect"] = { + ["Amulet"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4065740293", + ["text"] = "#% increased Aspect of the Cat Buff Effect", + ["type"] = "enchant", + }, + }, + ["4839_CrabAspectBuffEffect"] = { + ["Amulet"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1883691564", + ["text"] = "#% increased Aspect of the Crab Buff Effect", + ["type"] = "enchant", + }, + }, + ["4840_SpiderAspectDebuffEffect"] = { + ["Amulet"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2030415947", + ["text"] = "#% increased Aspect of the Spider Debuff Effect", + ["type"] = "enchant", + }, + }, + ["5058_GlobalCooldownRecovery"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + }, + ["5757_FreezeEnemiesWhenHitChance"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2168861013", + ["text"] = "#% chance to Freeze Enemies for 1 second when they Hit you", + ["type"] = "enchant", + }, + }, + ["70_HasXSockets"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "enchant", + }, + }, + ["7229_GlobalHeraldGemlevel"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_776287420", + ["text"] = "+# to Level of all Herald Skill Gems", + ["type"] = "enchant", + }, + }, + ["7269_IgnoreEnemyArmour"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_942531362", + ["text"] = "Hits ignore Enemy Physical Damage Reduction", + ["type"] = "enchant", + }, + }, + ["9284_MaximumLifeAddedAsArmour"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4118694562", + ["text"] = "Gain #% of Maximum Life as Extra Armour", + ["type"] = "enchant", + }, + }, + ["9390_MinimumEndurancePowerFrenzyCharges"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_66303477", + ["text"] = "+# to Minimum Endurance, Frenzy and Power Charges", + ["type"] = "enchant", + }, + }, + }, ["Exarch"] = { ["10189_BrandAttachmentRange"] = { ["Boots"] = { @@ -9838,6 +10410,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 +11230,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 +23367,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 +23821,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 +26676,7 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_771127912", + ["id"] = "explicit.stat_1559341337", ["text"] = "Lose # Life per second", ["type"] = "explicit", }, @@ -26057,7 +26686,7 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_771127912", + ["id"] = "explicit.stat_1559341337", ["text"] = "Lose # Life per second", ["type"] = "explicit", }, @@ -26067,7 +26696,7 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_771127912", + ["id"] = "explicit.stat_1559341337", ["text"] = "Lose # Life per second", ["type"] = "explicit", }, @@ -49230,6 +49859,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 +50694,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 +51497,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 +52219,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 +54131,16 @@ return { ["type"] = "explicit", }, }, + ["919_DeepwaterSwordMeleeDamageWhileBurning"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1353128245", + ["text"] = "#% more Melee Damage while Burning", + ["type"] = "explicit", + }, + }, ["921_FlaskCurseImmunity"] = { ["specialCaseData"] = { }, @@ -55410,6 +56129,20 @@ return { ["type"] = "implicit", }, }, + ["1206_PercentageAllAttributes"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "implicit", + }, + }, ["1207_PercentageStrength"] = { ["2HMace"] = { ["max"] = 10, @@ -55428,6 +56161,34 @@ return { ["type"] = "implicit", }, }, + ["1214_AllDamage"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "implicit", + }, + }, + ["1221_AttackDamage"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "implicit", + }, + }, ["1233_DegenerationDamage"] = { ["Gloves"] = { ["max"] = 18, @@ -55447,6 +56208,10 @@ return { ["max"] = 40, ["min"] = 8, }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, ["Chest"] = { ["max"] = 10, ["min"] = 3, @@ -55481,6 +56246,10 @@ return { ["max"] = 12, ["min"] = 8, }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, ["Belt"] = { ["max"] = 24, ["min"] = 12, @@ -55508,6 +56277,20 @@ return { ["type"] = "implicit", }, }, + ["1265_GlobalDamageOverTimeMultiplier"] = { + ["Amulet"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3988349707", + ["text"] = "+#% to Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, ["1272_BleedDotMultiplier"] = { ["2HAxe"] = { ["max"] = 20, @@ -55544,6 +56327,20 @@ return { ["type"] = "implicit", }, }, + ["1381_FireDamagePercentage"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "implicit", + }, + }, ["1384_FireDamage"] = { ["Quiver"] = { ["max"] = 21, @@ -55577,6 +56374,20 @@ return { ["type"] = "implicit", }, }, + ["1390_ColdDamagePercentage"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "implicit", + }, + }, ["1392_AddedColdDamageColdPenetration"] = { ["Helmet"] = { ["max"] = 106.5, @@ -55641,6 +56452,20 @@ return { ["type"] = "implicit", }, }, + ["1401_LightningDamagePercentage"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "implicit", + }, + }, ["1404_LightningDamage"] = { ["Quiver"] = { ["max"] = 3, @@ -55656,6 +56481,10 @@ return { }, }, ["1409_IncreasedChaosDamage"] = { + ["Amulet"] = { + ["max"] = 31, + ["min"] = 19, + }, ["Ring"] = { ["max"] = 23, ["min"] = 17, @@ -55810,6 +56639,10 @@ return { ["max"] = 100, ["min"] = 80, }, + ["Amulet"] = { + ["max"] = 50, + ["min"] = 40, + }, ["Dagger"] = { ["max"] = 45, ["min"] = 40, @@ -55884,6 +56717,10 @@ return { ["max"] = 50, ["min"] = 15, }, + ["Amulet"] = { + ["max"] = 36, + ["min"] = 24, + }, ["Bow"] = { ["max"] = 25, ["min"] = 15, @@ -55993,6 +56830,10 @@ return { }, }, ["1593_MaximumLifeIncreasePercent"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 8, + }, ["Ring"] = { ["max"] = 7, ["min"] = 5, @@ -56081,6 +56922,10 @@ return { }, }, ["1603_MaximumManaIncreasePercent"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, ["Ring"] = { ["max"] = 10, ["min"] = 8, @@ -56413,6 +57258,20 @@ return { ["type"] = "implicit", }, }, + ["1813_AdditionalPierce"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "implicit", + }, + }, ["1814_AdditionalArrowPierce"] = { ["Quiver"] = { ["max"] = 1, @@ -56525,6 +57384,10 @@ return { ["max"] = 20, ["min"] = 15, }, + ["Amulet"] = { + ["max"] = 8, + ["min"] = 5, + }, ["sign"] = "", ["specialCaseData"] = { }, @@ -56592,7 +57455,7 @@ return { }, ["1967_LifeRegenerationRatePercentage"] = { ["Amulet"] = { - ["max"] = 1.6, + ["max"] = 2, ["min"] = 1.2, }, ["sign"] = "", @@ -56725,6 +57588,34 @@ return { ["type"] = "implicit", }, }, + ["2069_AttackAndCastSpeed"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "implicit", + }, + }, + ["2183_MaximumMinionCount"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_966747987", + ["text"] = "+# to maximum number of Raised Zombies", + ["type"] = "implicit", + }, + }, ["2193_CurseEffectElementalAilmentDurationOnSelf"] = { ["Ring"] = { ["max"] = 50, @@ -56778,6 +57669,20 @@ return { ["type"] = "implicit", }, }, + ["2296_ReducedPhysicalDamageTaken"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "implicit", + }, + }, ["2296_UulNetolBreachRingImplicit"] = { ["Ring"] = { ["max"] = 3, @@ -56891,6 +57796,48 @@ return { ["type"] = "implicit", }, }, + ["2655_EnduranceChargeOnKillChance"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "implicit", + }, + }, + ["2657_FrenzyChargeOnKillChance"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "implicit", + }, + }, + ["2659_PowerChargeOnKillChance"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "implicit", + }, + }, ["2680_ReflectedAilmentDurationOnSelf"] = { ["Ring"] = { ["max"] = -30, @@ -57099,7 +58046,25 @@ return { ["type"] = "implicit", }, }, + ["2835_ChanceToFreezeShockIgnite"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_800141891", + ["text"] = "#% chance to Freeze, Shock and Ignite", + ["type"] = "implicit", + }, + }, ["2867_AllDefences"] = { + ["Amulet"] = { + ["max"] = 25, + ["min"] = 15, + }, ["Ring"] = { ["max"] = 10, ["min"] = 5, @@ -57141,6 +58106,20 @@ return { ["type"] = "implicit", }, }, + ["2970_PhysicalDamageAddedAsRandomElement"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3753703249", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "implicit", + }, + }, ["3014_ElementalPenetration"] = { ["1HWeapon"] = { ["max"] = 6, @@ -57159,6 +58138,90 @@ return { ["type"] = "implicit", }, }, + ["3211_FireDamageTakenAsCold"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2522672898", + ["text"] = "#% of Fire Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, + ["3212_FireDamageTakenAsLightning"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1504091975", + ["text"] = "#% of Fire Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, + ["3213_ColdDamageTakenAsFire"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1189760108", + ["text"] = "#% of Cold Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, + ["3214_ColdDamageTakenAsLightning"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1313503107", + ["text"] = "#% of Cold Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, + ["3216_LightningDamageTakenAsFire"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3375859421", + ["text"] = "#% of Lightning Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, + ["3218_LightningDamageTakenAsCold"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1017730114", + ["text"] = "#% of Lightning Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, ["3308_IncreasedStunRecoveryReducedStunThreshold"] = { ["Boots"] = { ["max"] = -20, @@ -57205,6 +58268,20 @@ return { ["type"] = "implicit", }, }, + ["3619_FishingBiteSensitivity"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1296614065", + ["text"] = "#% increased Fish Bite Sensitivity", + ["type"] = "implicit", + }, + }, ["4302_ArmourAndEvasionRatingImplicit"] = { ["Belt"] = { ["max"] = 320, diff --git a/src/Data/TradeSiteStats.lua b/src/Data/TradeSiteStats.lua index 7418eb80e0..f80c8b43a6 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", @@ -8491,6 +8561,11 @@ return { ["text"] = "#% increased Rarity of Fish Caught", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2459602321", + ["text"] = "#% increased Rarity of Fish Caught per held Dead Fish", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2786105132", ["text"] = "#% increased Rarity of Items Dropped by Abyssal Troves in your Maps", @@ -8891,6 +8966,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 +9466,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 +9551,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 +12091,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 +12621,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 +13791,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 +15916,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 +16766,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", @@ -17406,6 +17536,16 @@ return { ["text"] = "Allocates Inspirational if you have the matching modifier on Forbidden Flesh", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2460506030|3154", + ["text"] = "Allocates Instruments of Justice if you have the matching modifier on Forbidden Flame", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1190333629|3154", + ["text"] = "Allocates Instruments of Justice if you have the matching modifier on Forbidden Flesh", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2460506030|19417", ["text"] = "Allocates Instruments of Virtue if you have the matching modifier on Forbidden Flame", @@ -18176,6 +18316,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 +18546,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 +18726,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 +18966,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 +19076,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 +19976,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", @@ -20236,6 +20406,11 @@ return { ["text"] = "Can be modified while Corrupted", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3431224784", + ["text"] = "Can catch Abyssal Fish", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1135194732", ["text"] = "Can have # additional Enchantment Modifiers", @@ -21176,6 +21351,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 +21436,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", @@ -21771,6 +21956,11 @@ return { ["text"] = "Does not inflict Mana Burn over time", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2084152132", + ["text"] = "Draugurflames burn enemies around you for 8 seconds after you Ignite a target", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3595254837", ["text"] = "Drops Burning Ground while moving, dealing # Fire Damage per second for # second", @@ -23476,6 +23666,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 +24011,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 +24321,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 +24421,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 +24451,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 +25636,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 +26346,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 +26951,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", @@ -26701,6 +27011,11 @@ return { ["text"] = "Mines have #% increased Detonation Speed", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2445634879", + ["text"] = "Mines have a #% chance to be Detonated an Additional Time", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3410776118", ["text"] = "Minimum Endurance Charges equal to Maximum while stationary Minimum Frenzy Charges equal to Maximum while stationary Minimum Power Charges equal to Maximum while stationary", @@ -26961,6 +27276,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 +27741,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 +27766,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 +28656,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 +28751,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 +28876,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 +29026,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 +29071,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 +29266,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 +30327,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", }, { @@ -30747,678 +31142,3963 @@ return { ["type"] = "explicit", }, { - ["id"] = "explicit.stat_4171078509", - ["text"] = "Retaliation Skills have #% Arcane Might", + ["id"] = "explicit.stat_4171078509", + ["text"] = "Retaliation Skills have #% Arcane Might", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1173860008", + ["text"] = "Retaliation Skills have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1390113017", + ["text"] = "Reward Room Monsters deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_839556554", + ["text"] = "Reward Room Monsters take #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4056408881", + ["text"] = "Reward Rooms have #% increased Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3360430812", + ["text"] = "Rhoa Feather Lure", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1809329372", + ["text"] = "Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3536082205", + ["text"] = "Right Ring slot: Cover Enemies in Frost for # seconds when you Freeze them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1223912433", + ["text"] = "Right ring slot: +# to Armour", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_417509375", + ["text"] = "Right ring slot: +# to maximum Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1555918911", + ["text"] = "Right ring slot: Projectiles from Spells Chain +# times", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2933024469", + ["text"] = "Right ring slot: Projectiles from Spells cannot Fork", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3676958605", + ["text"] = "Right ring slot: Regenerate #% of Energy Shield per second", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_651133374", + ["text"] = "Right ring slot: Shockwave has +# to Cooldown Uses", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_783864527", + ["text"] = "Right ring slot: You cannot Regenerate Mana", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3829555156", + ["text"] = "Right ring slot: you and your Minions prevent +#% of Reflected Physical Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2651470813", + ["text"] = "Rightmost # Magic Utility Flask constantly applies its Flask Effect to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_120737942", + ["text"] = "Ritual Altars in Area allow rerolling Favours an additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_120737942", + ["text"] = "Ritual Altars in your Maps allow rerolling Favours an additional time", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2219456349", + ["text"] = "Ritual Altars in your Maps can have #% increased number of Spawned Monsters at once", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2428948876", + ["text"] = "Ritual Altars in your Maps spawn Monsters #% faster", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1724306833", + ["text"] = "Ritual Splinters offered at Ritual Altars in your Maps have #% increased Stack Size", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1080855680", + ["text"] = "Rogue Exiles deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_600723636", + ["text"] = "Rogue Exiles drop # additional Basic Currency Items", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4143730600", + ["text"] = "Rogue Exiles drop an additional Jewel", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3795004497", + ["text"] = "Rogue Exiles each drop a Skill Gem with Quality", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2653164718", + ["text"] = "Rogue Exiles each have a Rogue Exile ally", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_399295164", + ["text"] = "Rogue Exiles have #% increased Attack, Cast and Movement Speed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2008953542", + ["text"] = "Rogue Exiles have #% more Rarity of Items Dropped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2646493318", + ["text"] = "Rogue Exiles in your Maps have #% chance to drop an additional Currency Item", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1379148633", + ["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", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_795239488", + ["text"] = "Runic Monsters deal #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_120845723", + ["text"] = "Runic Monsters have #% more Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_613752285", + ["text"] = "Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_545408899", + ["text"] = "Sacrifice #% of your Life when you Use or Trigger a Spell Skill", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1849225887", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Abyss Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_723578929", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Anarchy Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_9949109", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Bestiary Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1048062553", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Betrayal Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2507275343", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Beyond Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3866432319", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Blight Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1762451150", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Cartography Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1571899068", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Delirium Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1684527465", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Divination Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2477998669", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Domination Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_751635784", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Essence Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_46751559", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Expedition Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1560748306", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Harbinger Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_316950976", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Harvest Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1215465898", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Incursion Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3346769137", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Kalguuran Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1858240316", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Legion Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2810822634", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Ritual Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1395445308", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Sulphite Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2584308379", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Titanic Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3070577277", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Torment Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2263557454", + ["text"] = "Scarabs dropped in Area have #% increased chance to be Ultimatum Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1849225887", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Abyss Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_723578929", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Anarchy Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_9949109", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Bestiary Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1048062553", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Betrayal Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2507275343", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Beyond Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3866432319", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Blight Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1762451150", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Cartography Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1571899068", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Delirium Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1684527465", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Divination Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2477998669", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Domination Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_751635784", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Essence Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_46751559", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Expedition Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1560748306", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Harbinger Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_316950976", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Harvest Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1215465898", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Incursion Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3346769137", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Kalguuran Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1858240316", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Legion Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2810822634", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Ritual Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1395445308", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Sulphite Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2584308379", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Titanic Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3070577277", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Torment Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2263557454", + ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Ultimatum Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3017211510", + ["text"] = "Scarabs found in Area have #% increased chance to be Ambush Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2789471089", + ["text"] = "Scarabs found in your Maps are more likely to be less common varieties", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1978710645", + ["text"] = "Scarabs found in your Maps cannot be Abyss Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_785938790", + ["text"] = "Scarabs found in your Maps cannot be Blight Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1089629910", + ["text"] = "Scarabs found in your Maps cannot be Breach Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_278421201", + ["text"] = "Scarabs found in your Maps cannot be Delirium Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3965835074", + ["text"] = "Scarabs found in your Maps cannot be Expedition Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_388787643", + ["text"] = "Scarabs found in your Maps cannot be Harvest Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3777973541", + ["text"] = "Scarabs found in your Maps cannot be Legion Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1693489030", + ["text"] = "Scarabs found in your Maps cannot be Ritual Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_264552782", + ["text"] = "Scarabs found in your Maps cannot be Ultimatum Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3017211510", + ["text"] = "Scarabs found in your Maps have #% increased chance to be Ambush Scarabs", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_41178696", + ["text"] = "Scorch Enemies in Close Range when you Block", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_385266470", + ["text"] = "Seize the Flesh used by this Graft creates +# Spire", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_650630047", + ["text"] = "Sentinels of Purity deal #% increased Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1881314095", + ["text"] = "Share Endurance Charges with nearby party members", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_956038713", + ["text"] = "Shared Suffering", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2038577923", + ["text"] = "Shepherd of Souls", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2206792089", + ["text"] = "Shock Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_451866048", + ["text"] = "Shock Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3291999509", + ["text"] = "Shock Reflection", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3031766858", + ["text"] = "Shock nearby Enemies for # Seconds when you Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3181879507", + ["text"] = "Shock yourself for # Seconds when you Focus", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2706994884", + ["text"] = "Shocked Enemies you Kill Explode, dealing #% of their Life as Lightning Damage which cannot Shock", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1712740586", + ["text"] = "Shocks from your Hits always increase Damage taken by at least #%", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3446170049", + ["text"] = "Shocks nearby Enemies during Effect, causing 10% increased Damage taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_807955413", + ["text"] = "Shocks you cause are reflected back to you", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_911839512", + ["text"] = "Shocks you inflict during Effect spread to other Enemies within # metre", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_424549222", + ["text"] = "Shocks you inflict spread to other Enemies within # metre", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1640259660", + ["text"] = "Shocks you inflict spread to other Enemies within 1.5 metres", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4256314560", + ["text"] = "Shocks you when you reach Maximum Power Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1124661381", + ["text"] = "Shrapnel Ballista has +# to maximum number of Summoned Totems per 200 Strength", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2305944553", + ["text"] = "Shrines drop a Basic Currency Item when used", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1594755360", + ["text"] = "Shrines grant a random additional Shrine Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2167121354", + ["text"] = "Shrines in your Maps are guarded by at least one Magic Pack", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1594755360", + ["text"] = "Shrines in your Maps grant a random additional Shrine Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2831543675", + ["text"] = "Shrines in your Maps have #% chance to be a Covetous Shrine", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1751949663", + ["text"] = "Shrines in your Maps have #% chance to be guarded by an additional Pack of Monsters", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2125178364", + ["text"] = "Siege Ballista has +# to maximum number of Summoned Totems per 200 Dexterity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1475598909", + ["text"] = "Skeletons gain Added Chaos Damage equal to #% of Maximum Energy Shield on your Equipped Shield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1787073323", + ["text"] = "Skills Chain +# times", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_285624304", + ["text"] = "Skills Chain an additional time while at maximum Frenzy Charges", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_89922905", + ["text"] = "Skills Cost Energy Shield instead of Mana or Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1669220541", + ["text"] = "Skills Cost no Mana during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1031404836", + ["text"] = "Skills Fire # additional Projectile for 4 seconds after you consume a total of 8 Steel Shards", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|126", + ["text"] = "Skills Socketed in your Boots are Supported by level # Added Chaos Damage", + ["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|123", + ["text"] = "Skills Socketed in your Boots are Supported by level # Added Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|122", + ["text"] = "Skills Socketed in your Boots are Supported by level # Additional Accuracy", + ["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|119", + ["text"] = "Skills Socketed in your Boots are Supported by level # Arrow Nova", + ["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|118", + ["text"] = "Skills Socketed in your Boots are Supported by level # Barrage", + ["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|109", + ["text"] = "Skills Socketed in your Boots are Supported by level # Cast on Death", + ["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|53", + ["text"] = "Skills Socketed in your Boots are Supported by level # Chance to Poison", + ["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|99", + ["text"] = "Skills Socketed in your Boots are Supported by level # Cluster Traps", + ["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|103", + ["text"] = "Skills Socketed in your Boots are Supported by level # Combustion", + ["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|30", + ["text"] = "Skills Socketed in your Boots are Supported by level # Critical Strike Affliction", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|133", + ["text"] = "Skills Socketed in your Boots are Supported by level # Cruelty", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|94", + ["text"] = "Skills Socketed in your Boots are Supported by level # Culling Strike", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|142", + ["text"] = "Skills Socketed in your Boots are Supported by level # Cursed Ground", + ["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|148", + ["text"] = "Skills Socketed in your Boots are Supported by level # Devour", + ["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|11", + ["text"] = "Skills Socketed in your Boots are Supported by level # Elemental Army", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|75", + ["text"] = "Skills Socketed in your Boots are Supported by level # Elemental Damage with Attacks", + ["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|163", + ["text"] = "Skills Socketed in your Boots are Supported by level # Exemplar", + ["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|135", + ["text"] = "Skills Socketed in your Boots are Supported by level # Focused Ballista", + ["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|78", + ["text"] = "Skills Socketed in your Boots are Supported by level # Fortify", + ["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|155", + ["text"] = "Skills Socketed in your Boots are Supported by level # Frigid Bond", + ["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|1", + ["text"] = "Skills Socketed in your Boots are Supported by level # Greater Multiple Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|74", + ["text"] = "Skills Socketed in your Boots are Supported by level # Greater Volley", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|153", + ["text"] = "Skills Socketed in your Boots are Supported by level # Guardian's Blessing", + ["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|143", + ["text"] = "Skills Socketed in your Boots are Supported by level # Hex Bloom", + ["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|21", + ["text"] = "Skills Socketed in your Boots are Supported by level # High-Impact Mine", + ["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|72", + ["text"] = "Skills Socketed in your Boots are Supported by level # Ice Bite", + ["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|69", + ["text"] = "Skills Socketed in your Boots are Supported by level # Impale", + ["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|13", + ["text"] = "Skills Socketed in your Boots are Supported by level # Infused Channelling", + ["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|56", + ["text"] = "Skills Socketed in your Boots are Supported by level # Item Rarity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|55", + ["text"] = "Skills Socketed in your Boots are Supported by level # Knockback", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|24", + ["text"] = "Skills Socketed in your Boots are Supported by level # Less Duration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|52", + ["text"] = "Skills Socketed in your Boots are Supported by level # Life Gain on Hit", + ["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|48", + ["text"] = "Skills Socketed in your Boots are Supported by level # Mana Leech", + ["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|47", + ["text"] = "Skills Socketed in your Boots are Supported by level # Meat Shield", + ["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|43", + ["text"] = "Skills Socketed in your Boots are Supported by level # Minefield", + ["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|36", + ["text"] = "Skills Socketed in your Boots are Supported by level # Momentum", + ["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|37", + ["text"] = "Skills Socketed in your Boots are Supported by level # Nightblade", + ["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|136", + ["text"] = "Skills Socketed in your Boots are Supported by level # Overexertion", + ["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|31", + ["text"] = "Skills Socketed in your Boots are Supported by level # Point Blank", + ["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|154", + ["text"] = "Skills Socketed in your Boots are Supported by level # Sacrifice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|157", + ["text"] = "Skills Socketed in your Boots are Supported by level # Sadism", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|19", + ["text"] = "Skills Socketed in your Boots are Supported by level # Second Wind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|18", + ["text"] = "Skills Socketed in your Boots are Supported by level # Slower Projectiles", + ["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|25", + ["text"] = "Skills Socketed in your Boots are Supported by level # Swift Affliction", + ["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|128", + ["text"] = "Skills Socketed in your Boots are Supported by level # Swiftbrand", + ["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|146", + ["text"] = "Skills Socketed in your Boots are Supported by level # Trauma", + ["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|129", + ["text"] = "Skills Socketed in your Boots are Supported by level # Urgent Orders", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|34", + ["text"] = "Skills Socketed in your Boots are Supported by level # Vicious Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|3|3", + ["text"] = "Skills Socketed in your Boots are Supported by level # Vile Toxins", + ["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|3|102", + ["text"] = "Skills Socketed in your Boots are Supported by level # Withering Touch", + ["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|123", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Added Lightning Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|122", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Additional Accuracy", + ["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|120", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Archmage", + ["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|132", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Bloodthirst", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|113", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Bonechill", + ["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|111", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Cast On Critical Strike", + ["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|110", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Cast when Damage Taken", + ["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|104", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Chance to Bleed", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|80", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Chance to Flee", + ["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|96", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Concentrated Effect", + ["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|151", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Corrupting Cry", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|30", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Critical Strike Affliction", + ["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|91", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Decay", + ["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|86", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Energy Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|140", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Eternal Blessing", + ["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|159", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Expert Retaliation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|85", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Faster Attacks", + ["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|82", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Feeding Frenzy", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|81", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Fire Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|127", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Fist of War", + ["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|160", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Focused Channelling", + ["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|78", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Fortify", + ["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|155", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Frigid Bond", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|76", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Generosity", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|1", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Greater Multiple Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|74", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Greater Volley", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|153", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Guardian's Blessing", + ["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|73", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Hypothermia", + ["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|60", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Infernal Legion", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|13", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Infused Channelling", + ["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|51", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Life Leech", + ["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|50", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Lightning Penetration", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|156", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Locus Mine", + ["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|63", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Minion Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|62", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Minion Life", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|61", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Minion Speed", + ["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|36", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Momentum", + ["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|54", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Multiple Projectiles", + ["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|38", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Multiple Traps", + ["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|32", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Pierce", + ["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|31", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Point Blank", + ["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|28", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Pulverise", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|27", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Rage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|145", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Returning Projectiles", + ["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|154", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Sacrifice", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|157", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Sadism", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|19", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Second Wind", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|18", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Slower Projectiles", + ["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|10", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Summon Phantasm", + ["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|7", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Trap and Mine Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|2|146", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Trauma", + ["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|5", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Unbound Ailments", + ["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|3", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Vile Toxins", + ["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|152", + ["text"] = "Skills Socketed in your Gloves are Supported by level # Volatility", + ["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|122", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Additional Accuracy", + ["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|114", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Arrogance", + ["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|26", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Ballista Totem", + ["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|22", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Blastchain Mine", + ["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|109", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Cast on Death", + ["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|110", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Cast when Damage Taken", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|107", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Cast when Stunned", + ["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|53", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Chance to Poison", + ["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|77", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Charged Traps", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|100", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Close Combat", + ["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|103", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Combustion", + ["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|30", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Critical Strike Affliction", + ["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|142", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Cursed Ground", + ["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|88", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Elemental Proliferation", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|87", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Endurance Charge on Melee Stun", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|86", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Energy Leech", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|140", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Eternal Blessing", + ["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|163", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Exemplar", + ["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|135", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Focused Ballista", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|160", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Focused Channelling", + ["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|149", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Fresh Meat", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|155", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Frigid Bond", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|76", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Generosity", + ["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|74", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Greater Volley", + ["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|21", + ["text"] = "Skills Socketed in your Helmet are Supported by level # High-Impact Mine", + ["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|70", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Immolate", + ["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|60", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Infernal Legion", + ["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|58", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Iron Grip", + ["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|52", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Life Gain on Hit", + ["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|49", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Maim", + ["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|45", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Melee Physical Damage", + ["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|43", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Minefield", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|63", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Minion Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|62", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Minion Life", + ["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|36", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Momentum", + ["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|40", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Multistrike", + ["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|141", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Overcharge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|136", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Overexertion", + ["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|130", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Pinpoint", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|31", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Point Blank", + ["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|145", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Returning Projectiles", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|139", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Rupture", + ["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|18", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Slower Projectiles", + ["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|15", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Spell Totem", + ["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|9", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Swift Assembly", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|1|128", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Swiftbrand", + ["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|5", + ["text"] = "Skills Socketed in your Helmet are Supported by level # Unbound Ailments", + ["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", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2023285759", + ["text"] = "Skills deal #% more Damage for each Warcry Exerting them", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_74338099", + ["text"] = "Skills fire an additional Projectile", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_323705912", + ["text"] = "Skills fire an additional Projectile during Effect", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3778002979", + ["text"] = "Skills fire an additional Projectile if 6 Hunter Items are Equipped", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_988207959", + ["text"] = "Skills fire an additional Projectile if you've been Hit Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2809802678", + ["text"] = "Skills fire an additional Projectile if you've used a Movement Skill Recently", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_820155465", + ["text"] = "Skills gain Added Chaos Damage equal to #% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4013794060", + ["text"] = "Skills gain a Base Energy Shield Cost equal to #% of Base Mana Cost", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3605834869", + ["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|124", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Added Fire Damage", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|123", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Added Lightning 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|121", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Arcane Surge", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|120", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Archmage", + ["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|119", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Arrow Nova", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_4089743927|4|26", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Ballista Totem", + ["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|117", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Blasphemy", + ["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|109", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Cast on Death", + ["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|110", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Cast when Damage Taken", + ["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_1173860008", - ["text"] = "Retaliation Skills have #% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_4089743927|4|104", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Chance to Bleed", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1390113017", - ["text"] = "Reward Room Monsters deal #% increased Damage", + ["id"] = "explicit.stat_4089743927|4|80", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Chance to Flee", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_839556554", - ["text"] = "Reward Room Monsters take #% increased Damage", + ["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_4056408881", - ["text"] = "Reward Rooms have #% increased Monsters", + ["id"] = "explicit.stat_4089743927|4|101", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Charged Mines", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3360430812", - ["text"] = "Rhoa Feather Lure", + ["id"] = "explicit.stat_4089743927|4|77", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Charged Traps", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1809329372", - ["text"] = "Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead", + ["id"] = "explicit.stat_4089743927|4|100", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Close Combat", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3536082205", - ["text"] = "Right Ring slot: Cover Enemies in Frost for # seconds when you Freeze them", + ["id"] = "explicit.stat_4089743927|4|99", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Cluster Traps", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1223912433", - ["text"] = "Right ring slot: +# to Armour", + ["id"] = "explicit.stat_4089743927|4|98", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Cold Penetration", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_417509375", - ["text"] = "Right ring slot: +# to maximum Mana", + ["id"] = "explicit.stat_4089743927|4|97", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Cold to Fire", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1555918911", - ["text"] = "Right ring slot: Projectiles from Spells Chain +# times", + ["id"] = "explicit.stat_4089743927|4|103", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Combustion", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2933024469", - ["text"] = "Right ring slot: Projectiles from Spells cannot Fork", + ["id"] = "explicit.stat_4089743927|4|96", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Concentrated Effect", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3676958605", - ["text"] = "Right ring slot: Regenerate #% of Energy Shield per second", + ["id"] = "explicit.stat_4089743927|4|158", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Controlled Blaze", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_651133374", - ["text"] = "Right ring slot: Shockwave has +# to Cooldown Uses", + ["id"] = "explicit.stat_4089743927|4|95", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Controlled Destruction", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_783864527", - ["text"] = "Right ring slot: You cannot Regenerate Mana", + ["id"] = "explicit.stat_4089743927|4|151", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Corrupting Cry", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3829555156", - ["text"] = "Right ring slot: you and your Minions prevent +#% of Reflected Physical Damage", + ["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_2651470813", - ["text"] = "Rightmost # Magic Utility Flask constantly applies its Flask Effect to you", + ["id"] = "explicit.stat_4089743927|4|133", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Cruelty", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_120737942", - ["text"] = "Ritual Altars in Area allow rerolling Favours an additional time", + ["id"] = "explicit.stat_4089743927|4|94", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Culling Strike", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_120737942", - ["text"] = "Ritual Altars in your Maps allow rerolling Favours an additional time", + ["id"] = "explicit.stat_4089743927|4|142", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Cursed Ground", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2219456349", - ["text"] = "Ritual Altars in your Maps can have #% increased number of Spawned Monsters at once", + ["id"] = "explicit.stat_4089743927|4|46", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Damage on Full Life", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2428948876", - ["text"] = "Ritual Altars in your Maps spawn Monsters #% faster", + ["id"] = "explicit.stat_4089743927|4|92", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Deadly Ailments", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1724306833", - ["text"] = "Ritual Splinters offered at Ritual Altars in your Maps have #% increased Stack Size", + ["id"] = "explicit.stat_4089743927|4|91", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Decay", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1080855680", - ["text"] = "Rogue Exiles deal #% increased Damage", + ["id"] = "explicit.stat_4089743927|4|148", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Devour", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_600723636", - ["text"] = "Rogue Exiles drop # additional Basic Currency Items", + ["id"] = "explicit.stat_4089743927|4|90", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Efficacy", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_4143730600", - ["text"] = "Rogue Exiles drop an additional Jewel", + ["id"] = "explicit.stat_4089743927|4|11", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Elemental Army", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3795004497", - ["text"] = "Rogue Exiles each drop a Skill Gem with Quality", + ["id"] = "explicit.stat_4089743927|4|75", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Elemental Damage with Attacks", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2653164718", - ["text"] = "Rogue Exiles each have a Rogue Exile ally", + ["id"] = "explicit.stat_4089743927|4|89", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Elemental Focus", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_399295164", - ["text"] = "Rogue Exiles have #% increased Attack, Cast and Movement Speed", + ["id"] = "explicit.stat_4089743927|4|88", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Elemental Proliferation", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2008953542", - ["text"] = "Rogue Exiles have #% more Rarity of Items Dropped", + ["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_2646493318", - ["text"] = "Rogue Exiles in your Maps have #% chance to drop an additional Currency Item", + ["id"] = "explicit.stat_4089743927|4|86", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Energy Leech", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1379148633", - ["text"] = "Rogue's Markers, Contracts and Blueprints cannot be found in Your Maps", + ["id"] = "explicit.stat_4089743927|4|140", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Eternal Blessing", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_4080245957", - ["text"] = "Runebinder", + ["id"] = "explicit.stat_4089743927|4|161", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Excommunicate", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_795239488", - ["text"] = "Runic Monsters deal #% more Damage", + ["id"] = "explicit.stat_4089743927|4|163", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Exemplar", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_120845723", - ["text"] = "Runic Monsters have #% more Life", + ["id"] = "explicit.stat_4089743927|4|159", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Expert Retaliation", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_613752285", - ["text"] = "Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell", + ["id"] = "explicit.stat_4089743927|4|85", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Faster Attacks", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_545408899", - ["text"] = "Sacrifice #% of your Life when you Use or Trigger a Spell Skill", + ["id"] = "explicit.stat_4089743927|4|84", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Faster Casting", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1849225887", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Abyss Scarabs", + ["id"] = "explicit.stat_4089743927|4|83", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Faster Projectiles", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_723578929", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Anarchy Scarabs", + ["id"] = "explicit.stat_4089743927|4|82", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Feeding Frenzy", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_9949109", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Bestiary Scarabs", + ["id"] = "explicit.stat_4089743927|4|81", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Fire Penetration", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1048062553", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Betrayal Scarabs", + ["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_2507275343", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Beyond Scarabs", + ["id"] = "explicit.stat_4089743927|4|150", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Flamewood", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3866432319", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Blight Scarabs", + ["id"] = "explicit.stat_4089743927|4|135", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Focused Ballista", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1762451150", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Cartography Scarabs", + ["id"] = "explicit.stat_4089743927|4|160", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Focused Channelling", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1571899068", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Delirium Scarabs", + ["id"] = "explicit.stat_4089743927|4|79", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Fork", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1684527465", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Divination Scarabs", + ["id"] = "explicit.stat_4089743927|4|78", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Fortify", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2477998669", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Domination Scarabs", + ["id"] = "explicit.stat_4089743927|4|149", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Fresh Meat", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_751635784", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Essence Scarabs", + ["id"] = "explicit.stat_4089743927|4|155", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Frigid Bond", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_46751559", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Expedition Scarabs", + ["id"] = "explicit.stat_4089743927|4|76", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Generosity", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1560748306", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Harbinger Scarabs", + ["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_316950976", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Harvest Scarabs", + ["id"] = "explicit.stat_4089743927|4|74", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Greater Volley", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1215465898", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Incursion Scarabs", + ["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_3346769137", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Kalguuran Scarabs", + ["id"] = "explicit.stat_4089743927|4|164", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Hallow", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1858240316", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Legion Scarabs", + ["id"] = "explicit.stat_4089743927|4|143", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Hex Bloom", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2810822634", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Ritual Scarabs", + ["id"] = "explicit.stat_4089743927|4|93", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Hextouch", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1395445308", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Sulphite Scarabs", + ["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_2584308379", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Titanic Scarabs", + ["id"] = "explicit.stat_4089743927|4|73", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Hypothermia", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3070577277", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Torment Scarabs", + ["id"] = "explicit.stat_4089743927|4|72", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Ice Bite", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2263557454", - ["text"] = "Scarabs dropped in Area have #% increased chance to be Ultimatum Scarabs", + ["id"] = "explicit.stat_4089743927|4|71", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Ignite Proliferation", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1849225887", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Abyss Scarabs", + ["id"] = "explicit.stat_4089743927|4|70", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Immolate", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_723578929", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Anarchy Scarabs", + ["id"] = "explicit.stat_4089743927|4|69", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Impale", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_9949109", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Bestiary Scarabs", + ["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_1048062553", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Betrayal Scarabs", + ["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_2507275343", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Beyond Scarabs", + ["id"] = "explicit.stat_4089743927|4|65", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Increased Critical Strikes", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3866432319", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Blight Scarabs", + ["id"] = "explicit.stat_4089743927|4|60", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Infernal Legion", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1762451150", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Cartography Scarabs", + ["id"] = "explicit.stat_4089743927|4|13", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Infused Channelling", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1571899068", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Delirium Scarabs", + ["id"] = "explicit.stat_4089743927|4|59", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Innervate", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1684527465", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Divination Scarabs", + ["id"] = "explicit.stat_4089743927|4|23", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Inspiration", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2477998669", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Domination Scarabs", + ["id"] = "explicit.stat_4089743927|4|16", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Intensify", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_751635784", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Essence Scarabs", + ["id"] = "explicit.stat_4089743927|4|58", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Iron Grip", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_46751559", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Expedition Scarabs", + ["id"] = "explicit.stat_4089743927|4|57", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Iron Will", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1560748306", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Harbinger Scarabs", + ["id"] = "explicit.stat_4089743927|4|56", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Item Rarity", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_316950976", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Harvest Scarabs", + ["id"] = "explicit.stat_4089743927|4|55", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Knockback", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1215465898", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Incursion Scarabs", + ["id"] = "explicit.stat_4089743927|4|24", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Less Duration", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3346769137", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Kalguuran Scarabs", + ["id"] = "explicit.stat_4089743927|4|52", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Life Gain on Hit", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1858240316", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Legion Scarabs", + ["id"] = "explicit.stat_4089743927|4|51", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Life Leech", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2810822634", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Ritual Scarabs", + ["id"] = "explicit.stat_4089743927|4|134", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Lifetap", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1395445308", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Sulphite Scarabs", + ["id"] = "explicit.stat_4089743927|4|50", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Lightning Penetration", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2584308379", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Titanic Scarabs", + ["id"] = "explicit.stat_4089743927|4|156", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Locus Mine", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3070577277", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Torment Scarabs", + ["id"] = "explicit.stat_4089743927|4|49", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Maim", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2263557454", - ["text"] = "Scarabs dropped in your Maps have #% increased chance to be Ultimatum Scarabs", + ["id"] = "explicit.stat_4089743927|4|48", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Mana Leech", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3017211510", - ["text"] = "Scarabs found in Area have #% increased chance to be Ambush Scarabs", + ["id"] = "explicit.stat_4089743927|4|144", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Manaforged Arrows", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2789471089", - ["text"] = "Scarabs found in your Maps are more likely to be less common varieties", + ["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_1978710645", - ["text"] = "Scarabs found in your Maps cannot be Abyss Scarabs", + ["id"] = "explicit.stat_4089743927|4|47", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Meat Shield", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_785938790", - ["text"] = "Scarabs found in your Maps cannot be Blight Scarabs", + ["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_1089629910", - ["text"] = "Scarabs found in your Maps cannot be Breach Scarabs", + ["id"] = "explicit.stat_4089743927|4|44", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Melee Splash", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_278421201", - ["text"] = "Scarabs found in your Maps cannot be Delirium Scarabs", + ["id"] = "explicit.stat_4089743927|4|43", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Minefield", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3965835074", - ["text"] = "Scarabs found in your Maps cannot be Expedition Scarabs", + ["id"] = "explicit.stat_4089743927|4|63", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Minion Damage", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_388787643", - ["text"] = "Scarabs found in your Maps cannot be Harvest Scarabs", + ["id"] = "explicit.stat_4089743927|4|62", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Minion Life", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3777973541", - ["text"] = "Scarabs found in your Maps cannot be Legion Scarabs", + ["id"] = "explicit.stat_4089743927|4|61", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Minion Speed", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1693489030", - ["text"] = "Scarabs found in your Maps cannot be Ritual Scarabs", + ["id"] = "explicit.stat_4089743927|4|42", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Mirage Archer", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_264552782", - ["text"] = "Scarabs found in your Maps cannot be Ultimatum Scarabs", + ["id"] = "explicit.stat_4089743927|4|36", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Momentum", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3017211510", - ["text"] = "Scarabs found in your Maps have #% increased chance to be Ambush Scarabs", + ["id"] = "explicit.stat_4089743927|4|64", + ["text"] = "Skills granted by your Passive Tree are Supported by level # More Duration", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_41178696", - ["text"] = "Scorch Enemies in Close Range when you Block", + ["id"] = "explicit.stat_4089743927|4|54", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Multiple Projectiles", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_385266470", - ["text"] = "Seize the Flesh used by this Graft creates +# Spire", + ["id"] = "explicit.stat_4089743927|4|39", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Multiple Totems", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_650630047", - ["text"] = "Sentinels of Purity deal #% increased Damage", + ["id"] = "explicit.stat_4089743927|4|38", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Multiple Traps", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1881314095", - ["text"] = "Share Endurance Charges with nearby party members", + ["id"] = "explicit.stat_4089743927|4|40", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Multistrike", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_956038713", - ["text"] = "Shared Suffering", + ["id"] = "explicit.stat_4089743927|4|37", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Nightblade", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2038577923", - ["text"] = "Shepherd of Souls", + ["id"] = "explicit.stat_4089743927|4|141", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Overcharge", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2206792089", - ["text"] = "Shock Enemies as though dealing #% more Damage", + ["id"] = "explicit.stat_4089743927|4|136", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Overexertion", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_451866048", - ["text"] = "Shock Enemies as though dealing #% more Damage", + ["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_3291999509", - ["text"] = "Shock Reflection", + ["id"] = "explicit.stat_4089743927|4|32", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Pierce", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3031766858", - ["text"] = "Shock nearby Enemies for # Seconds when you Focus", + ["id"] = "explicit.stat_4089743927|4|130", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Pinpoint", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3181879507", - ["text"] = "Shock yourself for # Seconds when you Focus", + ["id"] = "explicit.stat_4089743927|4|31", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Point Blank", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2706994884", - ["text"] = "Shocked Enemies you Kill Explode, dealing #% of their Life as Lightning Damage which cannot Shock", + ["id"] = "explicit.stat_4089743927|4|29", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Power Charge On Critical", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1712740586", - ["text"] = "Shocks from your Hits always increase Damage taken by at least #%", + ["id"] = "explicit.stat_4089743927|4|28", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Pulverise", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3446170049", - ["text"] = "Shocks nearby Enemies during Effect, causing 10% increased Damage taken", + ["id"] = "explicit.stat_4089743927|4|27", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Rage", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_807955413", - ["text"] = "Shocks you cause are reflected back to you", + ["id"] = "explicit.stat_4089743927|4|145", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Returning Projectiles", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_911839512", - ["text"] = "Shocks you inflict during Effect spread to other Enemies within # metre", + ["id"] = "explicit.stat_4089743927|4|139", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Rupture", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_424549222", - ["text"] = "Shocks you inflict spread to other Enemies within # metre", + ["id"] = "explicit.stat_4089743927|4|20", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Ruthless", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1640259660", - ["text"] = "Shocks you inflict spread to other Enemies within 1.5 metres", + ["id"] = "explicit.stat_4089743927|4|154", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Sacrifice", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_4256314560", - ["text"] = "Shocks you when you reach Maximum Power Charges", + ["id"] = "explicit.stat_4089743927|4|157", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Sadism", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1124661381", - ["text"] = "Shrapnel Ballista has +# to maximum number of Summoned Totems per 200 Strength", + ["id"] = "explicit.stat_4089743927|4|19", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Second Wind", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2305944553", - ["text"] = "Shrines drop a Basic Currency Item when used", + ["id"] = "explicit.stat_4089743927|4|18", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Slower Projectiles", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1594755360", - ["text"] = "Shrines grant a random additional Shrine Effect", + ["id"] = "explicit.stat_4089743927|4|17", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Spell Cascade", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2167121354", - ["text"] = "Shrines in your Maps are guarded by at least one Magic Pack", + ["id"] = "explicit.stat_4089743927|4|41", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Spell Echo", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1594755360", - ["text"] = "Shrines in your Maps grant a random additional Shrine Effect", + ["id"] = "explicit.stat_4089743927|4|15", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Spell Totem", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2831543675", - ["text"] = "Shrines in your Maps have #% chance to be a Covetous Shrine", + ["id"] = "explicit.stat_4089743927|4|147", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Spellblade", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1751949663", - ["text"] = "Shrines in your Maps have #% chance to be guarded by an additional Pack of Monsters", + ["id"] = "explicit.stat_4089743927|4|12", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Stun", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2125178364", - ["text"] = "Siege Ballista has +# to maximum number of Summoned Totems per 200 Dexterity", + ["id"] = "explicit.stat_4089743927|4|10", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Summon Phantasm", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1475598909", - ["text"] = "Skeletons gain Added Chaos Damage equal to #% of Maximum Energy Shield on your Equipped Shield", + ["id"] = "explicit.stat_4089743927|4|25", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Swift Affliction", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1787073323", - ["text"] = "Skills Chain +# times", + ["id"] = "explicit.stat_4089743927|4|9", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Swift Assembly", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_285624304", - ["text"] = "Skills Chain an additional time while at maximum Frenzy Charges", + ["id"] = "explicit.stat_4089743927|4|128", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Swiftbrand", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_89922905", - ["text"] = "Skills Cost Energy Shield instead of Mana or Life", + ["id"] = "explicit.stat_4089743927|4|8", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Trap", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1669220541", - ["text"] = "Skills Cost no Mana during Effect", + ["id"] = "explicit.stat_4089743927|4|7", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Trap and Mine Damage", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1031404836", - ["text"] = "Skills Fire # additional Projectile for 4 seconds after you consume a total of 8 Steel Shards", + ["id"] = "explicit.stat_4089743927|4|146", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Trauma", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_1504513372", - ["text"] = "Skills Supported by Unleash have #% increased Seal gain frequency", + ["id"] = "explicit.stat_4089743927|4|131", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Trinity", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2023285759", - ["text"] = "Skills deal #% more Damage for each Warcry Exerting them", + ["id"] = "explicit.stat_4089743927|4|5", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Unbound Ailments", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_74338099", - ["text"] = "Skills fire an additional Projectile", + ["id"] = "explicit.stat_4089743927|4|4", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Unleash", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_323705912", - ["text"] = "Skills fire an additional Projectile during Effect", + ["id"] = "explicit.stat_4089743927|4|129", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Urgent Orders", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3778002979", - ["text"] = "Skills fire an additional Projectile if 6 Hunter Items are Equipped", + ["id"] = "explicit.stat_4089743927|4|34", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Vicious Projectiles", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_988207959", - ["text"] = "Skills fire an additional Projectile if you've been Hit Recently", + ["id"] = "explicit.stat_4089743927|4|3", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Vile Toxins", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_2809802678", - ["text"] = "Skills fire an additional Projectile if you've used a Movement Skill Recently", + ["id"] = "explicit.stat_4089743927|4|2", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Void Manipulation", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_820155465", - ["text"] = "Skills gain Added Chaos Damage equal to #% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", + ["id"] = "explicit.stat_4089743927|4|152", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Volatility", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_4013794060", - ["text"] = "Skills gain a Base Energy Shield Cost equal to #% of Base Mana Cost", + ["id"] = "explicit.stat_4089743927|4|35", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Volley", ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3605834869", - ["text"] = "Skills gain a Base Life Cost equal to #% of Base Mana Cost", + ["id"] = "explicit.stat_4089743927|4|102", + ["text"] = "Skills granted by your Passive Tree are Supported by level # Withering Touch", ["type"] = "explicit", }, { @@ -31451,6 +35131,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 +35996,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 +37686,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 +37976,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 +38401,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 +38506,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 +38611,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 +38926,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 +39636,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 +40416,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 +40856,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 +40931,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 +41066,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 +41461,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 +41491,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 +41586,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 +41601,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 +41692,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 +41761,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 +41806,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 +42061,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", @@ -38362,6 +42107,11 @@ return { ["text"] = "# to # Added Lightning Damage with Bow Attacks", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2787733863", + ["text"] = "# to # Added Lightning Damage with Wand Attacks", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1760576992", ["text"] = "# to # Added Physical Damage with Bow Attacks", @@ -38407,6 +42157,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 +42217,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 +42232,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 +42267,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 +42292,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 +42377,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 +42412,51 @@ 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_3251948367", + ["text"] = "#% chance to Trigger Commandment of Inferno on Critical Strike", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3141831683", + ["text"] = "#% chance to Trigger Level 20 Glimpse of Eternity when Hit", + ["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", @@ -38627,11 +42472,21 @@ return { ["text"] = "#% chance to deal Double Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1299868012", + ["text"] = "#% chance to deal Double Damage while affected by Glorious Madness", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2622251413", ["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 +42497,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", @@ -38652,6 +42512,11 @@ return { ["text"] = "#% chance to gain a Frenzy Charge on Kill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3738335639", + ["text"] = "#% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3814876985", ["text"] = "#% chance to gain a Power Charge on Critical Strike", @@ -38662,6 +42527,21 @@ return { ["text"] = "#% chance to gain a Power Charge on Kill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_273206351", + ["text"] = "#% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web", + ["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,16 +42557,56 @@ 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", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3132227798", + ["text"] = "#% chance to throw up to 4 additional Traps", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1915414884", ["text"] = "#% chance when you pay a Skill's Cost to gain that much Mana", @@ -38772,6 +42692,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 +42712,21 @@ 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_1746347097", + ["text"] = "#% increased Aspect of the Avian Buff Effect", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2843214518", ["text"] = "#% increased Attack Damage", @@ -38837,6 +42777,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 +43162,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 +43207,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 +43252,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 +43287,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,16 +43417,31 @@ 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", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1073310669", + ["text"] = "#% increased Evasion Rating if you have been Hit Recently", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_810772344", ["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 +43557,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 +43647,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 +43667,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 +43712,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 +43737,31 @@ 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_1541516339", + ["text"] = "#% increased Movement Speed per Frenzy Charge", + ["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 +43807,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 +43857,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 +43917,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 +43957,16 @@ 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_495095219", + ["text"] = "#% increased Spell Critical Strike Chance per Raised Spectre", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2974417149", ["text"] = "#% increased Spell Damage", @@ -40032,6 +44082,11 @@ return { ["text"] = "#% increased Vaal Skill Critical Strike Chance", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1050359418", + ["text"] = "#% increased Valour gained", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1065909420", ["text"] = "#% increased Vulnerability Curse Effect", @@ -40042,6 +44097,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 +44182,16 @@ 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_1237693206", + ["text"] = "#% less Poison Duration", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_170394517", ["text"] = "#% more Accuracy Rating", @@ -40132,6 +44202,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 +44242,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 +44272,26 @@ return { ["text"] = "#% of Cold Damage taken Recouped as Life", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_807450540", + ["text"] = "#% of Damage dealt by your Mines is Leeched to you 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 +44307,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 +44347,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 +44382,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 +44497,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 +44552,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", @@ -40467,6 +44617,11 @@ return { ["text"] = "#% reduced Shock Duration on you", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1429385513", + ["text"] = "+# Armour per Summoned Totem", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2551779822", ["text"] = "+# Armour while stationary", @@ -40497,6 +44652,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 +44772,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 +44787,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 +44812,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 +44887,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", @@ -40727,6 +44912,11 @@ return { ["text"] = "+# to Maximum Frenzy Charges", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3806100539", + ["text"] = "+# to Maximum Life per 10 Dexterity", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_227523295", ["text"] = "+# to Maximum Power Charges", @@ -40797,16 +44987,31 @@ 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", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2611224062", + ["text"] = "+# to maximum Fortification while affected by Glorious Madness", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3299347043", ["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 +45022,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 +45037,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 +45062,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 +45097,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", @@ -40887,6 +45122,11 @@ return { ["text"] = "+#% chance to Suppress Spell Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_4108186648", + ["text"] = "+#% chance to Suppress Spell Damage while Channelling", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2907896585", ["text"] = "+#% chance to Suppress Spell Damage while moving", @@ -40907,6 +45147,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 +45197,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", @@ -40997,11 +45247,26 @@ return { ["text"] = "+#% to Damage over Time Multiplier", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2212731469", + ["text"] = "+#% to Damage over Time Multiplier for Ailments per Elder Item Equipped", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1423749435", ["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_3203086927", + ["text"] = "+#% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3382807662", ["text"] = "+#% to Fire Damage over Time Multiplier", @@ -41127,6 +45392,11 @@ return { ["text"] = "+#% to Spell Critical Strike Chance", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3613173483", + ["text"] = "+#% to Unarmed Melee Attack Critical Strike Chance", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2901986750", ["text"] = "+#% to all Elemental Resistances", @@ -41142,6 +45412,16 @@ return { ["text"] = "+#% to all maximum Resistances", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1030987123", + ["text"] = "+#% to all maximum Resistances while Poisoned", + ["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 +45467,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 +45487,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 +45527,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 +45617,31 @@ 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_3359218839", + ["text"] = "All Damage inflicts Poison while affected by Glorious Madness", + ["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,11 +45652,21 @@ 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", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1483066460", + ["text"] = "Arctic Armour has no Reservation", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1669429179", ["text"] = "Area contains # additional Afarud Commander Monster Marker", @@ -41362,16 +45697,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 +45772,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 +45817,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 +45877,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 +45907,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", @@ -41557,6 +45927,16 @@ return { ["text"] = "Arrows Pierce an additional Target", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3850409117", + ["text"] = "Aspect of the Cat has no Reservation", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1509532587", + ["text"] = "Aspect of the Spider can inflict Spider's Web on Enemies an additional time", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3737068014", ["text"] = "Atlas Passives have #% reduced Effect on Area", @@ -41567,6 +45947,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 +45987,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 +46007,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 +46022,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 +46057,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 +46087,31 @@ 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_241251790", + ["text"] = "Cannot lose Crab Barriers if you have lost Crab Barriers Recently", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_4082780964", ["text"] = "Cannot roll Caster Modifiers", @@ -41707,6 +46142,26 @@ 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_2439129490", + ["text"] = "Chaos Resistance is Zero", + ["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 +46182,21 @@ return { ["text"] = "Corrupted Blood cannot be inflicted on you", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1911037487", + ["text"] = "Corrupted Soul", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1243613350", + ["text"] = "Create Profane Ground instead of Consecrated Ground", + ["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", @@ -41752,6 +46222,11 @@ return { ["text"] = "Culling Strike", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3840847348", + ["text"] = "Curse Aura Skills reserve Life instead of Mana", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_710372469", ["text"] = "Curse Enemies with Conductivity on Hit", @@ -41767,6 +46242,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,16 +46262,36 @@ 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_541329769", + ["text"] = "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit", + ["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", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2280341859", + ["text"] = "Curse Skills cost Life instead of Mana", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1435748744", ["text"] = "Curse Skills have #% increased Skill Effect Duration", @@ -41817,6 +46317,16 @@ 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_2510276385", + ["text"] = "Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1211769158", ["text"] = "Damage with Weapons Penetrates #% Cold Resistance", @@ -41877,6 +46387,11 @@ return { ["text"] = "Divine Flesh", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2084152132", + ["text"] = "Draugurflames burn enemies around you for 8 seconds after you Ignite a target", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_984148407", ["text"] = "Drops Brittle Ground while moving, lasting # seconds", @@ -41892,6 +46407,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 +46432,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 +46447,16 @@ return { ["text"] = "Enemies Cannot Leech Life From you", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_785655723", + ["text"] = "Enemies affected by your Spider's Webs have +#% to All Resistances", + ["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", @@ -41932,21 +46467,51 @@ return { ["text"] = "Enemies you Kill have a #% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2780297117", + ["text"] = "Enemies you Kill while affected by Glorious Madness have a #% chance to Explode, dealing a quarter of their Life as Chaos Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3903907406", ["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 +46557,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 +46592,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 +46607,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 +46627,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 +46657,31 @@ 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_4231915769", + ["text"] = "Gain Adrenaline for # second when Ward Breaks", + ["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 +46712,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", @@ -42137,6 +46757,16 @@ return { ["text"] = "Grace has #% reduced Reservation", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1243641369", + ["text"] = "Grant a Frenzy Charge to nearby Allies on Kill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_3174788165", + ["text"] = "Grant an Endurance Charge to nearby Allies on Hit", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1420170973", ["text"] = "Grants # Life and Mana per Enemy Hit", @@ -42157,11 +46787,31 @@ return { ["text"] = "Grants Level # Anger Skill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3914740665", + ["text"] = "Grants Level # Aspect of the Avian Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1265282021", + ["text"] = "Grants Level # Aspect of the Cat Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_956546305", + ["text"] = "Grants Level # Aspect of the Spider 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 +46837,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 +46877,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 +46907,16 @@ return { ["text"] = "Grants Level # Purity of Lightning Skill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_636370122", + ["text"] = "Grants Level # Ravenous Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4009462747", + ["text"] = "Grants Level # Savage Barnacle", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3536689603", ["text"] = "Grants Level # Sniper's Mark Skill", @@ -42267,6 +46937,11 @@ return { ["text"] = "Grants Level # Vulnerability Skill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_608058997", + ["text"] = "Grants Level # Will of the Lords Skill", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2265307453", ["text"] = "Grants Level # Wrath Skill", @@ -42277,6 +46952,41 @@ return { ["text"] = "Grants Level # Zealotry Skill", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2878779644|1", + ["text"] = "Grants Level 20 Summon Bestial Rhoa Skill", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2878779644|3", + ["text"] = "Grants Level 20 Summon Bestial Snake 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_3872739249|11", + ["text"] = "Grants Summon Greater Harbinger of Storms 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 +47042,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,11 +47072,21 @@ 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", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1065479853", + ["text"] = "Immune to Elemental Ailments while affected by Glorious Madness", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_532463031", ["text"] = "Implicit Modifiers Cannot Be Changed", @@ -42377,11 +47102,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 +47142,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 +47177,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 +47217,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 +47237,96 @@ 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_3675300253", + ["text"] = "Melee Strike Skills deal Splash Damage to surrounding targets", + ["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_3217428772", + ["text"] = "Minions gain #% of Physical Damage as Extra Fire 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 +47342,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 +47357,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 +47402,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 +47427,61 @@ 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_293071889", + ["text"] = "Nearby corpses Explode when you Warcry, dealing #% of their Life as Physical Damage", + ["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_517280174", + ["text"] = "On Killing a Rare monster, a random Linked Minion gains its Modifiers for # seconds", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1520059289", ["text"] = "Onslaught", @@ -42582,6 +47492,16 @@ return { ["text"] = "Overwhelm #% Physical Damage Reduction", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_2424163939", + ["text"] = "Physical Damage of Enemies Hitting you is Lucky", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_977063976", ["text"] = "Players' Vaal Skills do not apply Soul Gain Prevention", @@ -42622,6 +47542,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 +47557,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 +47652,21 @@ 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_3007107372", + ["text"] = "Rage grants Spell Damage instead of Attack Damage at 50% of the value", + ["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 +47677,21 @@ return { ["text"] = "Raised Zombies deal #% increased Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2397408229", + ["text"] = "Rampage", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1678831767", + ["text"] = "Recover # Life when you Block", + ["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 +47712,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 +47767,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 +47787,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 +47872,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 +47922,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", @@ -42917,26 +47947,56 @@ return { ["text"] = "Slaying Enemies in a kill streak grants Rampage bonuses", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1471600638", + ["text"] = "Socketed Curse Gems have #% increased Reservation Efficiency", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_411460446", ["text"] = "Socketed Gems are Supported by Level # Added Chaos Damage", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_4020144606", + ["text"] = "Socketed Gems are Supported by Level # Added Cold Damage", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2572192375", ["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 +48012,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 +48062,31 @@ 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_3356013982", + ["text"] = "Socketed Gems are Supported by Level # Unleash", + ["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 +48102,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 +48157,16 @@ 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_4006301249", + ["text"] = "Socketed Minion Gems are Supported by Level # Life Leech", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2865550257", ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", @@ -43077,16 +48177,31 @@ return { ["text"] = "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_3784504781", + ["text"] = "Socketed Warcry Skills have +# Cooldown Use", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1967040409", ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1090897989", + ["text"] = "Spell Skills have #% increased Critical Strike Chance on Final Repeat", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2813626504", ["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 +48217,31 @@ return { ["text"] = "Stun Threshold is increased by Overcapped Fire Resistance", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_7847395", + ["text"] = "Summoned Phantasms have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_4070754804", + ["text"] = "Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy", + ["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 +48252,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 +48287,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,16 +48307,46 @@ 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", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_401685616", + ["text"] = "Trigger Level # Shield Shatter when you Block", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1774370437", ["text"] = "Trigger Level # Summon Taunting Contraption when you use a Flask", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_658873122", + ["text"] = "Trigger Level # Summon Void Spawn every 4 seconds", + ["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_2554328719", + ["text"] = "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_3591112611", ["text"] = "Trigger a Socketed Elemental Spell on Block, with a # second Cooldown", @@ -43157,31 +48357,86 @@ 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_3918947537", + ["text"] = "Triggers Level # Cold Aegis 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_1128763150", + ["text"] = "Triggers Level # Fire Aegis when Equipped", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_850729424", + ["text"] = "Triggers Level # Lightning 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", @@ -43317,11 +48572,26 @@ return { ["text"] = "Warcries Exert # additional Attack", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1504905117", ["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 +49332,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", @@ -44432,11 +49707,21 @@ return { ["text"] = "Wrath has #% increased Mana Reservation Efficiency", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_113536037", + ["text"] = "You and Enemies in your Presence count as moving while affected by Elemental Ailments", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_1419713278", ["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 +49737,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,16 +49762,71 @@ 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_799872465", + ["text"] = "You have Fungal Ground around you while stationary", + ["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_3058395672", + ["text"] = "You have Perfect Agony if you've dealt a Critical Strike recently", + ["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", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_455217103", + ["text"] = "You only lose # Crab Barriers when you take Physical Damage from a Hit", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_2905515354", ["text"] = "You take #% of Damage from Blocked Hits", @@ -44492,6 +49837,51 @@ return { ["text"] = "You take #% reduced Extra Damage from Critical Strikes", ["type"] = "implicit", }, + { + ["id"] = "implicit.stat_1623397857", + ["text"] = "You take Chaos Damage instead of Physical Damage from Bleeding", + ["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_1917124426", + ["text"] = "Your Cold Damage can Poison", + ["type"] = "implicit", + }, + { + ["id"] = "implicit.stat_1985969957", + ["text"] = "Your Fire Damage can Poison", + ["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_1604984482", + ["text"] = "Your Lightning Damage can Poison", + ["type"] = "implicit", + }, { ["id"] = "implicit.stat_358129101", ["text"] = "Your Maps are haunted by an additional Tormented Spirit", @@ -44532,6 +49922,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 +49952,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 +49982,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", @@ -46159,6 +51559,11 @@ return { ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", ["type"] = "fractured", }, + { + ["id"] = "fractured.stat_1793331740", + ["text"] = "#% chance to gain Phasing on Hit with this weapon", + ["type"] = "fractured", + }, { ["id"] = "fractured.stat_3562211447", ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", @@ -48804,6 +54209,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", @@ -52054,6 +57464,21 @@ return { ["text"] = "Grants Level # Anger Skill", ["type"] = "fractured", }, + { + ["id"] = "fractured.stat_1094971653", + ["text"] = "Grants Level # Aspect of Arakaali Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_937577116", + ["text"] = "Grants Level # Aspect of Lunaris Skill", + ["type"] = "fractured", + }, + { + ["id"] = "fractured.stat_4280547417", + ["text"] = "Grants Level # Aspect of Solaris Skill", + ["type"] = "fractured", + }, { ["id"] = "fractured.stat_3914740665", ["text"] = "Grants Level # Aspect of the Avian Skill", @@ -52539,6 +57964,11 @@ return { ["text"] = "Melee Hits which Stun have #% chance to Fortify", ["type"] = "fractured", }, + { + ["id"] = "fractured.stat_3814785829", + ["text"] = "Melee Strikes Curse Enemies with Flammability on Hit, ignoring Curse Limit", + ["type"] = "fractured", + }, { ["id"] = "fractured.stat_3085465082", ["text"] = "Mines have #% increased Detonation Speed", @@ -53034,6 +58464,11 @@ return { ["text"] = "Non-Channelling Skills have +# to Total Mana Cost", ["type"] = "fractured", }, + { + ["id"] = "fractured.stat_1661253443", + ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", + ["type"] = "fractured", + }, { ["id"] = "fractured.stat_2495041954", ["text"] = "Overwhelm #% Physical Damage Reduction", @@ -53396,12 +58831,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", }, { @@ -53644,6 +59079,11 @@ return { ["text"] = "Skills used by your Traps and Mines Chain an additional time", ["type"] = "fractured", }, + { + ["id"] = "fractured.stat_4001105802", + ["text"] = "Skills which Throw Traps have +# Cooldown Use", + ["type"] = "fractured", + }, { ["id"] = "fractured.stat_1837040413", ["text"] = "Slaying Enemies close together can attract monsters from Beyond this realm", @@ -53739,6 +59179,11 @@ return { ["text"] = "Socketed Gems are Supported by Level # Cold Penetration", ["type"] = "fractured", }, + { + ["id"] = "fractured.stat_961135393", + ["text"] = "Socketed Gems are Supported by Level # Combustion", + ["type"] = "fractured", + }, { ["id"] = "fractured.stat_2388360415", ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", @@ -54149,6 +59594,11 @@ return { ["text"] = "Trigger a Socketed Spell on Using a Skill, with a # second Cooldown Spells Triggered this way have 150% more Cost", ["type"] = "fractured", }, + { + ["id"] = "fractured.stat_1273709603", + ["text"] = "Trigger level # Ghostly Artillery when you Attack with this Weapon", + ["type"] = "fractured", + }, { ["id"] = "fractured.stat_779168081", ["text"] = "Triggers Level # Corpse Walk when Equipped", @@ -54585,6 +60035,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 +60075,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 +60105,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 +60615,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 +60820,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 +60855,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 +61105,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 +61315,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 +61565,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 +61785,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 +61865,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 +62320,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 +62455,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 +62530,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 +62740,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 +63340,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 +63750,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 +65860,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 +65895,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 +65941,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 +66020,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 +66510,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 +67275,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 +67880,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 +69816,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 +69840,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 +69870,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 +73057,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", diff --git a/src/Export/Scripts/bases.lua b/src/Export/Scripts/bases.lua index cdb9a85bd8..6bafd394e4 100644 --- a/src/Export/Scripts/bases.lua +++ b/src/Export/Scripts/bases.lua @@ -188,6 +188,10 @@ directiveTable.base = function(state, args, out) end if #enchantLines > 0 then out:write('\tenchant = "', table.concat(enchantLines, "\\n"), '",\n') + if #enchantModIds > 0 then + local modIdLine = string.format('\tenchantIds = %s,\n', utils.stringifyInline(enchantModIds)) + out:write(modIdLine) + end out:write('\tenchantModTypes = { ') for i = 1, #enchantModTypes do out:write('{ ', enchantModTypes[i], ' }, ')