From 114b0928bc227c77f70ca817d88abcb5432d8e86 Mon Sep 17 00:00:00 2001 From: FlowaBoi Date: Sun, 5 Jul 2026 15:46:46 +0300 Subject: [PATCH] Add logic for way of the stonefist ascendency --- spec/System/TestStonefist_spec.lua | 77 + src/Classes/Item.lua | 196 +- src/Classes/ItemsTab.lua | 42 +- src/Data/DataStonefistMap.lua | 1139 +++++++++++ src/Data/ModCache.lua | 5 +- src/Data/ModCorrupted.lua | 38 +- src/Data/ModFistsOfStone.lua | 592 ++++++ src/Data/ModIncursionLimb.lua | 8 +- src/Data/ModItem.lua | 951 +++------ src/Data/ModItemExclusive.lua | 3022 +++++++++++++--------------- src/Data/ModJewel.lua | 334 +-- src/Data/ModVeiled.lua | 496 ++--- src/Export/Scripts/mods.lua | 56 + src/Modules/Build.lua | 15 +- src/Modules/CalcSetup.lua | 10 +- src/Modules/Data.lua | 5 +- src/Modules/ModParser.lua | 4 + 17 files changed, 4242 insertions(+), 2748 deletions(-) create mode 100644 spec/System/TestStonefist_spec.lua create mode 100644 src/Data/DataStonefistMap.lua create mode 100644 src/Data/ModFistsOfStone.lua diff --git a/spec/System/TestStonefist_spec.lua b/spec/System/TestStonefist_spec.lua new file mode 100644 index 0000000000..700c3ee95c --- /dev/null +++ b/spec/System/TestStonefist_spec.lua @@ -0,0 +1,77 @@ +-- Tests for the "Way of the Stonefist" ascendancy passive (Martial Artist): equipped +-- Gloves transform to the "Fists of Stone" base, renaming the base, converting their +-- explicit mods to stronger related mods, and granting per-level Evasion/Energy Shield. +describe("TestStonefist", function() + before_each(function() + newBuild() + end) + + teardown(function() + -- newBuild() takes care of resetting everything in setup() + end) + + -- "+38 to maximum Energy Shield" is tier LocalIncreasedEnergyShield5 (36-41), which + -- the map converts to +3 Evasion and +1 Energy Shield per level. + local function makeVariant(baseName, level) + local item = new("Item", "New Item\n" .. baseName .. "\n+38 to maximum Energy Shield") + return item, item:CreateStonefistVariant(level) + end + + it("renames the transformed base to Fists of Stone", function() + local _, variant = makeVariant("Sombre Gloves") + assert.is_truthy(variant) + assert.are.equals("Fists of Stone", variant.baseName) + end) + + it("converts a flat Energy Shield prefix into per-level defences", function() + local _, variant = makeVariant("Sombre Gloves") + -- flat Energy Shield is gone, replaced by per-level Evasion/Energy Shield + assert.are.equals(0, variant.baseModList:Sum("BASE", nil, "EnergyShield")) + assert.is_true(variant.baseModList:Sum("BASE", nil, "EvasionPerLevel") > 0) + assert.is_true(variant.baseModList:Sum("BASE", nil, "EnergyShieldPerLevel") > 0) + end) + + it("adds the Fists of Stone base implicit per-level defences", function() + -- a glove with no defensive affix still gains the +3 Eva / +1 ES per level implicit + local item = new("Item", "New Item\nSombre Gloves\n+38 to maximum Life") + local variant = item:CreateStonefistVariant() + assert.is_truthy(variant) + assert.is_true(variant.baseModList:Sum("BASE", nil, "EvasionPerLevel") >= 3) + assert.is_true(variant.baseModList:Sum("BASE", nil, "EnergyShieldPerLevel") >= 1) + end) + + it("combines base implicit and converted item mods in the level-scaled defence value", function() + local _, variant = makeVariant("Sombre Gloves") + -- implicit (+3 Eva / +1 ES) + converted mod (+3 Eva / +1 ES) per level, at level 100, + -- excluding the global "% more" modifier + assert.are.equals(600, variant:GetArmourDataValue("Evasion", 100)) + assert.are.equals(200, variant:GetArmourDataValue("EnergyShield", 100)) + assert.are.equals(0, variant:GetArmourDataValue("Ward", 100)) + end) + + it("uses the Runeforged Fists of Stone implicit (with Runic Ward) for runeforged bases", function() + local _, variant = makeVariant("Runeforged Sombre Gloves") + -- runeforged implicit (+2 Eva / +1 ES / +1 Ward) + converted mod (+3 Eva / +1 ES) per level + assert.are.equals(500, variant:GetArmourDataValue("Evasion", 100)) + assert.are.equals(200, variant:GetArmourDataValue("EnergyShield", 100)) + assert.are.equals(100, variant:GetArmourDataValue("Ward", 100)) + end) + + it("resolves per-level display strings at the given character level", function() + local _, variant = makeVariant("Sombre Gloves", 100) + -- with a display level, "per player level" implicits resolve to concrete values (+3 * 100) + local resolved = false + for _, line in ipairs(variant.implicitModLines) do + if line.line:find("+300 to Evasion Rating", 1, true) then + resolved = true + end + assert.is_nil(line.line:find("per player level", 1, true)) + end + assert.is_true(resolved) + end) + + it("returns nil for items that are not armour gloves", function() + local ring = new("Item", "New Item\nSapphire Ring") + assert.is_nil(ring:CreateStonefistVariant()) + end) +end) diff --git a/src/Classes/Item.lua b/src/Classes/Item.lua index 684f904714..4f727de6c6 100644 --- a/src/Classes/Item.lua +++ b/src/Classes/Item.lua @@ -58,6 +58,80 @@ local function getCatalystScalar(catalystId, mod, quality) return 1 end +local function stonefistAverageRanges(text) + return (text:gsub("%((%-?%d+%.?%d*)%-(%-?%d+%.?%d*)%)", function(a, b) + return tostring(m_floor((tonumber(a) + tonumber(b)) / 2 + 0.5)) + end)) +end + +local function stonefistComputePerLevel(text, displayLevel) + if displayLevel then + local value, label = text:match("^Has ([%+%-]?%d+) (.+) per player level$") + if value then + local total = tonumber(value) * displayLevel + return (total >= 0 and "+" or "") .. total .. " " .. label + end + end + return text +end + +local function stonefistSlotify(s) + local slots = { } + local out = { } + local pos, len = 1, #s + while pos <= len do + local rs, re, a, b = s:find("^%((%-?%d+%.?%d*)%-(%-?%d+%.?%d*)%)", pos) + if rs then + t_insert(slots, { tonumber(a), tonumber(b) }) + t_insert(out, "#") + pos = re + 1 + else + local ns, ne, n = s:find("^(%-?%d+%.?%d*)", pos) + if ns then + t_insert(slots, { tonumber(n), tonumber(n) }) + t_insert(out, "#") + pos = ne + 1 + else + t_insert(out, s:sub(pos, pos)) + pos = pos + 1 + end + end + end + return table.concat(out), slots +end + +local stonefistBaseName = "Fists of Stone" + +local stonefistSourceIndexCache = setmetatable({ }, { __mode = "k" }) +local function getStonefistSourceIndex(map, affixes) + local index = stonefistSourceIndexCache[affixes] + if index then + return index + end + index = { } + for modId in pairs(map) do + local modData = affixes[modId] + if modData then + for i = 1, #modData do + if type(modData[i]) == "string" then + local tmpl, slots = stonefistSlotify(modData[i]) + local bucket = index[tmpl] + if not bucket then + bucket = { } + index[tmpl] = bucket + end + bucket[#bucket + 1] = { id = modId, slots = slots } + end + end + end + end + for _, bucket in pairs(index) do + table.sort(bucket, function(a, b) return a.id < b.id end) + end + stonefistSourceIndexCache[affixes] = index + return index +end + local ItemClass = newClass("Item", function(self, raw, rarity, highQuality) if raw then self:ParseRaw(sanitiseText(raw), rarity, highQuality) @@ -303,6 +377,7 @@ function ItemClass:ParseRaw(raw, rarity, highQuality) self.spiritValue = nil self.runicItem = nil self.quality = nil + self.stonefistVariantCache = nil self.rawLines = { } -- Find non-blank lines and trim whitespace for line in raw:gmatch("%s*([^\n]*%S)") do @@ -727,6 +802,8 @@ function ItemClass:ParseRaw(raw, rarity, highQuality) modLine.range = tonumber(val) elseif k == "corruptedRange" then modLine.corruptedRange = tonumber(val) + elseif k == "modId" then + modLine.modId = val elseif lineFlags[k] then modLine[k] = true end @@ -1402,6 +1479,9 @@ function ItemClass:BuildRaw() if modLine.corruptedRange then line = "{corruptedRange:" .. round(modLine.corruptedRange, 2) .. "}" .. line end + if modLine.modId then + line = "{modId:" .. modLine.modId .. "}" .. line + end if modLine.rune then line = "{rune}" .. line end @@ -1543,6 +1623,120 @@ function ItemClass:BuildAndParseRaw() self:ParseRaw(raw) end +function ItemClass:ResolveStonefistModId(modLine) + local map = data.stonefistMap + local affixes = self.affixes + if not map or not affixes then + return nil + end + local index = getStonefistSourceIndex(map, affixes) + for part in (modLine.line .. "\n"):gmatch("(.-)\n") do + local stat = part:gsub("%s+", " "):gsub("^%s+", ""):gsub("%s+$", "") + if stat ~= "" then + local lineTmpl, lineSlots = stonefistSlotify(stat) + local bucket = index[lineTmpl] + if bucket then + for _, cand in ipairs(bucket) do + local statSlots = cand.slots + local ok = true + for j = 1, #statSlots do + local v = lineSlots[j][1] + if v < m_min(statSlots[j][1], statSlots[j][2]) or v > m_max(statSlots[j][1], statSlots[j][2]) then + ok = false + break + end + end + if ok then + return cand.id + end + end + end + end + end + return nil +end + +function ItemClass:CreateStonefistVariant(displayLevel) + local map = data.stonefistMap + if not map then + return nil + end + local cacheKey = displayLevel or 0 + local cache = self.stonefistVariantCache + if cache then + local cached = cache[cacheKey] + if cached ~= nil then + return cached or nil + end + else + cache = { } + self.stonefistVariantCache = cache + end + local clone = new("Item", self:BuildRaw()) + local newExplicit = { } + local emitted = { } + local changed = false + for _, modLine in ipairs(clone.explicitModLines) do + local modId = modLine.modId + if not (modId and map[modId]) then + modId = clone:ResolveStonefistModId(modLine) + end + if modId and map[modId] then + changed = true + if not emitted[modId] then + emitted[modId] = true + local entry = data.itemMods.FistsOfStone[map[modId]] + if entry then + for i = 1, #entry do + if type(entry[i]) == "string" then + local text = stonefistAverageRanges(entry[i]) + local list, extra = modLib.parseMod(text) + t_insert(newExplicit, { line = stonefistComputePerLevel(text, displayLevel), modList = list or { }, extra = extra }) + end + end + end + end + else + t_insert(newExplicit, modLine) + end + end + if clone.base and clone.base.armour then + -- Runeforged/runemastered (Runic Ward) bases use the Runeforged Fists of Stone implicit. + local hasWard = clone.runicItem or (clone.base.armour.Ward or 0) > 0 + local armourCopy = { } + for k, v in pairs(clone.base.armour) do + armourCopy[k] = v + end + armourCopy.Armour, armourCopy.Evasion, armourCopy.EnergyShield, armourCopy.Ward = nil, nil, nil, nil + clone.base = setmetatable({ armour = armourCopy }, { __index = clone.base }) + -- The transformed base has no flat defences; its per-level defence is the base implicit + -- of the Fists of Stone base (read from the base data so it stays in sync). + local fistsBase = data.itemBases[hasWard and "Runeforged Fists of Stone" or "Fists of Stone"] + if fistsBase and fistsBase.implicit then + local lines = { } + for implicitLine in (fistsBase.implicit .. "\n"):gmatch("(.-)\n") do + if implicitLine ~= "" then + t_insert(lines, implicitLine) + end + end + for i = #lines, 1, -1 do + local list, extra = modLib.parseMod(lines[i]) + t_insert(clone.implicitModLines, 1, { line = stonefistComputePerLevel(lines[i], displayLevel), modList = list or { }, extra = extra }) + end + end + changed = true + end + if not changed then + cache[cacheKey] = false + return nil + end + clone.explicitModLines = newExplicit + clone:BuildModList() + clone.baseName = stonefistBaseName + cache[cacheKey] = clone + return clone +end + -- Rebuild rune modifiers using the item's runes function ItemClass:UpdateRunes() wipeTable(self.runeModLines) @@ -1666,7 +1860,7 @@ function ItemClass:Craft() return tonumber(num) + tonumber(other) end) else - local modLine = { line = line, order = order } + local modLine = { line = line, order = order, modId = affix.modId } for l = 1, #self.explicitModLines + 1 do if not self.explicitModLines[l] or self.explicitModLines[l].order > order then t_insert(self.explicitModLines, l, modLine) diff --git a/src/Classes/ItemsTab.lua b/src/Classes/ItemsTab.lua index 604ac14dee..2aa7fc5bc4 100644 --- a/src/Classes/ItemsTab.lua +++ b/src/Classes/ItemsTab.lua @@ -395,6 +395,7 @@ holding Shift will put it in the second.]]) -- Display item self.displayItemTooltip = new("Tooltip") self.displayItemTooltip.maxWidth = 458 + self.displayItemTooltipRevision = nil self.anchorDisplayItem = new("Control", {"TOPLEFT",main.portraitMode and self.controls.setManage or self.controls.itemList,"TOPRIGHT"}, {20, main.portraitMode and 0 or -20, 0, 0}) self.anchorDisplayItem.shown = function() return self.displayItem ~= nil @@ -1283,6 +1284,10 @@ function ItemsTabClass:Draw(viewPort, inputEvents) local maxY = select(2, self.lastSlot:GetPos()) + 24 local maxX = self.anchorDisplayItem:GetPos() + 462 if self.displayItem then + if self.displayItemTooltipRevision ~= self.build.outputRevision then + self.displayItemTooltipRevision = self.build.outputRevision + self:UpdateDisplayItemTooltip() + end local x, y = self.controls.displayItemTooltipAnchor:GetPos() local ttW, ttH = self.displayItemTooltip:GetDynamicSize(viewPort) maxY = m_max(maxY, y + ttH + 4) @@ -3325,12 +3330,18 @@ function ItemsTabClass:AddItemTooltip(tooltip, item, slot, dbMode, maxWidth) tooltip:AddLine(fontSizeTitle, colorCodes.NEGATIVE.."Item base is not supported by the current version.", "FONTIN SC") return end + local stonefistVariant + if not dbMode and item.base and item.base.type == "Gloves" + and self.build.calcsTab.mainEnv.modDB:Flag(nil, "WayOfTheStonefist") then + stonefistVariant = item:CreateStonefistVariant(self.build.characterLevel) + end + local displayVariant = stonefistVariant or item -- Item name - if item.title then - tooltip:AddLine(fontSizeTitle, rarityCode..item.title, "FONTIN SC") - tooltip:AddLine(fontSizeTitle, rarityCode..item.baseName:gsub(" %(.+%)",""), "FONTIN SC") + if displayVariant.title then + tooltip:AddLine(fontSizeTitle, rarityCode..displayVariant.title, "FONTIN SC") + tooltip:AddLine(fontSizeTitle, rarityCode..displayVariant.baseName:gsub(" %(.+%)",""), "FONTIN SC") else - tooltip:AddLine(fontSizeTitle, rarityCode..item.namePrefix..item.baseName:gsub(" %(.+%)","")..item.nameSuffix, "FONTIN SC") + tooltip:AddLine(fontSizeTitle, rarityCode..displayVariant.namePrefix..displayVariant.baseName:gsub(" %(.+%)","")..displayVariant.nameSuffix, "FONTIN SC") end tooltip.runicItem = item.runicItem tooltip:AddSeparator(10) @@ -3467,13 +3478,13 @@ function ItemsTabClass:AddItemTooltip(tooltip, item, slot, dbMode, maxWidth) tooltip:AddLine(fontSizeBig, s_format("^x7F7F7FWeapon Range: %s%.1f ^x7F7F7Fmetres", main:StatColor(weaponData.range, base.weapon.Range), weaponData.range / 10), "FONTIN SC") end elseif base.armour then - -- Armour-specific info - local armourData = item.armourData + -- Armour-specific info (sourced from the Stonefist variant when active) + local armourData = displayVariant.armourData local level = self.build.characterLevel - local armour = item:GetArmourDataValue("Armour", level) - local evasion = item:GetArmourDataValue("Evasion", level) - local energyShield = item:GetArmourDataValue("EnergyShield", level) - local ward = item:GetArmourDataValue("Ward", level) + local armour = displayVariant:GetArmourDataValue("Armour", level) + local evasion = displayVariant:GetArmourDataValue("Evasion", level) + local energyShield = displayVariant:GetArmourDataValue("EnergyShield", level) + local ward = displayVariant:GetArmourDataValue("Ward", level) if base.armour.BlockChance and armourData.BlockChance > 0 then tooltip:AddLine(fontSizeBig, s_format("^x7F7F7FChance to Block: %s%d%%", main:StatColor(armourData.BlockChance, base.armour.BlockChance), armourData.BlockChance), "FONTIN SC") end @@ -3602,7 +3613,8 @@ function ItemsTabClass:AddItemTooltip(tooltip, item, slot, dbMode, maxWidth) -- Requirements self.build:AddRequirementsToTooltip(tooltip, item.requirements.level, item.requirements.strMod, item.requirements.dexMod, item.requirements.intMod, - item.requirements.str or 0, item.requirements.dex or 0, item.requirements.int or 0) + item.requirements.str or 0, item.requirements.dex or 0, item.requirements.int or 0, + stonefistVariant ~= nil) -- Modifiers -- Support for Lich Socket Jewel only for tooltip display @@ -3625,7 +3637,13 @@ function ItemsTabClass:AddItemTooltip(tooltip, item, slot, dbMode, maxWidth) end end - for _, modList in ipairs{item.enchantModLines, item.runeModLines, item.implicitModLines, item.explicitModLines} do + for _, origList in ipairs{item.enchantModLines, item.runeModLines, item.implicitModLines, item.explicitModLines} do + local modList = origList + if stonefistVariant and origList == item.explicitModLines then + modList = stonefistVariant.explicitModLines + elseif stonefistVariant and origList == item.implicitModLines then + modList = { } + end if modList[1] then for _, modLine in ipairs(modList) do local variantCount = item:GetModLineVariantCount(modLine) diff --git a/src/Data/DataStonefistMap.lua b/src/Data/DataStonefistMap.lua new file mode 100644 index 0000000000..9479b7d8b9 --- /dev/null +++ b/src/Data/DataStonefistMap.lua @@ -0,0 +1,1139 @@ +-- This file is automatically generated, do not edit! +-- Maps source glove affix mod ID -> Way of the Stonefist (Fists of Stone) target mod ID. +-- Item data (c) Grinding Gear Games + +return { + ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = "HandWrapsAbyssModArmourJewelleryAmanamuSuffixFireChaosResistance", + ["AbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = "HandWrapsAbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence", + ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = "HandWrapsAbyssModArmourJewelleryKurgalSuffixColdChaosResistance", + ["AbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = "HandWrapsAbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence", + ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = "HandWrapsAbyssModArmourJewelleryUlamanSuffixLightningChaosResistance", + ["AbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = "HandWrapsAbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity", + ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = "HandWrapsAbyssModFourCatKurgalSuffixManaCostEfficiency", + ["AbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = "HandWrapsAbyssModGlovesAmanamuSuffixCurseAreaOfEffect", + ["AbyssModGlovesAmanamuSuffixDazeChance"] = "HandWrapsAbyssModGlovesAmanamuSuffixDazeChance", + ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = "HandWrapsAbyssModGlovesAmanamuSuffixImmobilisationBuildUp", + ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = "HandWrapsAbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant", + ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = "HandWrapsAbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit", + ["AbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = "HandWrapsAbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana", + ["AbyssModGlovesUlamanSuffixAilmentMagnitude"] = "HandWrapsAbyssModGlovesUlamanSuffixAilmentMagnitude", + ["AbyssModGlovesUlamanSuffixBleedChance"] = "HandWrapsAbyssModGlovesUlamanSuffixBleedChance", + ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = "HandWrapsAbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed", + ["AbyssModGlovesUlamanSuffixIncisionChance"] = "HandWrapsAbyssModGlovesUlamanSuffixIncisionChance", + ["AbyssModGlovesUlamanSuffixPoisonChance"] = "HandWrapsAbyssModGlovesUlamanSuffixPoisonChance", + ["AddedColdDamage1"] = "HandWrapsAddedColdDamage1", + ["AddedColdDamage2"] = "HandWrapsAddedColdDamage2", + ["AddedColdDamage3"] = "HandWrapsAddedColdDamage3", + ["AddedColdDamage4"] = "HandWrapsAddedColdDamage4", + ["AddedColdDamage5"] = "HandWrapsAddedColdDamage5", + ["AddedColdDamage6"] = "HandWrapsAddedColdDamage6", + ["AddedColdDamage7"] = "HandWrapsAddedColdDamage7", + ["AddedColdDamage8"] = "HandWrapsAddedColdDamage8", + ["AddedColdDamage9"] = "HandWrapsAddedColdDamage9", + ["AddedFireDamage1"] = "HandWrapsAddedFireDamage1", + ["AddedFireDamage2"] = "HandWrapsAddedFireDamage2", + ["AddedFireDamage3"] = "HandWrapsAddedFireDamage3", + ["AddedFireDamage4"] = "HandWrapsAddedFireDamage4", + ["AddedFireDamage5"] = "HandWrapsAddedFireDamage5", + ["AddedFireDamage6"] = "HandWrapsAddedFireDamage6", + ["AddedFireDamage7"] = "HandWrapsAddedFireDamage7", + ["AddedFireDamage8"] = "HandWrapsAddedFireDamage8", + ["AddedFireDamage9"] = "HandWrapsAddedFireDamage9", + ["AddedLightningDamage1"] = "HandWrapsAddedLightningDamage1", + ["AddedLightningDamage2"] = "HandWrapsAddedLightningDamage2", + ["AddedLightningDamage3"] = "HandWrapsAddedLightningDamage3", + ["AddedLightningDamage4"] = "HandWrapsAddedLightningDamage4", + ["AddedLightningDamage5"] = "HandWrapsAddedLightningDamage5", + ["AddedLightningDamage6"] = "HandWrapsAddedLightningDamage6", + ["AddedLightningDamage7"] = "HandWrapsAddedLightningDamage7", + ["AddedLightningDamage8"] = "HandWrapsAddedLightningDamage8", + ["AddedLightningDamage9"] = "HandWrapsAddedLightningDamage9", + ["AddedLightningDamageWhileUnarmedUniqueGloves_1"] = "HandWrapsAddedLightningDamageWhileUnarmedUniqueGloves_1", + ["AddedPhysicalDamage1"] = "HandWrapsAddedPhysicalDamage1", + ["AddedPhysicalDamage2"] = "HandWrapsAddedPhysicalDamage2", + ["AddedPhysicalDamage3"] = "HandWrapsAddedPhysicalDamage3", + ["AddedPhysicalDamage4"] = "HandWrapsAddedPhysicalDamage4", + ["AddedPhysicalDamage5"] = "HandWrapsAddedPhysicalDamage5", + ["AddedPhysicalDamage6"] = "HandWrapsAddedPhysicalDamage6", + ["AddedPhysicalDamage7"] = "HandWrapsAddedPhysicalDamage7", + ["AddedPhysicalDamage8"] = "HandWrapsAddedPhysicalDamage8", + ["AddedPhysicalDamage9"] = "HandWrapsAddedPhysicalDamage9", + ["AlloyAttackAreaOfEffect1"] = "HandWrapsAlloyAttackAreaOfEffect1", + ["AlloyCastSpeedGloves1"] = "HandWrapsAlloyCastSpeedGloves1", + ["AlloyDamagingAilmentDuration1"] = "HandWrapsAlloyDamagingAilmentDuration1", + ["AlloyElementalPenetration1"] = "HandWrapsAlloyElementalPenetration1", + ["AlloyRemnantPickupRange1"] = "HandWrapsAlloyRemnantPickupRange1", + ["ArmourAppliesToElementalDamage1"] = "HandWrapsArmourAppliesToElementalDamage1", + ["ArmourAppliesToElementalDamage2"] = "HandWrapsArmourAppliesToElementalDamage2", + ["ArmourAppliesToElementalDamage3"] = "HandWrapsArmourAppliesToElementalDamage3", + ["ArmourAppliesToElementalDamage4"] = "HandWrapsArmourAppliesToElementalDamage4", + ["ArmourAppliesToElementalDamage5"] = "HandWrapsArmourAppliesToElementalDamage5", + ["AttackCriticalStrikeMultiplier1"] = "HandWrapsCriticalMultiplier1", + ["AttackCriticalStrikeMultiplier2"] = "HandWrapsCriticalMultiplier2", + ["AttackCriticalStrikeMultiplier3"] = "HandWrapsCriticalMultiplier3", + ["AttackCriticalStrikeMultiplier4"] = "HandWrapsCriticalMultiplier4", + ["AttackCriticalStrikeMultiplier5"] = "HandWrapsCriticalMultiplier5", + ["AttackDamagePercent1"] = "HandWrapsLocalIncreasedArmourAndEvasionAndLife1", + ["AttackDamagePercent2"] = "HandWrapsLocalIncreasedArmourAndEvasionAndLife2", + ["AttackDamagePercent3"] = "HandWrapsLocalIncreasedArmourAndEvasionAndLife3", + ["AttackDamagePercent4"] = "HandWrapsLocalIncreasedArmourAndEvasionAndLife4", + ["AttackDamagePercent5"] = "HandWrapsLocalIncreasedArmourAndEvasionAndLife6", + ["BaseUnarmedCriticalStrikeChanceUnique__2"] = "HandWrapsBaseUnarmedCriticalStrikeChanceUnique__2", + ["ChaosResist1"] = "HandWrapsChaosResist1", + ["ChaosResist2"] = "HandWrapsChaosResist2", + ["ChaosResist3"] = "HandWrapsChaosResist3", + ["ChaosResist4"] = "HandWrapsChaosResist4", + ["ChaosResist5"] = "HandWrapsChaosResist5", + ["ChaosResist6"] = "HandWrapsChaosResist6", + ["ChestCamoflage"] = "HandWrapsLocalIncreasedArmourAndEvasionAndLife6", + ["ChestIceNova"] = "HandWrapsAddedColdDamage4", + ["ColdResist1"] = "HandWrapsColdResist1", + ["ColdResist2"] = "HandWrapsColdResist2", + ["ColdResist3"] = "HandWrapsColdResist3", + ["ColdResist4"] = "HandWrapsColdResist4", + ["ColdResist5"] = "HandWrapsColdResist5", + ["ColdResist6"] = "HandWrapsColdResist6", + ["ColdResist7"] = "HandWrapsColdResist7", + ["ColdResist8"] = "HandWrapsColdResist8", + ["CorruptedSideAreaColdDamage"] = "HandWrapsAddedColdDamage5", + ["CorruptedSideAreaFast"] = "HandWrapsLocalIncreasedEvasionRating4", + ["CorruptedSideAreaFireDamage"] = "HandWrapsAddedFireDamage4", + ["CorruptedSideAreaLife"] = "HandWrapsIncreasedLife10", + ["CorruptedSideAreaLightningDamage"] = "HandWrapsAddedLightningDamage7", + ["CriticalMultiplier1"] = "HandWrapsCriticalMultiplier1", + ["CriticalMultiplier2"] = "HandWrapsCriticalMultiplier2", + ["CriticalMultiplier3"] = "HandWrapsCriticalMultiplier3", + ["CriticalMultiplier4"] = "HandWrapsCriticalMultiplier4", + ["CriticalMultiplier5"] = "HandWrapsCriticalMultiplier5", + ["DecayInfluenceAilmentDuration1"] = "HandWrapsDecayInfluenceAilmentDuration1", + ["DecayInfluenceAilmentDuration2"] = "HandWrapsDecayInfluenceAilmentDuration2", + ["DecayInfluenceAilmentMagnitude1"] = "HandWrapsDecayInfluenceAilmentMagnitude1", + ["DecayInfluenceAilmentMagnitude2"] = "HandWrapsDecayInfluenceAilmentMagnitude2", + ["DecayInfluenceBleedMagnitude1"] = "HandWrapsDecayInfluenceBleedMagnitude1", + ["DecayInfluenceBleedMagnitude2"] = "HandWrapsDecayInfluenceBleedMagnitude2", + ["DecayInfluenceCurseMagnitude1"] = "HandWrapsDecayInfluenceCurseMagnitude1", + ["DecayInfluenceCurseMagnitude2"] = "HandWrapsDecayInfluenceCurseMagnitude2", + ["DecayInfluenceExposureEffect1"] = "HandWrapsDecayInfluenceExposureEffect1", + ["DecayInfluenceExposureEffect2"] = "HandWrapsDecayInfluenceExposureEffect2", + ["DecayInfluenceFasterCurseActivation1"] = "HandWrapsDecayInfluenceFasterCurseActivation1", + ["DecayInfluenceFasterDamagingAilments1"] = "HandWrapsDecayInfluenceFasterDamagingAilments1", + ["DecayInfluenceFasterDamagingAilments2"] = "HandWrapsDecayInfluenceFasterDamagingAilments2", + ["DecayInfluenceFasterLeech1"] = "HandWrapsDecayInfluenceFasterLeech1", + ["DecayInfluenceIgniteMagnitude1"] = "HandWrapsDecayInfluenceIgniteMagnitude1", + ["DecayInfluenceIgniteMagnitude2"] = "HandWrapsDecayInfluenceIgniteMagnitude2", + ["DecayInfluenceIncreasedCurseDuration1"] = "HandWrapsDecayInfluenceIncreasedCurseDuration1", + ["DecayInfluenceLeechAmount1"] = "HandWrapsDecayInfluenceLeechAmount1", + ["DecayInfluencePoisonMagnitude1"] = "HandWrapsDecayInfluencePoisonMagnitude1", + ["DecayInfluencePoisonMagnitude2"] = "HandWrapsDecayInfluencePoisonMagnitude2", + ["DecayInfluenceSlowerLeech1"] = "HandWrapsDecayInfluenceSlowerLeech1", + ["DecayInfluenceWitherMagnitude1"] = "HandWrapsDecayInfluenceWitherMagnitude1", + ["DecayInfluenceWitherMagnitude2"] = "HandWrapsDecayInfluenceWitherMagnitude2", + ["DemigodIncreasedSkillSpeed1"] = "HandWrapsDemigodIncreasedSkillSpeed1", + ["Dexterity1"] = "HandWrapsDexterity1", + ["Dexterity2"] = "HandWrapsDexterity2", + ["Dexterity3"] = "HandWrapsDexterity3", + ["Dexterity4"] = "HandWrapsDexterity4", + ["Dexterity5"] = "HandWrapsDexterity5", + ["Dexterity6"] = "HandWrapsDexterity6", + ["Dexterity7"] = "HandWrapsDexterity7", + ["Dexterity8"] = "HandWrapsDexterity8", + ["Dexterity9"] = "HandWrapsDexterity9", + ["DualWieldingMeleeDamageJewel"] = "HandWrapsLocalIncreasedArmourAndEvasion4", + ["EnergyShieldRechargeRate1"] = "HandWrapsEnergyShieldRechargeRate1", + ["EnergyShieldRechargeRate2"] = "HandWrapsEnergyShieldRechargeRate2", + ["EnergyShieldRechargeRate3"] = "HandWrapsEnergyShieldRechargeRate3", + ["EnergyShieldRechargeRate4"] = "HandWrapsEnergyShieldRechargeRate4", + ["EnergyShieldRechargeRate5______"] = "HandWrapsEnergyShieldRechargeRate5", + ["EnergyShieldRechargeRate6"] = "HandWrapsEnergyShieldRechargeRate6", + ["EssenceGoldDropped1"] = "HandWrapsEssenceGoldDropped1", + ["EssenceLightningRecoupLife1"] = "HandWrapsEssenceLightningRecoupLife1", + ["EssenceLocalRuneAndSoulCoreEffect1"] = "HandWrapsEssenceLocalRuneAndSoulCoreEffect1", + ["EvasionGrantsDeflection1"] = "HandWrapsEvasionGrantsDeflection1", + ["EvasionGrantsDeflection2"] = "HandWrapsEvasionGrantsDeflection2", + ["EvasionGrantsDeflection3"] = "HandWrapsEvasionGrantsDeflection3", + ["EvasionGrantsDeflection4"] = "HandWrapsEvasionGrantsDeflection4", + ["EvasionGrantsDeflection5"] = "HandWrapsEvasionGrantsDeflection5", + ["EzomyteStrongboxIceSpikes"] = "HandWrapsAddedColdDamage1", + ["FireCritChanceJewel"] = "HandWrapsAddedFireDamage7", + ["FireDamageJewel"] = "HandWrapsAddedFireDamage5", + ["FireResist1"] = "HandWrapsFireResist1", + ["FireResist2"] = "HandWrapsFireResist2", + ["FireResist3"] = "HandWrapsFireResist3", + ["FireResist4"] = "HandWrapsFireResist4", + ["FireResist5"] = "HandWrapsFireResist5", + ["FireResist6"] = "HandWrapsFireResist6", + ["FireResist7"] = "HandWrapsFireResist7", + ["FireResist8"] = "HandWrapsFireResist8", + ["GlobalMeleeSkillGemLevel1"] = "HandWrapsGlobalMeleeSkillGemLevel1", + ["GlobalMeleeSkillGemLevel2"] = "HandWrapsGlobalMeleeSkillGemLevel2", + ["GlobalMeleeSkillGemLevelTwoHandWeapon1"] = "HandWrapsGlobalMeleeSkillGemLevel1", + ["GlobalMeleeSkillGemLevelTwoHandWeapon2"] = "HandWrapsGlobalMeleeSkillGemLevel2", + ["GlobalMeleeSkillGemLevelWeapon1"] = "HandWrapsGlobalMeleeSkillGemLevel1", + ["GlobalMeleeSkillGemLevelWeapon2"] = "HandWrapsGlobalMeleeSkillGemLevel2", + ["HeistContractMonsterColdDamage1_"] = "HandWrapsAddedColdDamage5", + ["HeistContractMonsterColdDamage2"] = "HandWrapsAddedColdDamage5", + ["HeistContractMonsterColdDamage3"] = "HandWrapsAddedColdDamage5", + ["HeistContractMonsterColdDamage4"] = "HandWrapsAddedColdDamage5", + ["HeistContractMonsterColdDamage5"] = "HandWrapsAddedColdDamage5", + ["HeistContractMonsterFast1"] = "HandWrapsLocalIncreasedEvasionRating4", + ["HeistContractMonsterFast2___"] = "HandWrapsLocalIncreasedEvasionRating4", + ["HeistContractMonsterFast3_"] = "HandWrapsLocalIncreasedEvasionRating4", + ["HeistContractMonsterFast4_"] = "HandWrapsLocalIncreasedEvasionRating4", + ["HeistContractMonsterFast5"] = "HandWrapsLocalIncreasedEvasionRating4", + ["HeistContractMonsterFireDamage1"] = "HandWrapsAddedFireDamage4", + ["HeistContractMonsterFireDamage2"] = "HandWrapsAddedFireDamage4", + ["HeistContractMonsterFireDamage3"] = "HandWrapsAddedFireDamage4", + ["HeistContractMonsterFireDamage4_"] = "HandWrapsAddedFireDamage4", + ["HeistContractMonsterFireDamage5"] = "HandWrapsAddedFireDamage4", + ["HeistContractMonsterLife1"] = "HandWrapsIncreasedLife10", + ["HeistContractMonsterLife2"] = "HandWrapsIncreasedLife10", + ["HeistContractMonsterLife3"] = "HandWrapsIncreasedLife10", + ["HeistContractMonsterLife4"] = "HandWrapsIncreasedLife10", + ["HeistContractMonsterLife5_"] = "HandWrapsIncreasedLife10", + ["HeistContractMonsterLightningDamage1"] = "HandWrapsAddedLightningDamage7", + ["HeistContractMonsterLightningDamage2_"] = "HandWrapsAddedLightningDamage7", + ["HeistContractMonsterLightningDamage3"] = "HandWrapsAddedLightningDamage7", + ["HeistContractMonsterLightningDamage4"] = "HandWrapsAddedLightningDamage7", + ["HeistContractMonsterLightningDamage5_"] = "HandWrapsAddedLightningDamage7", + ["HeistContractMonsterRewardRoomDamage1"] = "HandWrapsLocalIncreasedEnergyShieldPercent1", + ["HeistContractMonsterRewardRoomDamage2_"] = "HandWrapsLocalIncreasedEnergyShieldPercent1", + ["HeistContractMonsterRewardRoomDamage3___"] = "HandWrapsLocalIncreasedEnergyShieldPercent1", + ["HeistContractMonsterRewardRoomDamage4"] = "HandWrapsLocalIncreasedEnergyShieldPercent1", + ["HeistContractMonsterRewardRoomDamage5"] = "HandWrapsLocalIncreasedEnergyShieldPercent1", + ["HeistNPCGlobalAddedColdDamage1_"] = "HandWrapsAddedColdDamage1", + ["HeistNPCGlobalAddedColdDamage2___"] = "HandWrapsAddedColdDamage2", + ["HeistNPCGlobalAddedColdDamage3"] = "HandWrapsAddedColdDamage3", + ["HeistNPCGlobalAddedColdDamage4"] = "HandWrapsAddedColdDamage4", + ["HeistNPCGlobalAddedFireDamage1"] = "HandWrapsAddedFireDamage1", + ["HeistNPCGlobalAddedFireDamage2"] = "HandWrapsAddedFireDamage2", + ["HeistNPCGlobalAddedFireDamage3___"] = "HandWrapsAddedFireDamage3", + ["HeistNPCGlobalAddedFireDamage4"] = "HandWrapsAddedFireDamage4", + ["HeistNPCGlobalAddedLightningDamage1"] = "HandWrapsAddedLightningDamage1", + ["HeistNPCGlobalAddedLightningDamage2"] = "HandWrapsAddedLightningDamage2", + ["HeistNPCGlobalAddedLightningDamage3"] = "HandWrapsAddedLightningDamage3", + ["HeistNPCGlobalAddedLightningDamage4_"] = "HandWrapsAddedLightningDamage4", + ["HeistNPCGlobalAddedPhysicalDamage1"] = "HandWrapsAddedPhysicalDamage1", + ["HeistNPCGlobalAddedPhysicalDamage2"] = "HandWrapsAddedPhysicalDamage2", + ["HeistNPCGlobalAddedPhysicalDamage3"] = "HandWrapsAddedPhysicalDamage3", + ["HeistNPCGlobalAddedPhysicalDamage4_"] = "HandWrapsAddedPhysicalDamage4", + ["HeistNPCMeleeDamage3"] = "HandWrapsLocalIncreasedArmourAndEvasionAndLife2", + ["HeistNPCProjectileAttackDamage3"] = "HandWrapsIncreasedAccuracy8", + ["IncreasedAccuracy1"] = "HandWrapsIncreasedAccuracy1", + ["IncreasedAccuracy2"] = "HandWrapsIncreasedAccuracy2", + ["IncreasedAccuracy3"] = "HandWrapsIncreasedAccuracy3", + ["IncreasedAccuracy4"] = "HandWrapsIncreasedAccuracy4", + ["IncreasedAccuracy5"] = "HandWrapsIncreasedAccuracy5", + ["IncreasedAccuracy6"] = "HandWrapsIncreasedAccuracy6", + ["IncreasedAccuracy7"] = "HandWrapsIncreasedAccuracy7", + ["IncreasedAccuracy8"] = "HandWrapsIncreasedAccuracy8", + ["IncreasedAccuracy9"] = "HandWrapsIncreasedAccuracy9", + ["IncreasedAttackSpeed1"] = "HandWrapsIncreasedAttackSpeed1", + ["IncreasedAttackSpeed2"] = "HandWrapsIncreasedAttackSpeed2", + ["IncreasedAttackSpeed3"] = "HandWrapsIncreasedAttackSpeed3", + ["IncreasedAttackSpeed4"] = "HandWrapsIncreasedAttackSpeed4", + ["IncreasedEnergyShield1"] = "HandWrapsLocalIncreasedEnergyShield1", + ["IncreasedEnergyShield2"] = "HandWrapsLocalIncreasedEnergyShield2", + ["IncreasedEnergyShield3"] = "HandWrapsLocalIncreasedEnergyShield3", + ["IncreasedEnergyShield4"] = "HandWrapsLocalIncreasedEnergyShield4", + ["IncreasedEnergyShield5"] = "HandWrapsLocalIncreasedEnergyShield5", + ["IncreasedEnergyShield6"] = "HandWrapsLocalIncreasedEnergyShield6", + ["IncreasedEnergyShield7"] = "HandWrapsLocalIncreasedEnergyShield7", + ["IncreasedEnergyShieldJewel_"] = "HandWrapsLocalIncreasedEnergyShield4", + ["IncreasedEnergyShieldPercent1"] = "HandWrapsLocalIncreasedEnergyShieldPercent1", + ["IncreasedEnergyShieldPercent2"] = "HandWrapsLocalIncreasedEnergyShieldPercent2", + ["IncreasedEnergyShieldPercent3"] = "HandWrapsLocalIncreasedEnergyShieldPercent3", + ["IncreasedEnergyShieldPercent4"] = "HandWrapsLocalIncreasedEnergyShieldPercent4", + ["IncreasedEnergyShieldPercent5"] = "HandWrapsLocalIncreasedEnergyShieldPercent5", + ["IncreasedEnergyShieldPercent6"] = "HandWrapsLocalIncreasedEnergyShieldPercent6", + ["IncreasedEnergyShieldPercent7"] = "HandWrapsLocalIncreasedEnergyShieldPercent7", + ["IncreasedEvasionRating1"] = "HandWrapsLocalIncreasedEvasionRating1", + ["IncreasedEvasionRating2"] = "HandWrapsLocalIncreasedEvasionRating2", + ["IncreasedEvasionRating3"] = "HandWrapsLocalIncreasedEvasionRating3", + ["IncreasedEvasionRating4"] = "HandWrapsLocalIncreasedEvasionRating4", + ["IncreasedEvasionRating5"] = "HandWrapsLocalIncreasedEvasionRating5", + ["IncreasedEvasionRating6"] = "HandWrapsLocalIncreasedEvasionRating6", + ["IncreasedEvasionRating7"] = "HandWrapsLocalIncreasedEvasionRating7", + ["IncreasedEvasionRatingPercent1"] = "HandWrapsLocalIncreasedEvasionRatingPercent1", + ["IncreasedEvasionRatingPercent2"] = "HandWrapsLocalIncreasedEvasionRatingPercent2", + ["IncreasedEvasionRatingPercent3"] = "HandWrapsLocalIncreasedEvasionRatingPercent3", + ["IncreasedEvasionRatingPercent4"] = "HandWrapsLocalIncreasedEvasionRatingPercent4", + ["IncreasedEvasionRatingPercent5"] = "HandWrapsLocalIncreasedEvasionRatingPercent5", + ["IncreasedEvasionRatingPercent6"] = "HandWrapsLocalIncreasedEvasionRatingPercent6", + ["IncreasedEvasionRatingPercent7"] = "HandWrapsLocalIncreasedEvasionRatingPercent7", + ["IncreasedLife1"] = "HandWrapsIncreasedLife1", + ["IncreasedLife10"] = "HandWrapsIncreasedLife10", + ["IncreasedLife11"] = "HandWrapsIncreasedLife11", + ["IncreasedLife12"] = "HandWrapsIncreasedLife12", + ["IncreasedLife13"] = "HandWrapsIncreasedLife13", + ["IncreasedLife2"] = "HandWrapsIncreasedLife2", + ["IncreasedLife3"] = "HandWrapsIncreasedLife3", + ["IncreasedLife4"] = "HandWrapsIncreasedLife4", + ["IncreasedLife5"] = "HandWrapsIncreasedLife5", + ["IncreasedLife6"] = "HandWrapsIncreasedLife6", + ["IncreasedLife7"] = "HandWrapsIncreasedLife7", + ["IncreasedLife8"] = "HandWrapsIncreasedLife8", + ["IncreasedLife9"] = "HandWrapsIncreasedLife9", + ["IncreasedLifeJewel"] = "HandWrapsIncreasedLife2", + ["IncreasedMana1"] = "HandWrapsIncreasedMana1", + ["IncreasedMana2"] = "HandWrapsIncreasedMana2", + ["IncreasedMana3"] = "HandWrapsIncreasedMana3", + ["IncreasedMana4"] = "HandWrapsIncreasedMana4", + ["IncreasedMana5"] = "HandWrapsIncreasedMana5", + ["IncreasedMana6"] = "HandWrapsIncreasedMana6", + ["IncreasedMana7"] = "HandWrapsIncreasedMana7", + ["IncreasedMana8"] = "HandWrapsIncreasedMana8", + ["IncreasedMana9"] = "HandWrapsIncreasedMana9", + ["IncreasedManaTwoHandWeapon1"] = "HandWrapsIncreasedMana1", + ["IncreasedManaTwoHandWeapon2_"] = "HandWrapsIncreasedMana2", + ["IncreasedManaTwoHandWeapon3_"] = "HandWrapsIncreasedMana3", + ["IncreasedManaTwoHandWeapon5"] = "HandWrapsIncreasedMana5", + ["IncreasedManaTwoHandWeapon6"] = "HandWrapsIncreasedMana6", + ["IncreasedManaTwoHandWeapon7"] = "HandWrapsIncreasedMana7", + ["IncreasedManaTwoHandWeapon8_"] = "HandWrapsIncreasedMana8", + ["IncreasedManaTwoHandWeapon9"] = "HandWrapsIncreasedMana9", + ["IncreasedPhysicalDamageReductionRating1"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating1", + ["IncreasedPhysicalDamageReductionRating2"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating2", + ["IncreasedPhysicalDamageReductionRating3"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating3", + ["IncreasedPhysicalDamageReductionRating4"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating4", + ["IncreasedPhysicalDamageReductionRating5"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating5", + ["IncreasedPhysicalDamageReductionRating6"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating6", + ["IncreasedPhysicalDamageReductionRating7"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating7", + ["IncreasedPhysicalDamageReductionRatingPercent1"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent1", + ["IncreasedPhysicalDamageReductionRatingPercent2"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent2", + ["IncreasedPhysicalDamageReductionRatingPercent3"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent3", + ["IncreasedPhysicalDamageReductionRatingPercent4"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent4", + ["IncreasedPhysicalDamageReductionRatingPercent5"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent5", + ["IncreasedPhysicalDamageReductionRatingPercent6"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent6", + ["IncreasedPhysicalDamageReductionRatingPercent7"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent7", + ["Intelligence1"] = "HandWrapsIntelligence1", + ["Intelligence2"] = "HandWrapsIntelligence2", + ["Intelligence3"] = "HandWrapsIntelligence3", + ["Intelligence4"] = "HandWrapsIntelligence4", + ["Intelligence5"] = "HandWrapsIntelligence5", + ["Intelligence6"] = "HandWrapsIntelligence6", + ["Intelligence7"] = "HandWrapsIntelligence7", + ["Intelligence8"] = "HandWrapsIntelligence8", + ["ItemFoundRarityIncrease1"] = "HandWrapsItemFoundRarityIncrease1", + ["ItemFoundRarityIncrease2"] = "HandWrapsItemFoundRarityIncrease2", + ["ItemFoundRarityIncrease3"] = "HandWrapsItemFoundRarityIncrease3", + ["ItemRarityJewel"] = "HandWrapsItemFoundRarityIncrease2", + ["JewelAreaofEffect"] = "HandWrapsAddedFireDamage8", + ["JewelBannerValourGained"] = "HandWrapsLifeGainedFromEnemyDeath6", + ["JewelBowAccuracyRating"] = "HandWrapsIncreasedAccuracy1", + ["JewelDamagingAilmentDuration"] = "HandWrapsEnergyShieldRechargeRate6", + ["JewelFireDamage"] = "HandWrapsAddedFireDamage5", + ["JewelIgniteEffect"] = "HandWrapsAddedFireDamage4", + ["JewelLifeRecoup"] = "HandWrapsManaGainedFromEnemyDeath3", + ["JewelLifeonKill"] = "HandWrapsLifeGainedFromEnemyDeath1", + ["JewelLightningDamage"] = "HandWrapsAddedLightningDamage1", + ["JewelManaonKill"] = "HandWrapsManaGainedFromEnemyDeath2", + ["JewelMaximumLightningResistance"] = "HandWrapsStrength7", + ["JewelQuarterstaffDamage"] = "HandWrapsLocalIncreasedEnergyShieldAndLife1", + ["JewelRadiusAreaofEffect"] = "HandWrapsAddedFireDamage8", + ["JewelRadiusBannerValourGained"] = "HandWrapsLifeGainedFromEnemyDeath6", + ["JewelRadiusBowAccuracyRating"] = "HandWrapsIncreasedAccuracy1", + ["JewelRadiusDamagingAilmentDuration"] = "HandWrapsEnergyShieldRechargeRate6", + ["JewelRadiusFireDamage"] = "HandWrapsAddedFireDamage5", + ["JewelRadiusIgniteEffect"] = "HandWrapsAddedFireDamage4", + ["JewelRadiusLifeRecoup"] = "HandWrapsManaGainedFromEnemyDeath3", + ["JewelRadiusLifeonKill"] = "HandWrapsLifeGainedFromEnemyDeath1", + ["JewelRadiusLightningDamage"] = "HandWrapsAddedLightningDamage1", + ["JewelRadiusManaonKill"] = "HandWrapsManaGainedFromEnemyDeath2", + ["JewelRadiusQuarterstaffDamage"] = "HandWrapsLocalIncreasedEnergyShieldAndLife1", + ["LifeGainPerTarget1"] = "HandWrapsLifeGainPerTarget1", + ["LifeGainPerTarget2"] = "HandWrapsLifeGainPerTarget2", + ["LifeGainPerTarget3"] = "HandWrapsLifeGainPerTarget3", + ["LifeGainPerTarget4"] = "HandWrapsLifeGainPerTarget4", + ["LifeGainPerTargetLocal1"] = "HandWrapsLifeGainPerTarget1", + ["LifeGainPerTargetLocal2"] = "HandWrapsLifeGainPerTarget2", + ["LifeGainPerTargetLocal3"] = "HandWrapsLifeGainPerTarget3", + ["LifeGainPerTargetLocal4"] = "HandWrapsLifeGainPerTarget4", + ["LifeGainedFromEnemyDeath1"] = "HandWrapsLifeGainedFromEnemyDeath1", + ["LifeGainedFromEnemyDeath2"] = "HandWrapsLifeGainedFromEnemyDeath2", + ["LifeGainedFromEnemyDeath3"] = "HandWrapsLifeGainedFromEnemyDeath3", + ["LifeGainedFromEnemyDeath4"] = "HandWrapsLifeGainedFromEnemyDeath4", + ["LifeGainedFromEnemyDeath5"] = "HandWrapsLifeGainedFromEnemyDeath5", + ["LifeGainedFromEnemyDeath6"] = "HandWrapsLifeGainedFromEnemyDeath6", + ["LifeGainedFromEnemyDeath7"] = "HandWrapsLifeGainedFromEnemyDeath7", + ["LifeGainedFromEnemyDeath8"] = "HandWrapsLifeGainedFromEnemyDeath8", + ["LifeLeech1"] = "HandWrapsLifeLeech1", + ["LifeLeech2"] = "HandWrapsLifeLeech2", + ["LifeLeech3"] = "HandWrapsLifeLeech3", + ["LifeLeech4"] = "HandWrapsLifeLeech4", + ["LifeLeech5"] = "HandWrapsLifeLeech5", + ["LifeLeechLocal1"] = "HandWrapsLifeLeech1", + ["LifeLeechLocal2"] = "HandWrapsLifeLeech2", + ["LifeLeechLocal3"] = "HandWrapsLifeLeech3", + ["LifeLeechLocal4"] = "HandWrapsLifeLeech4", + ["LifeLeechLocal5"] = "HandWrapsLifeLeech5", + ["LifeOnHitJewel"] = "HandWrapsLifeGainPerTarget1", + ["LifeRecoupJewel"] = "HandWrapsManaGainedFromEnemyDeath3", + ["LightningDamageJewel"] = "HandWrapsAddedLightningDamage1", + ["LightningResist1"] = "HandWrapsLightningResist1", + ["LightningResist2"] = "HandWrapsLightningResist2", + ["LightningResist3"] = "HandWrapsLightningResist3", + ["LightningResist4"] = "HandWrapsLightningResist4", + ["LightningResist5"] = "HandWrapsLightningResist5", + ["LightningResist6"] = "HandWrapsLightningResist6", + ["LightningResist7"] = "HandWrapsLightningResist7", + ["LightningResist8"] = "HandWrapsLightningResist8", + ["LocalAddedColdDamage1"] = "HandWrapsAddedColdDamage1", + ["LocalAddedColdDamage2"] = "HandWrapsAddedColdDamage2", + ["LocalAddedColdDamage3"] = "HandWrapsAddedColdDamage3", + ["LocalAddedColdDamage4"] = "HandWrapsAddedColdDamage4", + ["LocalAddedColdDamage5"] = "HandWrapsAddedColdDamage5", + ["LocalAddedColdDamage6"] = "HandWrapsAddedColdDamage6", + ["LocalAddedColdDamage7"] = "HandWrapsAddedColdDamage7", + ["LocalAddedColdDamage8"] = "HandWrapsAddedColdDamage8", + ["LocalAddedColdDamage9"] = "HandWrapsAddedColdDamage9", + ["LocalAddedColdDamageTwoHand1"] = "HandWrapsAddedColdDamage1", + ["LocalAddedColdDamageTwoHand2"] = "HandWrapsAddedColdDamage2", + ["LocalAddedColdDamageTwoHand3"] = "HandWrapsAddedColdDamage3", + ["LocalAddedColdDamageTwoHand4"] = "HandWrapsAddedColdDamage4", + ["LocalAddedColdDamageTwoHand5"] = "HandWrapsAddedColdDamage5", + ["LocalAddedColdDamageTwoHand6"] = "HandWrapsAddedColdDamage6", + ["LocalAddedColdDamageTwoHand7"] = "HandWrapsAddedColdDamage7", + ["LocalAddedColdDamageTwoHand8"] = "HandWrapsAddedColdDamage8", + ["LocalAddedColdDamageTwoHand9"] = "HandWrapsAddedColdDamage9", + ["LocalAddedFireDamage1"] = "HandWrapsAddedFireDamage1", + ["LocalAddedFireDamage2"] = "HandWrapsAddedFireDamage2", + ["LocalAddedFireDamage3"] = "HandWrapsAddedFireDamage3", + ["LocalAddedFireDamage4"] = "HandWrapsAddedFireDamage4", + ["LocalAddedFireDamage5"] = "HandWrapsAddedFireDamage5", + ["LocalAddedFireDamage6"] = "HandWrapsAddedFireDamage6", + ["LocalAddedFireDamage7"] = "HandWrapsAddedFireDamage7", + ["LocalAddedFireDamage8"] = "HandWrapsAddedFireDamage8", + ["LocalAddedFireDamage9"] = "HandWrapsAddedFireDamage9", + ["LocalAddedFireDamageTwoHand1"] = "HandWrapsAddedFireDamage1", + ["LocalAddedFireDamageTwoHand2"] = "HandWrapsAddedFireDamage2", + ["LocalAddedFireDamageTwoHand3"] = "HandWrapsAddedFireDamage3", + ["LocalAddedFireDamageTwoHand4"] = "HandWrapsAddedFireDamage4", + ["LocalAddedFireDamageTwoHand5"] = "HandWrapsAddedFireDamage5", + ["LocalAddedFireDamageTwoHand6"] = "HandWrapsAddedFireDamage6", + ["LocalAddedFireDamageTwoHand7"] = "HandWrapsAddedFireDamage7", + ["LocalAddedFireDamageTwoHand8_"] = "HandWrapsAddedFireDamage8", + ["LocalAddedFireDamageTwoHand9"] = "HandWrapsAddedFireDamage9", + ["LocalAddedLightningDamage1"] = "HandWrapsAddedLightningDamage1", + ["LocalAddedLightningDamage2"] = "HandWrapsAddedLightningDamage2", + ["LocalAddedLightningDamage3"] = "HandWrapsAddedLightningDamage3", + ["LocalAddedLightningDamage4"] = "HandWrapsAddedLightningDamage4", + ["LocalAddedLightningDamage5"] = "HandWrapsAddedLightningDamage5", + ["LocalAddedLightningDamage6"] = "HandWrapsAddedLightningDamage6", + ["LocalAddedLightningDamage7"] = "HandWrapsAddedLightningDamage7", + ["LocalAddedLightningDamage8"] = "HandWrapsAddedLightningDamage8", + ["LocalAddedLightningDamage9"] = "HandWrapsAddedLightningDamage9", + ["LocalAddedLightningDamageTwoHand1_"] = "HandWrapsAddedLightningDamage1", + ["LocalAddedLightningDamageTwoHand2"] = "HandWrapsAddedLightningDamage2", + ["LocalAddedLightningDamageTwoHand3"] = "HandWrapsAddedLightningDamage3", + ["LocalAddedLightningDamageTwoHand4"] = "HandWrapsAddedLightningDamage4", + ["LocalAddedLightningDamageTwoHand5"] = "HandWrapsAddedLightningDamage5", + ["LocalAddedLightningDamageTwoHand6"] = "HandWrapsAddedLightningDamage6", + ["LocalAddedLightningDamageTwoHand7"] = "HandWrapsAddedLightningDamage7", + ["LocalAddedLightningDamageTwoHand8"] = "HandWrapsAddedLightningDamage8", + ["LocalAddedLightningDamageTwoHand9"] = "HandWrapsAddedLightningDamage9", + ["LocalAddedPhysicalDamage1"] = "HandWrapsAddedPhysicalDamage1", + ["LocalAddedPhysicalDamage2"] = "HandWrapsAddedPhysicalDamage2", + ["LocalAddedPhysicalDamage3"] = "HandWrapsAddedPhysicalDamage3", + ["LocalAddedPhysicalDamage4"] = "HandWrapsAddedPhysicalDamage4", + ["LocalAddedPhysicalDamage5"] = "HandWrapsAddedPhysicalDamage5", + ["LocalAddedPhysicalDamage6"] = "HandWrapsAddedPhysicalDamage6", + ["LocalAddedPhysicalDamage7"] = "HandWrapsAddedPhysicalDamage7", + ["LocalAddedPhysicalDamage8"] = "HandWrapsAddedPhysicalDamage8", + ["LocalAddedPhysicalDamage9"] = "HandWrapsAddedPhysicalDamage9", + ["LocalAddedPhysicalDamageTwoHand1"] = "HandWrapsAddedPhysicalDamage1", + ["LocalAddedPhysicalDamageTwoHand2"] = "HandWrapsAddedPhysicalDamage2", + ["LocalAddedPhysicalDamageTwoHand3"] = "HandWrapsAddedPhysicalDamage3", + ["LocalAddedPhysicalDamageTwoHand4"] = "HandWrapsAddedPhysicalDamage4", + ["LocalAddedPhysicalDamageTwoHand5"] = "HandWrapsAddedPhysicalDamage5", + ["LocalAddedPhysicalDamageTwoHand6"] = "HandWrapsAddedPhysicalDamage6", + ["LocalAddedPhysicalDamageTwoHand7"] = "HandWrapsAddedPhysicalDamage7", + ["LocalAddedPhysicalDamageTwoHand8"] = "HandWrapsAddedPhysicalDamage8", + ["LocalAddedPhysicalDamageTwoHand9"] = "HandWrapsAddedPhysicalDamage9", + ["LocalBaseArmourAndEnergyShield1"] = "HandWrapsLocalBaseArmourAndEnergyShield1", + ["LocalBaseArmourAndEnergyShield2_"] = "HandWrapsLocalBaseArmourAndEnergyShield2", + ["LocalBaseArmourAndEnergyShield3"] = "HandWrapsLocalBaseArmourAndEnergyShield3", + ["LocalBaseArmourAndEnergyShield4"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["LocalBaseArmourAndEvasionRating1"] = "HandWrapsLocalBaseArmourAndEvasionRating1", + ["LocalBaseArmourAndEvasionRating2"] = "HandWrapsLocalBaseArmourAndEvasionRating2", + ["LocalBaseArmourAndEvasionRating3"] = "HandWrapsLocalBaseArmourAndEvasionRating3", + ["LocalBaseArmourAndEvasionRating4"] = "HandWrapsLocalBaseArmourAndEvasionRating4", + ["LocalBaseEvasionRatingAndEnergyShield1"] = "HandWrapsLocalBaseEvasionRatingAndEnergyShield1", + ["LocalBaseEvasionRatingAndEnergyShield2"] = "HandWrapsLocalBaseEvasionRatingAndEnergyShield2", + ["LocalBaseEvasionRatingAndEnergyShield3"] = "HandWrapsLocalBaseEvasionRatingAndEnergyShield3", + ["LocalBaseEvasionRatingAndEnergyShield4"] = "HandWrapsLocalBaseEvasionRatingAndEnergyShield4", + ["LocalCriticalMultiplier1"] = "HandWrapsCriticalMultiplier1", + ["LocalCriticalMultiplier2"] = "HandWrapsCriticalMultiplier2", + ["LocalCriticalMultiplier3"] = "HandWrapsCriticalMultiplier3", + ["LocalCriticalMultiplier4"] = "HandWrapsCriticalMultiplier4", + ["LocalCriticalMultiplier5"] = "HandWrapsCriticalMultiplier5", + ["LocalIncreasedAccuracy1"] = "HandWrapsIncreasedAccuracy1", + ["LocalIncreasedAccuracy2"] = "HandWrapsIncreasedAccuracy2", + ["LocalIncreasedAccuracy3"] = "HandWrapsIncreasedAccuracy3", + ["LocalIncreasedAccuracy4"] = "HandWrapsIncreasedAccuracy4", + ["LocalIncreasedAccuracy5"] = "HandWrapsIncreasedAccuracy5", + ["LocalIncreasedAccuracy6"] = "HandWrapsIncreasedAccuracy6", + ["LocalIncreasedAccuracy7"] = "HandWrapsIncreasedAccuracy7", + ["LocalIncreasedAccuracy8"] = "HandWrapsIncreasedAccuracy8", + ["LocalIncreasedAccuracy9_"] = "HandWrapsIncreasedAccuracy9", + ["LocalIncreasedArmourAndEnergyShield1"] = "HandWrapsLocalIncreasedArmourAndEnergyShield1", + ["LocalIncreasedArmourAndEnergyShield2"] = "HandWrapsLocalIncreasedArmourAndEnergyShield2", + ["LocalIncreasedArmourAndEnergyShield3"] = "HandWrapsLocalIncreasedArmourAndEnergyShield3", + ["LocalIncreasedArmourAndEnergyShield4"] = "HandWrapsLocalIncreasedArmourAndEnergyShield4", + ["LocalIncreasedArmourAndEnergyShield5"] = "HandWrapsLocalIncreasedArmourAndEnergyShield5", + ["LocalIncreasedArmourAndEnergyShield6"] = "HandWrapsLocalIncreasedArmourAndEnergyShield6", + ["LocalIncreasedArmourAndEnergyShield7"] = "HandWrapsLocalIncreasedArmourAndEnergyShield7", + ["LocalIncreasedArmourAndEnergyShieldAndLife1"] = "HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife1", + ["LocalIncreasedArmourAndEnergyShieldAndLife2"] = "HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife2", + ["LocalIncreasedArmourAndEnergyShieldAndLife3"] = "HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife3", + ["LocalIncreasedArmourAndEnergyShieldAndLife4"] = "HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife4", + ["LocalIncreasedArmourAndEnergyShieldAndLife5"] = "HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife5", + ["LocalIncreasedArmourAndEnergyShieldAndLife6"] = "HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife6", + ["LocalIncreasedArmourAndEvasion1"] = "HandWrapsLocalIncreasedArmourAndEvasion1", + ["LocalIncreasedArmourAndEvasion2"] = "HandWrapsLocalIncreasedArmourAndEvasion2", + ["LocalIncreasedArmourAndEvasion3"] = "HandWrapsLocalIncreasedArmourAndEvasion3", + ["LocalIncreasedArmourAndEvasion4"] = "HandWrapsLocalIncreasedArmourAndEvasion4", + ["LocalIncreasedArmourAndEvasion5"] = "HandWrapsLocalIncreasedArmourAndEvasion5", + ["LocalIncreasedArmourAndEvasion6"] = "HandWrapsLocalIncreasedArmourAndEvasion6", + ["LocalIncreasedArmourAndEvasion7"] = "HandWrapsLocalIncreasedArmourAndEvasion7", + ["LocalIncreasedArmourAndEvasionAndEnergyShield1"] = "HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield1", + ["LocalIncreasedArmourAndEvasionAndEnergyShield2"] = "HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield2", + ["LocalIncreasedArmourAndEvasionAndEnergyShield3"] = "HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield3", + ["LocalIncreasedArmourAndEvasionAndEnergyShield4"] = "HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield4", + ["LocalIncreasedArmourAndEvasionAndEnergyShield5"] = "HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield5", + ["LocalIncreasedArmourAndEvasionAndEnergyShield6"] = "HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield6", + ["LocalIncreasedArmourAndEvasionAndEnergyShield7"] = "HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield7", + ["LocalIncreasedArmourAndEvasionAndEnergyShield8"] = "HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield8", + ["LocalIncreasedArmourAndEvasionAndLife1"] = "HandWrapsLocalIncreasedArmourAndEvasionAndLife1", + ["LocalIncreasedArmourAndEvasionAndLife2"] = "HandWrapsLocalIncreasedArmourAndEvasionAndLife2", + ["LocalIncreasedArmourAndEvasionAndLife3"] = "HandWrapsLocalIncreasedArmourAndEvasionAndLife3", + ["LocalIncreasedArmourAndEvasionAndLife4"] = "HandWrapsLocalIncreasedArmourAndEvasionAndLife4", + ["LocalIncreasedArmourAndEvasionAndLife5"] = "HandWrapsLocalIncreasedArmourAndEvasionAndLife5", + ["LocalIncreasedArmourAndEvasionAndLife6"] = "HandWrapsLocalIncreasedArmourAndEvasionAndLife6", + ["LocalIncreasedArmourAndLife1"] = "HandWrapsLocalIncreasedArmourAndLife1", + ["LocalIncreasedArmourAndLife2"] = "HandWrapsLocalIncreasedArmourAndLife2", + ["LocalIncreasedArmourAndLife3"] = "HandWrapsLocalIncreasedArmourAndLife3", + ["LocalIncreasedArmourAndLife4"] = "HandWrapsLocalIncreasedArmourAndLife4", + ["LocalIncreasedArmourAndLife5"] = "HandWrapsLocalIncreasedArmourAndLife5", + ["LocalIncreasedArmourAndLife6"] = "HandWrapsLocalIncreasedArmourAndLife6", + ["LocalIncreasedAttackSpeed1"] = "HandWrapsIncreasedAttackSpeed1", + ["LocalIncreasedAttackSpeed2"] = "HandWrapsIncreasedAttackSpeed2", + ["LocalIncreasedAttackSpeed3"] = "HandWrapsIncreasedAttackSpeed3", + ["LocalIncreasedAttackSpeed4"] = "HandWrapsIncreasedAttackSpeed4", + ["LocalIncreasedEnergyShield1"] = "HandWrapsLocalIncreasedEnergyShield1", + ["LocalIncreasedEnergyShield2"] = "HandWrapsLocalIncreasedEnergyShield2", + ["LocalIncreasedEnergyShield3"] = "HandWrapsLocalIncreasedEnergyShield3", + ["LocalIncreasedEnergyShield4"] = "HandWrapsLocalIncreasedEnergyShield4", + ["LocalIncreasedEnergyShield5"] = "HandWrapsLocalIncreasedEnergyShield5", + ["LocalIncreasedEnergyShield6"] = "HandWrapsLocalIncreasedEnergyShield6", + ["LocalIncreasedEnergyShield7"] = "HandWrapsLocalIncreasedEnergyShield7", + ["LocalIncreasedEnergyShieldAndLife1"] = "HandWrapsLocalIncreasedEnergyShieldAndLife1", + ["LocalIncreasedEnergyShieldAndLife2"] = "HandWrapsLocalIncreasedEnergyShieldAndLife2", + ["LocalIncreasedEnergyShieldAndLife3"] = "HandWrapsLocalIncreasedEnergyShieldAndLife3", + ["LocalIncreasedEnergyShieldAndLife4"] = "HandWrapsLocalIncreasedEnergyShieldAndLife4", + ["LocalIncreasedEnergyShieldAndLife5"] = "HandWrapsLocalIncreasedEnergyShieldAndLife5", + ["LocalIncreasedEnergyShieldAndLife6"] = "HandWrapsLocalIncreasedEnergyShieldAndLife6", + ["LocalIncreasedEnergyShieldPercent1"] = "HandWrapsLocalIncreasedEnergyShieldPercent1", + ["LocalIncreasedEnergyShieldPercent2"] = "HandWrapsLocalIncreasedEnergyShieldPercent2", + ["LocalIncreasedEnergyShieldPercent3"] = "HandWrapsLocalIncreasedEnergyShieldPercent3", + ["LocalIncreasedEnergyShieldPercent4"] = "HandWrapsLocalIncreasedEnergyShieldPercent4", + ["LocalIncreasedEnergyShieldPercent5"] = "HandWrapsLocalIncreasedEnergyShieldPercent5", + ["LocalIncreasedEnergyShieldPercent6"] = "HandWrapsLocalIncreasedEnergyShieldPercent6", + ["LocalIncreasedEnergyShieldPercent7_"] = "HandWrapsLocalIncreasedEnergyShieldPercent7", + ["LocalIncreasedEvasionAndEnergyShield1"] = "HandWrapsLocalIncreasedEvasionAndEnergyShield1", + ["LocalIncreasedEvasionAndEnergyShield2"] = "HandWrapsLocalIncreasedEvasionAndEnergyShield2", + ["LocalIncreasedEvasionAndEnergyShield3"] = "HandWrapsLocalIncreasedEvasionAndEnergyShield3", + ["LocalIncreasedEvasionAndEnergyShield4"] = "HandWrapsLocalIncreasedEvasionAndEnergyShield4", + ["LocalIncreasedEvasionAndEnergyShield5_"] = "HandWrapsLocalIncreasedEvasionAndEnergyShield5", + ["LocalIncreasedEvasionAndEnergyShield6"] = "HandWrapsLocalIncreasedEvasionAndEnergyShield6", + ["LocalIncreasedEvasionAndEnergyShield7"] = "HandWrapsLocalIncreasedEvasionAndEnergyShield7", + ["LocalIncreasedEvasionAndEnergyShield8"] = "HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield7", + ["LocalIncreasedEvasionAndEnergyShieldAndLife1"] = "HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife1", + ["LocalIncreasedEvasionAndEnergyShieldAndLife2"] = "HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife2", + ["LocalIncreasedEvasionAndEnergyShieldAndLife3"] = "HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife3", + ["LocalIncreasedEvasionAndEnergyShieldAndLife4"] = "HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife4", + ["LocalIncreasedEvasionAndEnergyShieldAndLife5"] = "HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife5", + ["LocalIncreasedEvasionAndEnergyShieldAndLife6"] = "HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife6", + ["LocalIncreasedEvasionAndLife1"] = "HandWrapsLocalIncreasedEvasionAndLife1", + ["LocalIncreasedEvasionAndLife2"] = "HandWrapsLocalIncreasedEvasionAndLife2", + ["LocalIncreasedEvasionAndLife3"] = "HandWrapsLocalIncreasedEvasionAndLife3", + ["LocalIncreasedEvasionAndLife4"] = "HandWrapsLocalIncreasedEvasionAndLife4", + ["LocalIncreasedEvasionAndLife5"] = "HandWrapsLocalIncreasedEvasionAndLife5", + ["LocalIncreasedEvasionAndLife6"] = "HandWrapsLocalIncreasedEvasionAndLife6", + ["LocalIncreasedEvasionRating1"] = "HandWrapsLocalIncreasedEvasionRating1", + ["LocalIncreasedEvasionRating2"] = "HandWrapsLocalIncreasedEvasionRating2", + ["LocalIncreasedEvasionRating3"] = "HandWrapsLocalIncreasedEvasionRating3", + ["LocalIncreasedEvasionRating4"] = "HandWrapsLocalIncreasedEvasionRating4", + ["LocalIncreasedEvasionRating5"] = "HandWrapsLocalIncreasedEvasionRating5", + ["LocalIncreasedEvasionRating6"] = "HandWrapsLocalIncreasedEvasionRating6", + ["LocalIncreasedEvasionRating7_"] = "HandWrapsLocalIncreasedEvasionRating7", + ["LocalIncreasedEvasionRatingPercent1"] = "HandWrapsLocalIncreasedEvasionRatingPercent1", + ["LocalIncreasedEvasionRatingPercent2"] = "HandWrapsLocalIncreasedEvasionRatingPercent2", + ["LocalIncreasedEvasionRatingPercent3"] = "HandWrapsLocalIncreasedEvasionRatingPercent3", + ["LocalIncreasedEvasionRatingPercent4"] = "HandWrapsLocalIncreasedEvasionRatingPercent4", + ["LocalIncreasedEvasionRatingPercent5"] = "HandWrapsLocalIncreasedEvasionRatingPercent5", + ["LocalIncreasedEvasionRatingPercent6"] = "HandWrapsLocalIncreasedEvasionRatingPercent6", + ["LocalIncreasedEvasionRatingPercent7"] = "HandWrapsLocalIncreasedEvasionRatingPercent7", + ["LocalIncreasedPhysicalDamageReductionRating1"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating1", + ["LocalIncreasedPhysicalDamageReductionRating2"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating2", + ["LocalIncreasedPhysicalDamageReductionRating3"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating3", + ["LocalIncreasedPhysicalDamageReductionRating4"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating4", + ["LocalIncreasedPhysicalDamageReductionRating5"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating5", + ["LocalIncreasedPhysicalDamageReductionRating6"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating6", + ["LocalIncreasedPhysicalDamageReductionRating7__"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating7", + ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent1", + ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent2", + ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent3", + ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent4", + ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent5", + ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent6", + ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent7", + ["ManaGainedFromEnemyDeath1"] = "HandWrapsManaGainedFromEnemyDeath1", + ["ManaGainedFromEnemyDeath2"] = "HandWrapsManaGainedFromEnemyDeath2", + ["ManaGainedFromEnemyDeath3"] = "HandWrapsManaGainedFromEnemyDeath3", + ["ManaGainedFromEnemyDeath4"] = "HandWrapsManaGainedFromEnemyDeath4", + ["ManaGainedFromEnemyDeath5"] = "HandWrapsManaGainedFromEnemyDeath5", + ["ManaGainedFromEnemyDeath6"] = "HandWrapsManaGainedFromEnemyDeath6", + ["ManaGainedFromEnemyDeath7"] = "HandWrapsManaGainedFromEnemyDeath7", + ["ManaGainedFromEnemyDeath8"] = "HandWrapsManaGainedFromEnemyDeath8", + ["ManaLeech1"] = "HandWrapsManaLeech1", + ["ManaLeech2"] = "HandWrapsManaLeech2", + ["ManaLeech3"] = "HandWrapsManaLeech3", + ["ManaLeech4"] = "HandWrapsManaLeech4", + ["ManaLeech5"] = "HandWrapsManaLeech5", + ["ManaLeechLocal1"] = "HandWrapsManaLeech1", + ["ManaLeechLocal2"] = "HandWrapsManaLeech2", + ["ManaLeechLocal3"] = "HandWrapsManaLeech3", + ["ManaLeechLocal4"] = "HandWrapsManaLeech4", + ["ManaLeechLocal5"] = "HandWrapsManaLeech5", + ["ManaOnHitJewel"] = "HandWrapsManaGainedFromEnemyDeath1", + ["MapAbyssModManaSiphonGround"] = "HandWrapsManaGainedFromEnemyDeath6", + ["MapAbyssRareMonstersSoulEater"] = "HandWrapsManaGainedFromEnemyDeath5", + ["MapCorruptedSideAreaColdDamage"] = "HandWrapsAddedColdDamage5", + ["MapCorruptedSideAreaFast"] = "HandWrapsLocalIncreasedEvasionRating4", + ["MapCorruptedSideAreaFireDamage"] = "HandWrapsAddedFireDamage4", + ["MapCorruptedSideAreaLife____"] = "HandWrapsIncreasedLife10", + ["MapCorruptedSideAreaLightningDamage_"] = "HandWrapsAddedLightningDamage7", + ["MapMonsterAccuracy1"] = "HandWrapsIncreasedAccuracy1", + ["MapMonsterAccuracy2"] = "HandWrapsIncreasedAccuracy1", + ["MapMonsterAccuracy3"] = "HandWrapsIncreasedAccuracy1", + ["MapMonsterAccuracy4"] = "HandWrapsIncreasedAccuracy1", + ["MapMonsterAdditionalPackBramble1"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPackBramble2"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPackBramble3"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksBaron1"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksBaron2"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksBaron3"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksBeasts1"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksBeasts2"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksBeasts3"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksDoryani1"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksDoryani2"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksDoryani3"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksEzomyte1"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksEzomyte2"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksEzomyte3"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksFaridun1"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksFaridun2"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksFaridun3"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksPerennial1"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksPerennial2"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksPerennial3"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksUndead1"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksUndead2"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksUndead3"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksVaal1"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksVaal2"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterAdditionalPacksVaal3"] = "HandWrapsLocalBaseArmourAndEnergyShield4", + ["MapMonsterColdDamage"] = "HandWrapsAddedColdDamage5", + ["MapMonsterColdDamage1MapWorldsExpedition"] = "HandWrapsAddedColdDamage5", + ["MapMonsterColdDamage2Map2Tier"] = "HandWrapsAddedColdDamage5", + ["MapMonsterColdDamage2MapWorlds"] = "HandWrapsAddedColdDamage5", + ["MapMonsterColdDamage2MapWorldsExpedition"] = "HandWrapsAddedColdDamage5", + ["MapMonsterColdDamage3Map2Tier"] = "HandWrapsAddedColdDamage5", + ["MapMonsterColdDamage3MapWorldsExpedition"] = "HandWrapsAddedColdDamage5", + ["MapMonsterColdDamage3MapWorldsMaven"] = "HandWrapsAddedColdDamage5", + ["MapMonsterColdDamage3MapWorlds_"] = "HandWrapsAddedColdDamage5", + ["MapMonsterColdDamageMap2Tier"] = "HandWrapsAddedColdDamage5", + ["MapMonsterColdDamageMapWorlds"] = "HandWrapsAddedColdDamage5", + ["MapMonsterColdDamageMapWorldsExpedition"] = "HandWrapsAddedColdDamage5", + ["MapMonsterEnergyShield1"] = "HandWrapsEnergyShieldRechargeRate4", + ["MapMonsterFast"] = "HandWrapsLocalIncreasedEvasionRating4", + ["MapMonsterFast1MapWorldsExpedition"] = "HandWrapsLocalIncreasedEvasionRating4", + ["MapMonsterFast2Map2Tier_"] = "HandWrapsLocalIncreasedEvasionRating4", + ["MapMonsterFast2MapWorlds"] = "HandWrapsLocalIncreasedEvasionRating4", + ["MapMonsterFast2MapWorldsExpedition"] = "HandWrapsLocalIncreasedEvasionRating4", + ["MapMonsterFast3Map2Tier"] = "HandWrapsLocalIncreasedEvasionRating4", + ["MapMonsterFast3MapWorlds"] = "HandWrapsLocalIncreasedEvasionRating4", + ["MapMonsterFast3MapWorldsExpedition__"] = "HandWrapsLocalIncreasedEvasionRating4", + ["MapMonsterFast3MapWorldsMaven_"] = "HandWrapsLocalIncreasedEvasionRating4", + ["MapMonsterFastMap2Tier_"] = "HandWrapsLocalIncreasedEvasionRating4", + ["MapMonsterFastMapWorlds"] = "HandWrapsLocalIncreasedEvasionRating4", + ["MapMonsterFastMapWorldsExpedition"] = "HandWrapsLocalIncreasedEvasionRating4", + ["MapMonsterFireDamage"] = "HandWrapsAddedFireDamage4", + ["MapMonsterFireDamage1MapWorldsExpedition"] = "HandWrapsAddedFireDamage4", + ["MapMonsterFireDamage2Map2Tier"] = "HandWrapsAddedFireDamage4", + ["MapMonsterFireDamage2MapWorlds"] = "HandWrapsAddedFireDamage4", + ["MapMonsterFireDamage2MapWorldsExpedition"] = "HandWrapsAddedFireDamage4", + ["MapMonsterFireDamage3Map2Tier_"] = "HandWrapsAddedFireDamage4", + ["MapMonsterFireDamage3MapWorlds"] = "HandWrapsAddedFireDamage4", + ["MapMonsterFireDamage3MapWorldsExpedition"] = "HandWrapsAddedFireDamage4", + ["MapMonsterFireDamage3MapWorldsMaven_"] = "HandWrapsAddedFireDamage4", + ["MapMonsterFireDamageMap2Tier"] = "HandWrapsAddedFireDamage4", + ["MapMonsterFireDamageMapWorlds"] = "HandWrapsAddedFireDamage4", + ["MapMonsterFireDamageMapWorldsExpedition"] = "HandWrapsAddedFireDamage4", + ["MapMonsterLife"] = "HandWrapsIncreasedLife10", + ["MapMonsterLife1MapWorldsExpedition"] = "HandWrapsIncreasedLife10", + ["MapMonsterLife2Map2Tier"] = "HandWrapsIncreasedLife10", + ["MapMonsterLife2MapWorlds"] = "HandWrapsIncreasedLife10", + ["MapMonsterLife2MapWorldsExpedition"] = "HandWrapsIncreasedLife10", + ["MapMonsterLife3Map2Tier"] = "HandWrapsIncreasedLife10", + ["MapMonsterLife3MapWorlds"] = "HandWrapsIncreasedLife10", + ["MapMonsterLife3MapWorldsExpedition"] = "HandWrapsIncreasedLife10", + ["MapMonsterLife3MapWorldsMaven"] = "HandWrapsIncreasedLife10", + ["MapMonsterLifeMap2Tier"] = "HandWrapsIncreasedLife10", + ["MapMonsterLifeMapWorlds"] = "HandWrapsIncreasedLife10", + ["MapMonsterLifeMapWorldsExpedition"] = "HandWrapsIncreasedLife10", + ["MapMonsterLightningDamage"] = "HandWrapsAddedLightningDamage7", + ["MapMonsterLightningDamage1MapWorldsExpedition"] = "HandWrapsAddedLightningDamage7", + ["MapMonsterLightningDamage2Map2Tier"] = "HandWrapsAddedLightningDamage7", + ["MapMonsterLightningDamage2MapWorldsExpedition_"] = "HandWrapsAddedLightningDamage7", + ["MapMonsterLightningDamage2MapWorlds__"] = "HandWrapsAddedLightningDamage7", + ["MapMonsterLightningDamage3Map2Tier__"] = "HandWrapsAddedLightningDamage7", + ["MapMonsterLightningDamage3MapWorlds"] = "HandWrapsAddedLightningDamage7", + ["MapMonsterLightningDamage3MapWorldsExpedition_"] = "HandWrapsAddedLightningDamage7", + ["MapMonsterLightningDamage3MapWorldsMaven"] = "HandWrapsAddedLightningDamage7", + ["MapMonsterLightningDamageMap2Tier"] = "HandWrapsAddedLightningDamage7", + ["MapMonsterLightningDamageMapWorlds"] = "HandWrapsAddedLightningDamage7", + ["MapMonsterLightningDamageMapWorldsExpedition"] = "HandWrapsAddedLightningDamage7", + ["MapSpreadBurningGround2"] = "HandWrapsAddedFireDamage5", + ["MapSpreadBurningGround3"] = "HandWrapsAddedFireDamage5", + ["MapSpreadBurningGround4"] = "HandWrapsAddedFireDamage5", + ["MapSpreadShockedGround2"] = "HandWrapsAddedLightningDamage7", + ["MapSpreadShockedGround3"] = "HandWrapsAddedLightningDamage7", + ["MapSpreadShockedGround4"] = "HandWrapsAddedLightningDamage7", + ["MarksmanInfluenceChainToChainOffTerrain1"] = "HandWrapsMarksmanInfluenceChainToChainOffTerrain1", + ["MarksmanInfluenceChainToChainOffTerrain2"] = "HandWrapsMarksmanInfluenceChainToChainOffTerrain2", + ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = "HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking1", + ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = "HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking2", + ["MarksmanInfluenceChanceToPierce1"] = "HandWrapsMarksmanInfluenceChanceToPierce1", + ["MarksmanInfluenceChanceToPierce2"] = "HandWrapsMarksmanInfluenceChanceToPierce2", + ["MarksmanInfluenceCriticalHitChance1"] = "HandWrapsMarksmanInfluenceCriticalHitChance1", + ["MarksmanInfluenceCriticalHitChance2"] = "HandWrapsMarksmanInfluenceCriticalHitChance2", + ["MarksmanInfluenceCriticalHitChance3"] = "HandWrapsMarksmanInfluenceCriticalHitChance3", + ["MarksmanInfluenceIncreasedMarkDuration1"] = "HandWrapsMarksmanInfluenceIncreasedMarkDuration1", + ["MarksmanInfluenceIncreasedMarkDuration2"] = "HandWrapsMarksmanInfluenceIncreasedMarkDuration2", + ["MarksmanInfluenceMarkEffect1"] = "HandWrapsMarksmanInfluenceMarkEffect1", + ["MarksmanInfluenceMarkEffect2"] = "HandWrapsMarksmanInfluenceMarkEffect2", + ["MarksmanInfluenceMarkSkillLevels1"] = "HandWrapsMarksmanInfluenceMarkSkillLevels1", + ["MarksmanInfluenceMarkSkillLevels2"] = "HandWrapsMarksmanInfluenceMarkSkillLevels2", + ["MarksmanInfluenceMarkSkillUseSpeed1"] = "HandWrapsMarksmanInfluenceMarkSkillUseSpeed1", + ["MarksmanInfluenceMarkSkillUseSpeed2"] = "HandWrapsMarksmanInfluenceMarkSkillUseSpeed2", + ["MarksmanInfluenceProjectileDamage1"] = "HandWrapsMarksmanInfluenceProjectileDamage1", + ["MarksmanInfluenceProjectileDamage2"] = "HandWrapsMarksmanInfluenceProjectileDamage2", + ["MarksmanInfluenceProjectileDamage3"] = "HandWrapsMarksmanInfluenceProjectileDamage3", + ["MarksmanInfluenceProjectileSkills1"] = "HandWrapsMarksmanInfluenceProjectileSkills1", + ["MarksmanInfluenceProjectileSkills2"] = "HandWrapsMarksmanInfluenceProjectileSkills2", + ["MarksmanInfluenceProjectileSpeed1"] = "HandWrapsMarksmanInfluenceProjectileSpeed1", + ["MarksmanInfluenceProjectileSpeed2"] = "HandWrapsMarksmanInfluenceProjectileSpeed2", + ["MarksmanInfluenceProjectileSpeed3"] = "HandWrapsMarksmanInfluenceProjectileSpeed3", + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = "HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles1", + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = "HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles2", + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = "HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles3", + ["MeleeDamageJewel_"] = "HandWrapsGlobalMeleeSkillGemLevel1", + ["MonsterAccurate1"] = "HandWrapsIncreasedAccuracy1", + ["MonsterBurningGroundOnDeath1"] = "HandWrapsAddedFireDamage1", + ["MonsterChaosResistance1"] = "HandWrapsChaosResist5", + ["MonsterChilledGroundOnDeath1"] = "HandWrapsAddedColdDamage1", + ["MonsterColdResistance1"] = "HandWrapsColdResist7", + ["MonsterDamageReduction1"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating5", + ["MonsterExtraEnergyShield1"] = "HandWrapsEnergyShieldRechargeRate4", + ["MonsterFireResistance1"] = "HandWrapsFireResist6", + ["MonsterGainsFrenzyChargeAsKilled1"] = "HandWrapsCriticalMultiplier2", + ["MonsterLifeLeech1"] = "HandWrapsLifeLeech4", + ["MonsterLifeRegen1"] = "HandWrapsIncreasedLife3", + ["MonsterLightningResistance1"] = "HandWrapsLightningResist5", + ["MonsterResistsChaos1"] = "HandWrapsChaosResist5", + ["MonsterShockedGroundOnDeath1"] = "HandWrapsAddedLightningDamage9", + ["NearbyAlliesAddedColdDamage1"] = "HandWrapsAddedColdDamage1", + ["NearbyAlliesAddedColdDamage2"] = "HandWrapsAddedColdDamage2", + ["NearbyAlliesAddedColdDamage3"] = "HandWrapsAddedColdDamage3", + ["NearbyAlliesAddedColdDamage4"] = "HandWrapsAddedColdDamage4", + ["NearbyAlliesAddedColdDamage5"] = "HandWrapsAddedColdDamage5", + ["NearbyAlliesAddedColdDamage6"] = "HandWrapsAddedColdDamage6", + ["NearbyAlliesAddedColdDamage7"] = "HandWrapsAddedColdDamage7", + ["NearbyAlliesAddedColdDamage8"] = "HandWrapsAddedColdDamage8", + ["NearbyAlliesAddedColdDamage9"] = "HandWrapsAddedColdDamage9", + ["NearbyAlliesAddedFireDamage1"] = "HandWrapsAddedFireDamage1", + ["NearbyAlliesAddedFireDamage2"] = "HandWrapsAddedFireDamage2", + ["NearbyAlliesAddedFireDamage3"] = "HandWrapsAddedFireDamage3", + ["NearbyAlliesAddedFireDamage4"] = "HandWrapsAddedFireDamage4", + ["NearbyAlliesAddedFireDamage5"] = "HandWrapsAddedFireDamage5", + ["NearbyAlliesAddedFireDamage6"] = "HandWrapsAddedFireDamage6", + ["NearbyAlliesAddedFireDamage7"] = "HandWrapsAddedFireDamage7", + ["NearbyAlliesAddedFireDamage8"] = "HandWrapsAddedFireDamage8", + ["NearbyAlliesAddedFireDamage9"] = "HandWrapsAddedFireDamage9", + ["NearbyAlliesAddedLightningDamage1"] = "HandWrapsAddedLightningDamage1", + ["NearbyAlliesAddedLightningDamage2"] = "HandWrapsAddedLightningDamage2", + ["NearbyAlliesAddedLightningDamage3"] = "HandWrapsAddedLightningDamage3", + ["NearbyAlliesAddedLightningDamage4"] = "HandWrapsAddedLightningDamage4", + ["NearbyAlliesAddedLightningDamage5"] = "HandWrapsAddedLightningDamage5", + ["NearbyAlliesAddedLightningDamage6"] = "HandWrapsAddedLightningDamage6", + ["NearbyAlliesAddedLightningDamage7"] = "HandWrapsAddedLightningDamage7", + ["NearbyAlliesAddedLightningDamage8"] = "HandWrapsAddedLightningDamage8", + ["NearbyAlliesAddedLightningDamage9"] = "HandWrapsAddedLightningDamage9", + ["NearbyAlliesAddedPhysicalDamage1"] = "HandWrapsAddedPhysicalDamage1", + ["NearbyAlliesAddedPhysicalDamage2"] = "HandWrapsAddedPhysicalDamage2", + ["NearbyAlliesAddedPhysicalDamage3"] = "HandWrapsAddedPhysicalDamage3", + ["NearbyAlliesAddedPhysicalDamage4"] = "HandWrapsAddedPhysicalDamage4", + ["NearbyAlliesAddedPhysicalDamage5"] = "HandWrapsAddedPhysicalDamage5", + ["NearbyAlliesAddedPhysicalDamage6"] = "HandWrapsAddedPhysicalDamage6", + ["NearbyAlliesAddedPhysicalDamage7"] = "HandWrapsAddedPhysicalDamage7", + ["NearbyAlliesAddedPhysicalDamage8"] = "HandWrapsAddedPhysicalDamage8", + ["NearbyAlliesAddedPhysicalDamage9"] = "HandWrapsAddedPhysicalDamage9", + ["NearbyAlliesCriticalMultiplier1"] = "HandWrapsCriticalMultiplier1", + ["NearbyAlliesCriticalMultiplier2"] = "HandWrapsCriticalMultiplier2", + ["NearbyAlliesCriticalMultiplier3"] = "HandWrapsCriticalMultiplier3", + ["NearbyAlliesCriticalMultiplier4"] = "HandWrapsCriticalMultiplier4", + ["NearbyAlliesCriticalMultiplier5"] = "HandWrapsCriticalMultiplier5", + ["NearbyAlliesIncreasedAccuracy1"] = "HandWrapsIncreasedAccuracy1", + ["NearbyAlliesIncreasedAccuracy2"] = "HandWrapsIncreasedAccuracy2", + ["NearbyAlliesIncreasedAccuracy3"] = "HandWrapsIncreasedAccuracy3", + ["NearbyAlliesIncreasedAccuracy4"] = "HandWrapsIncreasedAccuracy4", + ["NearbyAlliesIncreasedAccuracy5"] = "HandWrapsIncreasedAccuracy5", + ["NearbyAlliesIncreasedAccuracy6"] = "HandWrapsIncreasedAccuracy6", + ["NearbyAlliesIncreasedAccuracy7"] = "HandWrapsIncreasedAccuracy7", + ["NearbyAlliesIncreasedAccuracy8"] = "HandWrapsIncreasedAccuracy8", + ["NearbyAlliesIncreasedAttackSpeed1"] = "HandWrapsIncreasedAttackSpeed1", + ["NearbyAlliesIncreasedAttackSpeed2"] = "HandWrapsIncreasedAttackSpeed2", + ["NearbyAlliesIncreasedAttackSpeed3"] = "HandWrapsIncreasedAttackSpeed3", + ["NearbyAlliesIncreasedAttackSpeed4"] = "HandWrapsIncreasedAttackSpeed4", + ["PlayerMonsterBurningGroundOnDeath1"] = "HandWrapsAddedFireDamage1", + ["PlayerMonsterChaosResistance1"] = "HandWrapsChaosResist5", + ["PlayerMonsterChilledGroundOnDeath1"] = "HandWrapsAddedColdDamage1", + ["PlayerMonsterColdResistance1"] = "HandWrapsColdResist7", + ["PlayerMonsterExtraEnergyShield1"] = "HandWrapsEnergyShieldRechargeRate4", + ["PlayerMonsterFireResistance1"] = "HandWrapsFireResist6", + ["PlayerMonsterLightningResistance1"] = "HandWrapsLightningResist5", + ["PlayerMonsterShockedGroundOnDeath1"] = "HandWrapsAddedLightningDamage9", + ["ReducedLocalAttributeRequirements1"] = "HandWrapsReducedLocalAttributeRequirements1", + ["ReducedLocalAttributeRequirements2"] = "HandWrapsReducedLocalAttributeRequirements2", + ["ReducedLocalAttributeRequirements3"] = "HandWrapsReducedLocalAttributeRequirements3", + ["ReducedLocalAttributeRequirements4"] = "HandWrapsReducedLocalAttributeRequirements4", + ["ReducedLocalAttributeRequirements5"] = "HandWrapsReducedLocalAttributeRequirements5", + ["SanctumAvoidAfflictionChance3"] = "HandWrapsLifeGainedFromEnemyDeath7", + ["SanctumDefences1"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent1", + ["SanctumDefences2"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent2", + ["SanctumDefences3"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent5", + ["SanctumDefences4"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent6", + ["SanctumMaximumLife5"] = "HandWrapsLocalIncreasedEnergyShieldPercent3", + ["SanctumMonstersReducedDamage2"] = "HandWrapsLocalIncreasedPhysicalDamageReductionRating4", + ["SanctumRestoreHonourOnBossKill3"] = "HandWrapsLifeGainedFromEnemyDeath2", + ["SanctumRestoreHonourOnBossKill4"] = "HandWrapsLifeGainedFromEnemyDeath4", + ["SanctumRestoreHonourOnBossKill5"] = "HandWrapsLifeGainedFromEnemyDeath3", + ["SentinelBaseDuration1"] = "HandWrapsIncreasedAccuracy2", + ["SentinelBaseDuration3"] = "HandWrapsIncreasedLife4", + ["SentinelCastSpeed4"] = "HandWrapsLocalIncreasedEvasionRating4", + ["SentinelDroneAngerAura"] = "HandWrapsCriticalMultiplier2", + ["SentinelDroneColdReistAura"] = "HandWrapsColdResist7", + ["SentinelDroneExpeditionRewardChance1"] = "HandWrapsItemFoundRarityIncrease3", + ["SentinelDroneExpeditionRewardChance2"] = "HandWrapsItemFoundRarityIncrease3", + ["SentinelDroneExpeditionRewardChance3"] = "HandWrapsItemFoundRarityIncrease3", + ["SentinelDroneLightningResistAura"] = "HandWrapsLightningResist7", + ["SentinelDroneRewardCount1"] = "HandWrapsLifeGainedFromEnemyDeath1", + ["SentinelDroneTaggedMonsterItemRarity1"] = "HandWrapsItemFoundRarityIncrease1", + ["SentinelDroneTaggedMonsterItemRarity2"] = "HandWrapsItemFoundRarityIncrease2", + ["SentinelDroneTaggedMonsterItemRarityApex1"] = "HandWrapsItemFoundRarityIncrease1", + ["SentinelDroneTaggedMonsterItemRarityApex2"] = "HandWrapsItemFoundRarityIncrease2", + ["SentinelExtraChains2"] = "HandWrapsAddedLightningDamage6", + ["ShockDurationJewel"] = "HandWrapsLightningResist3", + ["SpellAddedColdDamage1"] = "HandWrapsAddedColdDamage1", + ["SpellAddedColdDamage2"] = "HandWrapsAddedColdDamage2", + ["SpellAddedColdDamage3"] = "HandWrapsAddedColdDamage3", + ["SpellAddedColdDamage4"] = "HandWrapsAddedColdDamage4", + ["SpellAddedColdDamage5"] = "HandWrapsAddedColdDamage5", + ["SpellAddedColdDamage6_"] = "HandWrapsAddedColdDamage6", + ["SpellAddedColdDamage7"] = "HandWrapsAddedColdDamage7", + ["SpellAddedColdDamage8"] = "HandWrapsAddedColdDamage8", + ["SpellAddedColdDamage9"] = "HandWrapsAddedColdDamage9", + ["SpellAddedColdDamageTwoHand1_"] = "HandWrapsAddedColdDamage1", + ["SpellAddedColdDamageTwoHand2"] = "HandWrapsAddedColdDamage2", + ["SpellAddedColdDamageTwoHand3"] = "HandWrapsAddedColdDamage3", + ["SpellAddedColdDamageTwoHand4"] = "HandWrapsAddedColdDamage4", + ["SpellAddedColdDamageTwoHand5"] = "HandWrapsAddedColdDamage5", + ["SpellAddedColdDamageTwoHand6"] = "HandWrapsAddedColdDamage6", + ["SpellAddedColdDamageTwoHand7"] = "HandWrapsAddedColdDamage7", + ["SpellAddedColdDamageTwoHand8"] = "HandWrapsAddedColdDamage8", + ["SpellAddedColdDamageTwoHand9"] = "HandWrapsAddedColdDamage9", + ["SpellAddedFireDamage1"] = "HandWrapsAddedFireDamage1", + ["SpellAddedFireDamage2_"] = "HandWrapsAddedFireDamage2", + ["SpellAddedFireDamage3"] = "HandWrapsAddedFireDamage3", + ["SpellAddedFireDamage4"] = "HandWrapsAddedFireDamage4", + ["SpellAddedFireDamage5"] = "HandWrapsAddedFireDamage5", + ["SpellAddedFireDamage6"] = "HandWrapsAddedFireDamage6", + ["SpellAddedFireDamage7"] = "HandWrapsAddedFireDamage7", + ["SpellAddedFireDamage8"] = "HandWrapsAddedFireDamage8", + ["SpellAddedFireDamage9"] = "HandWrapsAddedFireDamage9", + ["SpellAddedFireDamageTwoHand1"] = "HandWrapsAddedFireDamage1", + ["SpellAddedFireDamageTwoHand2"] = "HandWrapsAddedFireDamage2", + ["SpellAddedFireDamageTwoHand3"] = "HandWrapsAddedFireDamage3", + ["SpellAddedFireDamageTwoHand4"] = "HandWrapsAddedFireDamage4", + ["SpellAddedFireDamageTwoHand5"] = "HandWrapsAddedFireDamage5", + ["SpellAddedFireDamageTwoHand6_"] = "HandWrapsAddedFireDamage6", + ["SpellAddedFireDamageTwoHand7"] = "HandWrapsAddedFireDamage7", + ["SpellAddedFireDamageTwoHand8"] = "HandWrapsAddedFireDamage8", + ["SpellAddedFireDamageTwoHand9"] = "HandWrapsAddedFireDamage9", + ["SpellAddedLightningDamage1"] = "HandWrapsAddedLightningDamage1", + ["SpellAddedLightningDamage2"] = "HandWrapsAddedLightningDamage2", + ["SpellAddedLightningDamage3"] = "HandWrapsAddedLightningDamage3", + ["SpellAddedLightningDamage4"] = "HandWrapsAddedLightningDamage4", + ["SpellAddedLightningDamage5"] = "HandWrapsAddedLightningDamage5", + ["SpellAddedLightningDamage6"] = "HandWrapsAddedLightningDamage6", + ["SpellAddedLightningDamage7"] = "HandWrapsAddedLightningDamage7", + ["SpellAddedLightningDamage8"] = "HandWrapsAddedLightningDamage8", + ["SpellAddedLightningDamage9"] = "HandWrapsAddedLightningDamage9", + ["SpellAddedLightningDamageTwoHand1"] = "HandWrapsAddedLightningDamage1", + ["SpellAddedLightningDamageTwoHand2"] = "HandWrapsAddedLightningDamage2", + ["SpellAddedLightningDamageTwoHand3"] = "HandWrapsAddedLightningDamage3", + ["SpellAddedLightningDamageTwoHand4"] = "HandWrapsAddedLightningDamage4", + ["SpellAddedLightningDamageTwoHand5"] = "HandWrapsAddedLightningDamage5", + ["SpellAddedLightningDamageTwoHand6"] = "HandWrapsAddedLightningDamage6", + ["SpellAddedLightningDamageTwoHand7"] = "HandWrapsAddedLightningDamage7", + ["SpellAddedLightningDamageTwoHand8"] = "HandWrapsAddedLightningDamage8", + ["SpellAddedLightningDamageTwoHand9_"] = "HandWrapsAddedLightningDamage9", + ["SpellCriticalStrikeMultiplier1"] = "HandWrapsCriticalMultiplier1", + ["SpellCriticalStrikeMultiplier2"] = "HandWrapsCriticalMultiplier2", + ["SpellCriticalStrikeMultiplier3"] = "HandWrapsCriticalMultiplier3", + ["SpellCriticalStrikeMultiplier4"] = "HandWrapsCriticalMultiplier4", + ["SpellCriticalStrikeMultiplier5"] = "HandWrapsCriticalMultiplier5", + ["SpellCriticalStrikeMultiplierRing1"] = "HandWrapsCriticalMultiplier1", + ["SpellCriticalStrikeMultiplierRing2"] = "HandWrapsCriticalMultiplier2", + ["SpellCriticalStrikeMultiplierRing3"] = "HandWrapsCriticalMultiplier3", + ["SpellCriticalStrikeMultiplierRing4"] = "HandWrapsCriticalMultiplier4", + ["SpellCriticalStrikeMultiplierRing5"] = "HandWrapsCriticalMultiplier5", + ["SpellCriticalStrikeMultiplierTwoHand1"] = "HandWrapsCriticalMultiplier1", + ["SpellCriticalStrikeMultiplierTwoHand2"] = "HandWrapsCriticalMultiplier2", + ["SpellCriticalStrikeMultiplierTwoHand3"] = "HandWrapsCriticalMultiplier3", + ["SpellCriticalStrikeMultiplierTwoHand4"] = "HandWrapsCriticalMultiplier4", + ["SpellCriticalStrikeMultiplierTwoHand5"] = "HandWrapsCriticalMultiplier5", + ["Strength1"] = "HandWrapsStrength1", + ["Strength2"] = "HandWrapsStrength2", + ["Strength3"] = "HandWrapsStrength3", + ["Strength4"] = "HandWrapsStrength4", + ["Strength5"] = "HandWrapsStrength5", + ["Strength6"] = "HandWrapsStrength6", + ["Strength7"] = "HandWrapsStrength7", + ["Strength8"] = "HandWrapsStrength8", + ["StrongboxDropsConvertedToDex"] = "HandWrapsIncreasedAccuracy8", + ["StrongboxDropsConvertedToStrDex"] = "HandWrapsLocalIncreasedArmourAndEvasion5", + ["ThunderfistUnique__1"] = "HandWrapsThunderfistUnique__1", + ["TrapCriticalStrikeMultiplier1"] = "HandWrapsCriticalMultiplier1", + ["TrapCriticalStrikeMultiplier2"] = "HandWrapsCriticalMultiplier2", + ["TrapCriticalStrikeMultiplier3"] = "HandWrapsCriticalMultiplier3", + ["TrapCriticalStrikeMultiplier4"] = "HandWrapsCriticalMultiplier4", + ["TrapCriticalStrikeMultiplier5"] = "HandWrapsCriticalMultiplier5", + ["TrapThrowSpeedJewel"] = "HandWrapsAddedPhysicalDamage4", + ["UniqueAddedChaosDamage5"] = "HandWrapsUniqueAddedChaosDamage5", + ["UniqueAddedColdDamage1"] = "HandWrapsUniqueAddedColdDamage1", + ["UniqueAddedLightningDamage3"] = "HandWrapsUniqueAddedLightningDamage3", + ["UniqueAddedPhysicalDamage2"] = "HandWrapsUniqueAddedPhysicalDamage2", + ["UniqueAddedPhysicalDamage3"] = "HandWrapsUniqueAddedPhysicalDamage3", + ["UniqueAddedPhysicalDamage4"] = "HandWrapsUniqueAddedPhysicalDamage4", + ["UniqueAllDamageCanPoison1"] = "HandWrapsUniqueAllDamageCanPoison1", + ["UniqueAttackAndCastSpeed1"] = "HandWrapsUniqueAttackAndCastSpeed1", + ["UniqueAttackerTakesDamage8"] = "HandWrapsUniqueAttackerTakesDamage8", + ["UniqueBaseChanceToPoison1"] = "HandWrapsUniqueBaseChanceToPoison1", + ["UniqueBaseChanceToPoison2"] = "HandWrapsUniqueBaseChanceToPoison2", + ["UniqueBaseDamageOverrideForMaceAttacks1"] = "HandWrapsUniqueBaseDamageOverrideForMaceAttacks1", + ["UniqueCannotImmobilise1"] = "HandWrapsUniqueCannotImmobilise1", + ["UniqueChaosResist35"] = "HandWrapsUniqueChaosResist35", + ["UniqueChaosResist6"] = "HandWrapsUniqueChaosResist6", + ["UniqueChillEffect1"] = "HandWrapsUniqueChillEffect1", + ["UniqueChillImmunityWhenChilled1"] = "HandWrapsUniqueChillImmunityWhenChilled1", + ["UniqueColdDamagePercent2"] = "HandWrapsUniqueColdDamagePercent2", + ["UniqueColdResist1"] = "HandWrapsUniqueColdResist1", + ["UniqueColdResist24"] = "HandWrapsUniqueColdResist24", + ["UniqueColdResist25"] = "HandWrapsUniqueColdResist25", + ["UniqueColdResist30"] = "HandWrapsUniqueColdResist30", + ["UniqueColdResist9"] = "HandWrapsUniqueColdResist9", + ["UniqueCriticalMultiplier1"] = "HandWrapsUniqueCriticalMultiplier1", + ["UniqueCriticalMultiplier2"] = "HandWrapsUniqueCriticalMultiplier2", + ["UniqueCriticalMultiplier3"] = "HandWrapsUniqueCriticalMultiplier3", + ["UniqueCriticalStrikeChance14"] = "HandWrapsUniqueCriticalStrikeChance14", + ["UniqueCriticalStrikeChance5"] = "HandWrapsUniqueCriticalStrikeChance5", + ["UniqueCriticalStrikeMultiplierOverride1"] = "HandWrapsUniqueCriticalStrikeMultiplierOverride1", + ["UniqueCriticalStrikesCannotBeRerolled1"] = "HandWrapsUniqueCriticalStrikesCannotBeRerolled1", + ["UniqueCriticalsCannotConsumeImpale1"] = "HandWrapsUniqueCriticalsCannotConsumeImpale1", + ["UniqueCullingStrike1"] = "HandWrapsUniqueCullingStrike1", + ["UniqueDecimatingStrike1"] = "HandWrapsUniqueDecimatingStrike1", + ["UniqueDexterity10"] = "HandWrapsUniqueDexterity10", + ["UniqueDexterity19"] = "HandWrapsUniqueDexterity19", + ["UniqueDexterity24"] = "HandWrapsUniqueDexterity24", + ["UniqueDexterity31"] = "HandWrapsUniqueDexterity31", + ["UniqueDexterity45"] = "HandWrapsUniqueDexterity45", + ["UniqueDoubleIgniteChance1"] = "HandWrapsUniqueDoubleIgniteChance1", + ["UniqueDoubleOnKillEffects1"] = "HandWrapsUniqueDoubleOnKillEffects1", + ["UniqueElementalDamageConvertToCold1"] = "HandWrapsUniqueElementalDamageConvertToCold1", + ["UniqueElementalDamageConvertToFire1"] = "HandWrapsUniqueElementalDamageConvertToFire1", + ["UniqueElementalDamageConvertToLightning1"] = "HandWrapsUniqueElementalDamageConvertToLightning1", + ["UniqueElementalDamageGainedAsCold1"] = "HandWrapsUniqueElementalDamageGainedAsCold1", + ["UniqueElementalDamageGainedAsFire1"] = "HandWrapsUniqueElementalDamageGainedAsFire1", + ["UniqueElementalDamageGainedAsLightning1"] = "HandWrapsUniqueElementalDamageGainedAsLightning1", + ["UniqueElementalPenetration1"] = "HandWrapsUniqueElementalPenetration1", + ["UniqueElementalPenetrationBelowZero1"] = "HandWrapsUniqueElementalPenetrationBelowZero1", + ["UniqueEnemiesKilledCountAsYours1"] = "HandWrapsUniqueEnemiesKilledCountAsYours1", + ["UniqueEnemyKnockbackDirectionReversed1"] = "HandWrapsUniqueEnemyKnockbackDirectionReversed1", + ["UniqueFireDamageConvertToCold1"] = "HandWrapsUniqueFireDamageConvertToCold1", + ["UniqueFireDamageConvertToLightning1"] = "HandWrapsUniqueFireDamageConvertToLightning1", + ["UniqueFireDamagePercent2"] = "HandWrapsUniqueFireDamagePercent2", + ["UniqueFireResist2"] = "HandWrapsUniqueFireResist2", + ["UniqueFireResist7"] = "HandWrapsUniqueFireResist7", + ["UniqueFreezeDamageIncrease2"] = "HandWrapsUniqueFreezeDamageIncrease2", + ["UniqueFreezeImmunityWhenFrozen1"] = "HandWrapsUniqueFreezeImmunityWhenFrozen1", + ["UniqueFullManaThreshold1"] = "HandWrapsUniqueFullManaThreshold1", + ["UniqueGainArmourEqualToStrength1"] = "HandWrapsUniqueGainArmourEqualToStrength1", + ["UniqueGainChargesOnMaximumRage1"] = "HandWrapsUniqueGainChargesOnMaximumRage1", + ["UniqueGainFearIncarnateOnCulling1"] = "HandWrapsUniqueGainFearIncarnateOnCulling1", + ["UniqueGiantsBlood1"] = "HandWrapsUniqueGiantsBlood1", + ["UniqueIgniteImmunityWhenIgnited1"] = "HandWrapsUniqueIgniteImmunityWhenIgnited1", + ["UniqueImmobiliseIncreasedDamageTaken1"] = "HandWrapsUniqueImmobiliseIncreasedDamageTaken1", + ["UniqueImmobiliseThreshold1"] = "HandWrapsUniqueImmobiliseThreshold1", + ["UniqueImpaleOnCriticalHit1"] = "HandWrapsUniqueImpaleOnCriticalHit1", + ["UniqueIncreasedAccuracy4"] = "HandWrapsUniqueIncreasedAccuracy4", + ["UniqueIncreasedAttackSpeed1"] = "HandWrapsUniqueIncreasedAttackSpeed1", + ["UniqueIncreasedAttackSpeed11"] = "HandWrapsUniqueIncreasedAttackSpeed11", + ["UniqueIncreasedAttackSpeed13"] = "HandWrapsUniqueIncreasedAttackSpeed13", + ["UniqueIncreasedAttackSpeed16"] = "HandWrapsUniqueIncreasedAttackSpeed16", + ["UniqueIncreasedAttackSpeed2"] = "HandWrapsUniqueIncreasedAttackSpeed2", + ["UniqueIncreasedAttackSpeed3"] = "HandWrapsUniqueIncreasedAttackSpeed3", + ["UniqueIncreasedAttackSpeed4"] = "HandWrapsUniqueIncreasedAttackSpeed4", + ["UniqueIncreasedAttackSpeed7"] = "HandWrapsUniqueIncreasedAttackSpeed7", + ["UniqueIncreasedAttackSpeed8"] = "HandWrapsUniqueIncreasedAttackSpeed8", + ["UniqueIncreasedAttackSpeed9"] = "HandWrapsUniqueIncreasedAttackSpeed9", + ["UniqueIncreasedAttackSpeedFullMana1"] = "HandWrapsUniqueIncreasedAttackSpeedFullMana1", + ["UniqueIncreasedAttackSpeedPerDexterity1"] = "HandWrapsUniqueIncreasedAttackSpeedPerDexterity1", + ["UniqueIncreasedCastSpeed6"] = "HandWrapsUniqueIncreasedCastSpeed6", + ["UniqueIncreasedCastSpeed7"] = "HandWrapsUniqueIncreasedCastSpeed7", + ["UniqueIncreasedLife10"] = "HandWrapsUniqueIncreasedLife10", + ["UniqueIncreasedLife15"] = "HandWrapsUniqueIncreasedLife15", + ["UniqueIncreasedLife54"] = "HandWrapsUniqueIncreasedLife54", + ["UniqueIncreasedLife58"] = "HandWrapsUniqueIncreasedLife58", + ["UniqueIncreasedLife6"] = "HandWrapsUniqueIncreasedLife6", + ["UniqueIncreasedLife9"] = "HandWrapsUniqueIncreasedLife9", + ["UniqueIncreasedMana48"] = "HandWrapsUniqueIncreasedMana48", + ["UniqueIncreasedPhysicalDamagePercent1"] = "HandWrapsUniqueIncreasedPhysicalDamagePercent1", + ["UniqueIncreasedSkillSpeed1"] = "HandWrapsUniqueIncreasedSkillSpeed1", + ["UniqueIncreasedSkillSpeed5"] = "HandWrapsUniqueIncreasedSkillSpeed5", + ["UniqueIntelligence10"] = "HandWrapsUniqueIntelligence10", + ["UniqueIntelligence12"] = "HandWrapsUniqueIntelligence12", + ["UniqueIntelligence18"] = "HandWrapsUniqueIntelligence18", + ["UniqueIntelligence19"] = "HandWrapsUniqueIntelligence19", + ["UniqueIntelligence22"] = "HandWrapsUniqueIntelligence22", + ["UniqueIntelligence31"] = "HandWrapsUniqueIntelligence31", + ["UniqueIntelligence34"] = "HandWrapsUniqueIntelligence34", + ["UniqueItemFoundRarityIncrease1"] = "HandWrapsUniqueItemFoundRarityIncrease1", + ["UniqueItemFoundRarityIncrease21"] = "HandWrapsUniqueItemFoundRarityIncrease21", + ["UniqueLeechEnergyShieldInsteadofLife1"] = "HandWrapsUniqueLeechEnergyShieldInsteadofLife1", + ["UniqueLifeDegenerationPercentGracePeriod3"] = "HandWrapsUniqueLifeDegenerationPercentGracePeriod3", + ["UniqueLifeFlaskNoRecovery1"] = "HandWrapsUniqueLifeFlaskNoRecovery1", + ["UniqueLifeGainedFromEnemyDeath11"] = "HandWrapsUniqueLifeGainedFromEnemyDeath11", + ["UniqueLifeGainedFromEnemyDeath3"] = "HandWrapsUniqueLifeGainedFromEnemyDeath3", + ["UniqueLifeGainedFromEnemyDeath4"] = "HandWrapsUniqueLifeGainedFromEnemyDeath4", + ["UniqueLifeLeech2"] = "HandWrapsUniqueLifeLeech2", + ["UniqueLifeRegeneration12"] = "HandWrapsUniqueLifeRegeneration12", + ["UniqueLifeRegeneration23"] = "HandWrapsUniqueLifeRegeneration23", + ["UniqueLightningDamageCanElectrocute1"] = "HandWrapsUniqueLightningDamageCanElectrocute1", + ["UniqueLightningDamageToAttacksPerIntelligence1"] = "HandWrapsUniqueLightningDamageToAttacksPerIntelligence1", + ["UniqueLightningResist23"] = "HandWrapsUniqueLightningResist23", + ["UniqueLightningResist26"] = "HandWrapsUniqueLightningResist26", + ["UniqueLightningResist28"] = "HandWrapsUniqueLightningResist28", + ["UniqueLightningResist29"] = "HandWrapsUniqueLightningResist29", + ["UniqueLocalArmourAndEvasionAndEnergyShield3"] = "HandWrapsUniqueLocalArmourAndEvasionAndEnergyShield3", + ["UniqueLocalIncreasedArmourAndEnergyShield21"] = "HandWrapsUniqueLocalIncreasedArmourAndEnergyShield21", + ["UniqueLocalIncreasedArmourAndEnergyShield3"] = "HandWrapsUniqueLocalIncreasedArmourAndEnergyShield3", + ["UniqueLocalIncreasedArmourAndEnergyShield4"] = "HandWrapsUniqueLocalIncreasedArmourAndEnergyShield4", + ["UniqueLocalIncreasedArmourAndEvasion1"] = "HandWrapsUniqueLocalIncreasedArmourAndEvasion1", + ["UniqueLocalIncreasedArmourAndEvasion15"] = "HandWrapsUniqueLocalIncreasedArmourAndEvasion15", + ["UniqueLocalIncreasedArmourAndEvasion19"] = "HandWrapsUniqueLocalIncreasedArmourAndEvasion19", + ["UniqueLocalIncreasedArmourAndEvasion25"] = "HandWrapsUniqueLocalIncreasedArmourAndEvasion25", + ["UniqueLocalIncreasedArmourAndEvasion30"] = "HandWrapsUniqueLocalIncreasedArmourAndEvasion30", + ["UniqueLocalIncreasedArmourAndEvasion7"] = "HandWrapsUniqueLocalIncreasedArmourAndEvasion7", + ["UniqueLocalIncreasedEnergyShield10"] = "HandWrapsUniqueLocalIncreasedEnergyShield10", + ["UniqueLocalIncreasedEnergyShield11"] = "HandWrapsUniqueLocalIncreasedEnergyShield11", + ["UniqueLocalIncreasedEnergyShield4"] = "HandWrapsUniqueLocalIncreasedEnergyShield4", + ["UniqueLocalIncreasedEnergyShieldPercent2"] = "HandWrapsUniqueLocalIncreasedEnergyShieldPercent2", + ["UniqueLocalIncreasedEnergyShieldPercent20"] = "HandWrapsUniqueLocalIncreasedEnergyShieldPercent20", + ["UniqueLocalIncreasedEnergyShieldPercent25"] = "HandWrapsUniqueLocalIncreasedEnergyShieldPercent25", + ["UniqueLocalIncreasedEnergyShieldPercent7"] = "HandWrapsUniqueLocalIncreasedEnergyShieldPercent7", + ["UniqueLocalIncreasedEvasionAndEnergyShield17"] = "HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield17", + ["UniqueLocalIncreasedEvasionAndEnergyShield19"] = "HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield19", + ["UniqueLocalIncreasedEvasionAndEnergyShield2"] = "HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield2", + ["UniqueLocalIncreasedEvasionAndEnergyShield4"] = "HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield4", + ["UniqueLocalIncreasedEvasionRating4"] = "HandWrapsUniqueLocalIncreasedEvasionRating4", + ["UniqueLocalIncreasedEvasionRatingPercent12"] = "HandWrapsUniqueLocalIncreasedEvasionRatingPercent12", + ["UniqueLocalIncreasedEvasionRatingPercent36"] = "HandWrapsUniqueLocalIncreasedEvasionRatingPercent36", + ["UniqueLocalIncreasedEvasionRatingPercent6"] = "HandWrapsUniqueLocalIncreasedEvasionRatingPercent6", + ["UniqueLocalIncreasedEvasionRatingPercent7"] = "HandWrapsUniqueLocalIncreasedEvasionRatingPercent7", + ["UniqueLocalIncreasedEvasionRatingPercent8"] = "HandWrapsUniqueLocalIncreasedEvasionRatingPercent8", + ["UniqueLocalIncreasedPhysicalDamageReductionRating3"] = "HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRating3", + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = "HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent11", + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = "HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent23", + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = "HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent30", + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = "HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent5", + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = "HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent6", + ["UniqueLoseRageOnMaximumRage1"] = "HandWrapsUniqueLoseRageOnMaximumRage1", + ["UniqueManaGainedFromEnemyDeath4"] = "HandWrapsUniqueManaGainedFromEnemyDeath4", + ["UniqueManaGainedFromEnemyDeath5"] = "HandWrapsUniqueManaGainedFromEnemyDeath5", + ["UniqueManaRegenerationRateIfCritRecently1"] = "HandWrapsUniqueManaRegenerationRateIfCritRecently1", + ["UniqueMaximumLifeOnKillPercent1"] = "HandWrapsUniqueMaximumLifeOnKillPercent1", + ["UniqueMaximumManaIncrease3"] = "HandWrapsUniqueMaximumManaIncrease3", + ["UniqueMaximumRage1"] = "HandWrapsUniqueMaximumRage1", + ["UniqueMutatedVaalAddedMaximumEnergyShield"] = "HandWrapsUniqueMutatedVaalAddedMaximumEnergyShield", + ["UniqueMutatedVaalArcaneSurgeEffect"] = "HandWrapsUniqueMutatedVaalArcaneSurgeEffect", + ["UniqueMutatedVaalChanceToBleed"] = "HandWrapsUniqueMutatedVaalChanceToBleed", + ["UniqueMutatedVaalChillEffect"] = "HandWrapsUniqueMutatedVaalChillEffect", + ["UniqueMutatedVaalCurseEffectiveness"] = "HandWrapsUniqueMutatedVaalCurseEffectiveness", + ["UniqueMutatedVaalDamagePerCurse"] = "HandWrapsUniqueMutatedVaalDamagePerCurse", + ["UniqueMutatedVaalEnergyOnFullMana"] = "HandWrapsUniqueMutatedVaalEnergyOnFullMana", + ["UniqueMutatedVaalFreezeDuration"] = "HandWrapsUniqueMutatedVaalFreezeDuration", + ["UniqueMutatedVaalGlobalChanceToBlindOnHit"] = "HandWrapsUniqueMutatedVaalGlobalChanceToBlindOnHit", + ["UniqueMutatedVaalGlobalChaosGemLevel"] = "HandWrapsUniqueMutatedVaalGlobalChaosGemLevel", + ["UniqueMutatedVaalIgniteEffect1"] = "HandWrapsUniqueMutatedVaalIgniteEffect1", + ["UniqueMutatedVaalIncreasedAttackSpeed"] = "HandWrapsUniqueMutatedVaalIncreasedAttackSpeed", + ["UniqueMutatedVaalIncreasedLifePercent"] = "HandWrapsUniqueMutatedVaalIncreasedLifePercent", + ["UniqueMutatedVaalLifeLeechAmount"] = "HandWrapsUniqueMutatedVaalLifeLeechAmount", + ["UniqueMutatedVaalManaCostEfficiency"] = "HandWrapsUniqueMutatedVaalManaCostEfficiency", + ["UniqueMutatedVaalManaLeechPermyriad"] = "HandWrapsUniqueMutatedVaalManaLeechPermyriad", + ["UniqueMutatedVaalMaxRageFromRageOnHitChance"] = "HandWrapsUniqueMutatedVaalMaxRageFromRageOnHitChance", + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = "HandWrapsUniqueMutatedVaalMaximumLifeConvertedToEnergyShield", + ["UniqueMutatedVaalMaximumManaIncreasePercent"] = "HandWrapsUniqueMutatedVaalMaximumManaIncreasePercent", + ["UniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = "HandWrapsUniqueMutatedVaalMaximumRagePerGlorySkillUsed", + ["UniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = "HandWrapsUniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently", + ["UniqueMutatedVaalPoisonEffect"] = "HandWrapsUniqueMutatedVaalPoisonEffect", + ["UniqueMutatedVaalPoisonEffectOnNonPoisoned"] = "HandWrapsUniqueMutatedVaalPoisonEffectOnNonPoisoned", + ["UniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = "HandWrapsUniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison", + ["UniqueMutatedVaalReducedPoisonDuration"] = "HandWrapsUniqueMutatedVaalReducedPoisonDuration", + ["UniqueMutatedVaalShockEffect"] = "HandWrapsUniqueMutatedVaalShockEffect", + ["UniqueMutatedVaalSkillCostEfficiency"] = "HandWrapsUniqueMutatedVaalSkillCostEfficiency", + ["UniqueMutatedVaalSpellLifeCostPercent"] = "HandWrapsUniqueMutatedVaalSpellLifeCostPercent", + ["UniqueNoManaRegenIfNotCritRecently1"] = "HandWrapsUniqueNoManaRegenIfNotCritRecently1", + ["UniqueNonherentRageLoss1"] = "HandWrapsUniqueNonherentRageLoss1", + ["UniqueOverrideWeaponBaseCritical1"] = "HandWrapsUniqueOverrideWeaponBaseCritical1", + ["UniquePoisonStackCount1"] = "HandWrapsUniquePoisonStackCount1", + ["UniqueRageOnAnyHit1"] = "HandWrapsUniqueRageOnAnyHit1", + ["UniqueRageRegeneration1"] = "HandWrapsUniqueRageRegeneration1", + ["UniqueReducedLocalAttributeRequirements5"] = "HandWrapsUniqueReducedLocalAttributeRequirements5", + ["UniqueReflectCurseToSelf1"] = "HandWrapsUniqueReflectCurseToSelf1", + ["UniqueSacrificeLifeToGainEnergyShield1"] = "HandWrapsUniqueSacrificeLifeToGainEnergyShield1", + ["UniqueShareChargesWithAllies1"] = "HandWrapsUniqueShareChargesWithAllies1", + ["UniqueShockImmunityWhenShocked1"] = "HandWrapsUniqueShockImmunityWhenShocked1", + ["UniqueSlowEffect1"] = "HandWrapsUniqueSlowEffect1", + ["UniqueSpellDamage1"] = "HandWrapsUniqueSpellDamage1", + ["UniqueStrength23"] = "HandWrapsUniqueStrength23", + ["UniqueStrength41"] = "HandWrapsUniqueStrength41", + ["UniqueStrength47"] = "HandWrapsUniqueStrength47", + ["UniqueStrengthSatisfiesAllWeaponRequirements1"] = "HandWrapsUniqueStrengthSatisfiesAllWeaponRequirements1", + ["UniqueStunDamageIncrease1"] = "HandWrapsUniqueStunDamageIncrease1", + ["UniqueStunDamageIncrease2"] = "HandWrapsUniqueStunDamageIncrease2", + ["UniqueUnarmedAttackDamagePerXStrength1"] = "HandWrapsUniqueUnarmedAttackDamagePerXStrength1", + ["UniqueVaalPact1"] = "HandWrapsUniqueVaalPact1", +} \ No newline at end of file diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index f394ced48c..ab42e6ec75 100644 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -5690,7 +5690,7 @@ c["Glorifying the defilement of 8000 souls in tribute to Tecrod"]={{[1]={flags=0 c["Glorifying the defilement of 8000 souls in tribute to Ulaman"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=5,type="abyss"},id=8000}}}},nil} c["Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and"]={nil,"Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and "} c["Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and their Explicit Modifiers are transformed into more powerful related Modifiers"]={nil,"Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and their Explicit Modifiers are transformed into more powerful related Modifiers "} -c["Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and their Explicit Modifiers are transformed into more powerful related Modifiers Ignore Attribute Requirements to equip Gloves"]={nil,"Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and their Explicit Modifiers are transformed into more powerful related Modifiers Ignore Attribute Requirements to equip Gloves "} +c["Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and their Explicit Modifiers are transformed into more powerful related Modifiers Ignore Attribute Requirements to equip Gloves"]={{[1]={flags=0,keywordFlags=0,name="WayOfTheStonefist",type="FLAG",value=true}},nil} c["Grant Elemental Archon to your Minions for 5 seconds when they Revive"]={nil,"Grant Elemental Archon to your Minions for 5 seconds when they Revive "} c["Grants 1 Passive Skill Point"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=1}},nil} c["Grants 1 additional Skill Slot"]={{[1]={flags=0,keywordFlags=0,name="SkillSlots",type="BASE",value=1}},nil} @@ -5962,7 +5962,6 @@ c["Ignites you inflict deal Damage 4% faster"]={{[1]={flags=0,keywordFlags=0,nam c["Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second"]={nil,"Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second "} c["Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second You gain Onslaught for 4 seconds on Kill"]={nil,"Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second You gain Onslaught for 4 seconds on Kill "} c["Ignore Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="IgnoreAttributeRequirements",type="FLAG",value=true}},nil} -c["Ignore Attribute Requirements to equip Gloves"]={nil,"Ignore Attribute Requirements to equip Gloves "} c["Ignore Warcry Cooldowns"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="OVERRIDE",value=0}},nil} c["Ignore all Movement Penalties from Armour"]={{[1]={flags=0,keywordFlags=0,name="Condition:IgnoreMovementPenalties",type="FLAG",value=true}},nil} c["Immobilise enemies at 50% buildup instead of 100%"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PoiseThreshold",type="MORE",value=-50}}}},nil} @@ -7059,8 +7058,6 @@ c["being Shapeshifted for at least 8 seconds"]={nil,"being Shapeshifted for at l c["for 4 seconds, every 0.25 seconds while raised"]={nil,"for 4 seconds, every 0.25 seconds while raised "} c["gain 6 Cold Surges or 6 Fire Surges"]={{}," Cold Surges or 6 Fire Surges "} c["the enemy's Power for 20 seconds, up to a total of 500"]={nil,"the enemy's Power for 20 seconds, up to a total of 500 "} -c["their Explicit Modifiers are transformed into more powerful related Modifiers"]={nil,"their Explicit Modifiers are transformed into more powerful related Modifiers "} -c["their Explicit Modifiers are transformed into more powerful related Modifiers Ignore Attribute Requirements to equip Gloves"]={nil,"their Explicit Modifiers are transformed into more powerful related Modifiers Ignore Attribute Requirements to equip Gloves "} c["until you take no Damage to Life for 3 seconds"]={nil,"until you take no Damage to Life for 3 seconds "} c["until you take no Damage to Life for 5 seconds"]={nil,"until you take no Damage to Life for 5 seconds "} c["until you take no Damage to Life for 5 seconds Life that would be lost by taking Damage is instead Reserved"]={nil,"until you take no Damage to Life for 5 seconds Life that would be lost by taking Damage is instead Reserved "} diff --git a/src/Data/ModCorrupted.lua b/src/Data/ModCorrupted.lua index 9332ec47e8..56edc1640a 100644 --- a/src/Data/ModCorrupted.lua +++ b/src/Data/ModCorrupted.lua @@ -20,7 +20,7 @@ return { ["CorruptionIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-25)% increased Armour" }, } }, ["CorruptionIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-25)% increased Evasion Rating" }, } }, ["CorruptionIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-25)% increased maximum Energy Shield" }, } }, - ["CorruptionThornsDamageIncrease1"] = { type = "Corrupted", affix = "", "(40-50)% increased Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(40-50)% increased Thorns damage" }, } }, + ["CorruptionThornsDamageIncrease1"] = { type = "Corrupted", affix = "", "(40-50)% increased Thorns damage", statOrder = { 10245 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(40-50)% increased Thorns damage" }, } }, ["CorruptionChaosResistance1"] = { type = "Corrupted", affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, ["CorruptionFireResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, ["CorruptionColdResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, @@ -32,8 +32,8 @@ return { ["CorruptionFirePenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Fire Resistance", statOrder = { 2724 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (10-15)% Fire Resistance" }, } }, ["CorruptionColdPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Cold Resistance", statOrder = { 2725 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (10-15)% Cold Resistance" }, } }, ["CorruptionLightningPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-15)% Lightning Resistance" }, } }, - ["CorruptionArmourBreak1"] = { type = "Corrupted", affix = "", "Break (10-15)% increased Armour", statOrder = { 4407 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (10-15)% increased Armour" }, } }, - ["CorruptionGoldFoundIncrease1"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["CorruptionArmourBreak1"] = { type = "Corrupted", affix = "", "Break (10-15)% increased Armour", statOrder = { 4404 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (10-15)% increased Armour" }, } }, + ["CorruptionGoldFoundIncrease1"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6913 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, ["CorruptionMaximumEnduranceCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, ["CorruptionMaximumFrenzyCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, ["CorruptionMaximumPowerCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, @@ -41,7 +41,7 @@ return { ["CorruptionMovementVelocity1"] = { type = "Corrupted", affix = "", "(3-5)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, ["CorruptionIncreasedStunThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, ["CorruptionIncreasedFreezeThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Threshold", statOrder = { 2984 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(20-30)% increased Freeze Threshold" }, } }, - ["CorruptionSlowPotency1"] = { type = "Corrupted", affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, + ["CorruptionSlowPotency1"] = { type = "Corrupted", affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4743 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, ["CorruptionLifeRegenerationPercent1"] = { type = "Corrupted", affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of maximum Life per second" }, } }, ["CorruptionLifeRegenerationRate1"] = { type = "Corrupted", affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, ["CorruptionManaRegeneration1"] = { type = "Corrupted", affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, @@ -66,11 +66,11 @@ return { ["CorruptionStrength1"] = { type = "Corrupted", affix = "", "+(10-15) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, ["CorruptionDexterity1"] = { type = "Corrupted", affix = "", "+(10-15) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, ["CorruptionIntelligence1"] = { type = "Corrupted", affix = "", "+(10-15) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, - ["CorruptionIncreasedSlowEffect1"] = { type = "Corrupted", affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4691 }, level = 1, group = "SlowEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, - ["CorruptionWeaponSwapSpeed1"] = { type = "Corrupted", affix = "", "(20-30)% increased Weapon Swap Speed", statOrder = { 10535 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(20-30)% increased Weapon Swap Speed" }, } }, - ["CorruptionLifeFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Life Flasks gain (0.08-0.17) charges per Second", statOrder = { 6892 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionManaFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Mana Flasks gain (0.08-0.17) charges per Second", statOrder = { 6893 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionCharmChargeGeneration1"] = { type = "Corrupted", affix = "", "Charms gain (0.08-0.17) charges per Second", statOrder = { 6889 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.08-0.17) charges per Second" }, } }, + ["CorruptionIncreasedSlowEffect1"] = { type = "Corrupted", affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4687 }, level = 1, group = "SlowEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, + ["CorruptionWeaponSwapSpeed1"] = { type = "Corrupted", affix = "", "(20-30)% increased Weapon Swap Speed", statOrder = { 10525 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(20-30)% increased Weapon Swap Speed" }, } }, + ["CorruptionLifeFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Life Flasks gain (0.08-0.17) charges per Second", statOrder = { 6888 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.08-0.17) charges per Second" }, } }, + ["CorruptionManaFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Mana Flasks gain (0.08-0.17) charges per Second", statOrder = { 6889 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.08-0.17) charges per Second" }, } }, + ["CorruptionCharmChargeGeneration1"] = { type = "Corrupted", affix = "", "Charms gain (0.08-0.17) charges per Second", statOrder = { 6885 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.08-0.17) charges per Second" }, } }, ["CorruptionLocalIncreasedPhysicalDamagePercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(15-25)% increased Physical Damage" }, } }, ["CorruptionSpellDamageOnWeapon1"] = { type = "Corrupted", affix = "", "(20-30)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, ["CorruptionSpellDamageOnTwoHandWeapon1"] = { type = "Corrupted", affix = "", "(40-60)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, @@ -86,11 +86,11 @@ return { ["CorruptionLocalIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "(6-8)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-8)% increased Attack Speed" }, } }, ["CorruptionLocalCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 945 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(5-10)% to Critical Damage Bonus" }, } }, ["CorruptionLocalStunDamageIncrease1"] = { type = "Corrupted", affix = "", "Causes (20-30)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (20-30)% increased Stun Buildup" }, } }, - ["CorruptionLocalWeaponRangeIncrease1"] = { type = "Corrupted", affix = "", "(10-20)% increased Melee Strike Range with this weapon", statOrder = { 7600 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [548198834] = { "(10-20)% increased Melee Strike Range with this weapon" }, } }, + ["CorruptionLocalWeaponRangeIncrease1"] = { type = "Corrupted", affix = "", "(10-20)% increased Melee Strike Range with this weapon", statOrder = { 7596 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [548198834] = { "(10-20)% increased Melee Strike Range with this weapon" }, } }, ["CorruptionLocalChanceToBleed1"] = { type = "Corrupted", affix = "", "(10-15)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { "mace", "sword", "axe", "flail", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(10-15)% chance to cause Bleeding on Hit" }, } }, - ["CorruptionLocalChanceToPoison1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(10-15)% chance to Poison on Hit with this weapon" }, } }, - ["CorruptionLocalRageOnHit1"] = { type = "Corrupted", affix = "", "Grants 1 Rage on Hit", statOrder = { 7705 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, - ["CorruptionLocalChanceToMaim1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Maim on Hit", statOrder = { 7798 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(10-15)% chance to Maim on Hit" }, } }, + ["CorruptionLocalChanceToPoison1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Poison on Hit with this weapon", statOrder = { 7809 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(10-15)% chance to Poison on Hit with this weapon" }, } }, + ["CorruptionLocalRageOnHit1"] = { type = "Corrupted", affix = "", "Grants 1 Rage on Hit", statOrder = { 7701 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, + ["CorruptionLocalChanceToMaim1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Maim on Hit", statOrder = { 7794 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(10-15)% chance to Maim on Hit" }, } }, ["CorruptionLocalChanceToBlind1"] = { type = "Corrupted", affix = "", "(5-10)% chance to Blind Enemies on hit", statOrder = { 2013 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2301191210] = { "(5-10)% chance to Blind Enemies on hit" }, } }, ["CorruptionWeaponElementalDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attacks" }, } }, ["CorruptionWeaponElementalDamageTwoHand1"] = { type = "Corrupted", affix = "", "(40-50)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(40-50)% increased Elemental Damage with Attacks" }, } }, @@ -109,7 +109,7 @@ return { ["CorruptionAlliesInPresenceIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Cast Speed", statOrder = { 919 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-10)% increased Cast Speed" }, } }, ["CorruptionAlliesInPresenceCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (10-15)% increased Critical Damage Bonus", statOrder = { 917 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (10-15)% increased Critical Damage Bonus" }, } }, ["CorruptionChanceToPierce1"] = { type = "Corrupted", affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(20-30)% chance to Pierce an Enemy" }, } }, - ["CorruptionChainFromTerrain1"] = { type = "Corrupted", affix = "", "Projectiles have (10-20)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-20)% chance to Chain an additional time from terrain" }, } }, + ["CorruptionChainFromTerrain1"] = { type = "Corrupted", affix = "", "Projectiles have (10-20)% chance to Chain an additional time from terrain", statOrder = { 9534 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-20)% chance to Chain an additional time from terrain" }, } }, ["CorruptionJewelStrength1"] = { type = "Corrupted", affix = "", "+(4-6) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(4-6) to Strength" }, } }, ["CorruptionJewelDexterity1"] = { type = "Corrupted", affix = "", "+(4-6) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(4-6) to Dexterity" }, } }, ["CorruptionJewelIntelligence1"] = { type = "Corrupted", affix = "", "+(4-6) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(4-6) to Intelligence" }, } }, @@ -117,16 +117,16 @@ return { ["CorruptionJewelColdResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, ["CorruptionJewelLightningResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, ["CorruptionJewelChaosResist1"] = { type = "Corrupted", affix = "", "+(3-7)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-7)% to Chaos Resistance" }, } }, - ["CorruptionJewelMaimImmunity1"] = { type = "Corrupted", affix = "", "Immune to Maim", statOrder = { 7302 }, level = 1, group = "ImmuneToMaim", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3429557654] = { "Immune to Maim" }, } }, - ["CorruptionJewelHinderImmunity1"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10591 }, level = 1, group = "YouCannotBeHindered", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["CorruptionJewelCorruptedBloodImmunity1"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5272 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["CorruptionJewelMaimImmunity1"] = { type = "Corrupted", affix = "", "Immune to Maim", statOrder = { 7298 }, level = 1, group = "ImmuneToMaim", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3429557654] = { "Immune to Maim" }, } }, + ["CorruptionJewelHinderImmunity1"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10581 }, level = 1, group = "YouCannotBeHindered", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, + ["CorruptionJewelCorruptedBloodImmunity1"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5268 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, ["CorruptionJewelBlindImmunity1"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2719 }, level = 1, group = "ImmunityToBlind", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, ["SpecialCorruptionWarcrySpeed1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Warcry Speed", statOrder = { 2989 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(15-25)% increased Warcry Speed" }, } }, ["SpecialCorruptionCurseEffect1"] = { type = "SpecialCorrupted", affix = "", "(5-10)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-10)% increased Curse Magnitudes" }, } }, ["SpecialCorruptionAreaOfEffect1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Area of Effect", statOrder = { 1630 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, ["SpecialCorruptionPresenceRadius1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, - ["SpecialCorruptionCooldownRecovery1"] = { type = "SpecialCorrupted", affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, + ["SpecialCorruptionCooldownRecovery1"] = { type = "SpecialCorrupted", affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, ["SpecialCorruptionSkillEffectDuration1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(15-25)% increased Skill Effect Duration" }, } }, - ["SpecialCorruptionEnergyGeneration1"] = { type = "SpecialCorrupted", affix = "", "Meta Skills gain (20-30)% increased Energy", statOrder = { 6410 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (20-30)% increased Energy" }, } }, + ["SpecialCorruptionEnergyGeneration1"] = { type = "SpecialCorrupted", affix = "", "Meta Skills gain (20-30)% increased Energy", statOrder = { 6406 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (20-30)% increased Energy" }, } }, ["SpecialCorruptionDamageGainedAsChaos1"] = { type = "SpecialCorrupted", affix = "", "Gain (5-8)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (5-8)% of Damage as Extra Chaos Damage" }, } }, } \ No newline at end of file diff --git a/src/Data/ModFistsOfStone.lua b/src/Data/ModFistsOfStone.lua new file mode 100644 index 0000000000..23aa3ccafa --- /dev/null +++ b/src/Data/ModFistsOfStone.lua @@ -0,0 +1,592 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + ["HandWrapsStrength1"] = { type = "Suffix", affix = "of the Brute", "(7-10)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(7-10)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength2"] = { type = "Suffix", affix = "of the Wrestler", "(11-13)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(11-13)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength3"] = { type = "Suffix", affix = "of the Bear", "(14-16)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(14-16)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength4"] = { type = "Suffix", affix = "of the Lion", "(17-19)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(17-19)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength5"] = { type = "Suffix", affix = "of the Gorilla", "(20-22)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-22)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength6"] = { type = "Suffix", affix = "of the Goliath", "(23-25)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(23-25)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength7"] = { type = "Suffix", affix = "of the Leviathan", "(26-28)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(26-28)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength8"] = { type = "Suffix", affix = "of the Titan", "(29-32)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(29-32)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsDexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(15-18)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(15-18)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(19-22)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(19-22)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity3"] = { type = "Suffix", affix = "of the Fox", "+(23-26)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-26)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(27-30)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(27-30)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity5"] = { type = "Suffix", affix = "of the Panther", "+(31-35)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(31-35)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(36-40)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(36-40)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(41-45)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(41-45)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(46-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(46-50)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-60)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-60)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsIntelligence1"] = { type = "Suffix", affix = "of the Pupil", "(5-8)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(5-8)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence2"] = { type = "Suffix", affix = "of the Student", "(9-12)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(9-12)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence3"] = { type = "Suffix", affix = "of the Prodigy", "(13-16)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(13-16)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence4"] = { type = "Suffix", affix = "of the Augur", "(17-20)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(17-20)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence5"] = { type = "Suffix", affix = "of the Philosopher", "(21-24)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(21-24)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence6"] = { type = "Suffix", affix = "of the Sage", "(25-28)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(25-28)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence7"] = { type = "Suffix", affix = "of the Savant", "(29-32)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(29-32)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "10% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "10% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsFireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+1% to Maximum Fire Resistance", "+(11-15)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(11-15)% to Fire Resistance" }, } }, + ["HandWrapsFireResist2"] = { type = "Suffix", affix = "of the Salamander", "+1% to Maximum Fire Resistance", "+(16-20)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(16-20)% to Fire Resistance" }, } }, + ["HandWrapsFireResist3"] = { type = "Suffix", affix = "of the Drake", "+1% to Maximum Fire Resistance", "+(21-25)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, + ["HandWrapsFireResist4"] = { type = "Suffix", affix = "of the Kiln", "+2% to Maximum Fire Resistance", "+(21-25)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, + ["HandWrapsFireResist5"] = { type = "Suffix", affix = "of the Furnace", "+2% to Maximum Fire Resistance", "+(26-30)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(26-30)% to Fire Resistance" }, } }, + ["HandWrapsFireResist6"] = { type = "Suffix", affix = "of the Volcano", "+2% to Maximum Fire Resistance", "+(31-35)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(31-35)% to Fire Resistance" }, } }, + ["HandWrapsFireResist7"] = { type = "Suffix", affix = "of Magma", "+2% to Maximum Fire Resistance", "+(36-40)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, + ["HandWrapsFireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+3% to Maximum Fire Resistance", "+(36-40)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to Maximum Fire Resistance" }, [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, + ["HandWrapsColdResist1"] = { type = "Suffix", affix = "of the Seal", "+1% to Maximum Cold Resistance", "+(11-15)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-15)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+1% to Maximum Cold Resistance", "+(16-20)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(16-20)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+1% to Maximum Cold Resistance", "+(21-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+2% to Maximum Cold Resistance", "+(21-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+2% to Maximum Cold Resistance", "+(26-30)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-30)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+2% to Maximum Cold Resistance", "+(31-35)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-35)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist7"] = { type = "Suffix", affix = "of the Ice", "+2% to Maximum Cold Resistance", "+(36-40)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist8"] = { type = "Suffix", affix = "of Haast", "+3% to Maximum Cold Resistance", "+(36-40)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, + ["HandWrapsLightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+1% to Maximum Lightning Resistance", "+(11-15)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(11-15)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist2"] = { type = "Suffix", affix = "of the Squall", "+1% to Maximum Lightning Resistance", "+(16-20)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(16-20)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist3"] = { type = "Suffix", affix = "of the Storm", "+1% to Maximum Lightning Resistance", "+(21-25)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+2% to Maximum Lightning Resistance", "+(21-25)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+2% to Maximum Lightning Resistance", "+(26-30)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(26-30)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+2% to Maximum Lightning Resistance", "+(31-35)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(31-35)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+2% to Maximum Lightning Resistance", "+(36-40)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist8"] = { type = "Suffix", affix = "of Ephij", "+3% to Maximum Lightning Resistance", "+(36-40)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, + ["HandWrapsChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+1% to Maximum Chaos Resistance", "+(6-9)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(6-9)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+1% to Maximum Chaos Resistance", "+(10-13)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(10-13)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+1% to Maximum Chaos Resistance", "+(14-17)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(14-17)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+1% to Maximum Chaos Resistance", "+(18-21)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(18-21)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist5"] = { type = "Suffix", affix = "of Exile", "+1% to Maximum Chaos Resistance", "+(22-25)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+2% to Maximum Chaos Resistance", "+(22-25)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, + ["HandWrapsIncreasedLife1"] = { type = "Prefix", affix = "Hale", "5% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "5% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife2"] = { type = "Prefix", affix = "Healthy", "6% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "6% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "7% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "7% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "8% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "8% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife5"] = { type = "Prefix", affix = "Stout", "9% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "9% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife6"] = { type = "Prefix", affix = "Robust", "10% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "10% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife7"] = { type = "Prefix", affix = "Rotund", "11% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "11% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife8"] = { type = "Prefix", affix = "Virile", "12% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "12% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "13% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "13% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife10"] = { type = "Prefix", affix = "Fecund", "14% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "14% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "15% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "15% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "16% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "16% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife13"] = { type = "Prefix", affix = "Prime", "17% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "17% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedMana1"] = { type = "Prefix", affix = "Beryl", "(10-11)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(10-11)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "(12-13)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(12-13)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana3"] = { type = "Prefix", affix = "Azure", "(14-15)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(14-15)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana4"] = { type = "Prefix", affix = "Teal", "(16-17)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(16-17)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "(18-19)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(18-19)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana6"] = { type = "Prefix", affix = "Aqua", "(20-21)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(20-21)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "(22-23)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(22-23)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana8"] = { type = "Prefix", affix = "Gentian", "(24-25)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(24-25)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "(26-27)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(26-27)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEnergyShield2"] = { type = "Prefix", affix = "Anointed", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Incorporeal", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Ascendant", "(21-22)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(21-22)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "+(5-10) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, + ["HandWrapsReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "+(11-15) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(11-15) to all Attributes" }, } }, + ["HandWrapsReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "+(16-20) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-20) to all Attributes" }, } }, + ["HandWrapsReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "+(21-25) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-25) to all Attributes" }, } }, + ["HandWrapsReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "+(26-30) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(26-30) to all Attributes" }, } }, + ["HandWrapsAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Attacks Gain 10% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 10% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Attacks Gain 11% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 11% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Attacks Gain 12% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 12% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Attacks Gain 13% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 13% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Attacks Gain 14% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 14% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Attacks Gain (15-16)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (15-16)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Attacks Gain (17-18)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (17-18)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Attacks Gain (19-20)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (19-20)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Attacks Gain (21-23)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (21-23)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Attacks Gain 10% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 10% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Attacks Gain 11% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 11% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Attacks Gain 12% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 12% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Attacks Gain 13% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 13% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Attacks Gain 14% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 14% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Attacks Gain (15-16)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (15-16)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Attacks Gain (17-18)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (17-18)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Attacks Gain (19-20)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (19-20)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Attacks Gain (21-23)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (21-23)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Attacks Gain 10% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 10% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Attacks Gain 11% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 11% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Attacks Gain 12% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 12% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Attacks Gain 13% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 13% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Attacks Gain 14% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 14% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Attacks Gain (15-16)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (15-16)% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Attacks Gain (17-18)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (17-18)% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Attacks Gain (19-20)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (19-20)% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Attacks Gain (21-23)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (21-23)% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Attacks Gain 10% of Damage as Extra Lightning Damage", statOrder = { 9256 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 10% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Attacks Gain 11% of Damage as Extra Lightning Damage", statOrder = { 9256 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 11% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Attacks Gain 12% of Damage as Extra Lightning Damage", statOrder = { 9256 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 12% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Attacks Gain 13% of Damage as Extra Lightning Damage", statOrder = { 9256 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 13% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Attacks Gain 14% of Damage as Extra Lightning Damage", statOrder = { 9256 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 14% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Attacks Gain (15-16)% of Damage as Extra Lightning Damage", statOrder = { 9256 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (15-16)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Attacks Gain (17-18)% of Damage as Extra Lightning Damage", statOrder = { 9256 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (17-18)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Attacks Gain (19-20)% of Damage as Extra Lightning Damage", statOrder = { 9256 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (19-20)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Attacks Gain (21-23)% of Damage as Extra Lightning Damage", statOrder = { 9256 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (21-23)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsGlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+(10-12)% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(10-12)% to Quality of all Skills" }, } }, + ["HandWrapsGlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+1 to Level of all Melee Skills", "+(10-12)% to Quality of all Skills", statOrder = { 966, 975 }, level = 1, group = "GlobalSkillGemQualityMeleeLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "gem" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, [3655769732] = { "+(10-12)% to Quality of all Skills" }, } }, + ["HandWrapsLifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (8-8.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-8.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsLifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (9-10.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (9-10.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsLifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (11-11.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (11-11.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsLifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (12-13.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (12-13.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsLifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (14-15)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (14-15)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (6-7.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (6-7.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (8-8.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (8-8.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (9-10.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (9-10.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (11-11.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (11-11.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (12-13)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (12-13)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Recover 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Recover 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Recover 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Recover 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Recover 1% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Recover 1% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Recover 3% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, + ["HandWrapsLifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7441 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsLifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7441 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsLifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7441 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsLifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7441 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(8-12)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(8-12)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(14-18)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(14-18)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(20-24)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(20-24)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(26-30)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(26-30)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "(12-14)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(12-14)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "(15-17)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(15-17)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "(18-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(18-20)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "(21-23)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(21-23)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "(24-26)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(24-26)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "(27-29)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(27-29)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "(30-32)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(30-32)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "(33-35)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(33-35)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "(36-38)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(36-38)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(0.5-1)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(0.5-1)% to Critical Hit Chance" }, } }, + ["HandWrapsCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(1.1-1.5)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.1-1.5)% to Critical Hit Chance" }, } }, + ["HandWrapsCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(1.6-2)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.6-2)% to Critical Hit Chance" }, } }, + ["HandWrapsCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(2.1-2.5)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(2.1-2.5)% to Critical Hit Chance" }, } }, + ["HandWrapsCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(2.5-3)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(2.5-3)% to Critical Hit Chance" }, } }, + ["HandWrapsItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(15-20)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6913 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(15-20)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(21-25)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6913 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(21-25)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(26-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6913 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(26-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsEnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsEnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(31-35)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsEnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsEnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(41-45)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsEnergyShieldRechargeRate5"] = { type = "Suffix", affix = "of Ardour", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(46-50)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsEnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-55)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(10-12)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-12)% to all Elemental Resistances" }, } }, + ["HandWrapsArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(13-15)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } }, + ["HandWrapsArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(16-18)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } }, + ["HandWrapsArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(19-21)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(19-21)% to all Elemental Resistances" }, } }, + ["HandWrapsArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(22-24)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(22-24)% to all Elemental Resistances" }, } }, + ["HandWrapsEvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Prevent +3% of Damage from Deflected Hits", statOrder = { 4675 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +3% of Damage from Deflected Hits" }, } }, + ["HandWrapsEvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Prevent +4% of Damage from Deflected Hits", statOrder = { 4675 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +4% of Damage from Deflected Hits" }, } }, + ["HandWrapsEvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Prevent +5% of Damage from Deflected Hits", statOrder = { 4675 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +5% of Damage from Deflected Hits" }, } }, + ["HandWrapsEvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Prevent +6% of Damage from Deflected Hits", statOrder = { 4675 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +6% of Damage from Deflected Hits" }, } }, + ["HandWrapsEvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Prevent +7% of Damage from Deflected Hits", statOrder = { 4675 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +7% of Damage from Deflected Hits" }, } }, + ["HandWrapsAbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(2-3)% to Maximum Lightning Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1011, 1024 }, level = 1, group = "ChaosAndMaxLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [1011760251] = { "+(2-3)% to Maximum Lightning Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, + ["HandWrapsAbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "(7-9)% increased Strength and Dexterity", statOrder = { 1002 }, level = 1, group = "IncreasedStrengthAndDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dexterity", "strength", "attribute" }, tradeHashes = { [4248928173] = { "(7-9)% increased Strength and Dexterity" }, } }, + ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(2-3)% to Maximum Fire Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1009, 1024 }, level = 1, group = "ChaosAndMaxFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [4095671657] = { "+(2-3)% to Maximum Fire Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, + ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "(7-9)% increased Strength and Intelligence", statOrder = { 1003 }, level = 1, group = "IncreasedStrengthAndIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "intelligence", "strength", "attribute" }, tradeHashes = { [517666337] = { "(7-9)% increased Strength and Intelligence" }, } }, + ["HandWrapsAbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(2-3)% to Maximum Cold Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1010, 1024 }, level = 1, group = "ChaosAndMaxColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, + ["HandWrapsAbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "(7-9)% increased Dexterity and Intelligence", statOrder = { 1004 }, level = 1, group = "IncreasedDexterityAndIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dexterity", "intelligence", "attribute" }, tradeHashes = { [3300318172] = { "(7-9)% increased Dexterity and Intelligence" }, } }, + ["HandWrapsAbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Reservation Efficiency of Skills", statOrder = { 1955 }, level = 1, group = "ReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2587176568] = { "(6-10)% increased Reservation Efficiency of Skills" }, } }, + ["HandWrapsAbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5814 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, + ["HandWrapsAbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "Chance to Poison is calculated from your base chance to inflict Bleeding instead", statOrder = { 4733 }, level = 1, group = "BaseBleedChanceAppliesToPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "poison", "physical", "chaos", "ailment" }, tradeHashes = { [1670828838] = { "Chance to Poison is calculated from your base chance to inflict Bleeding instead" }, } }, + ["HandWrapsAbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "Chance to inflict Bleeding is calculated from your base chance to Poison instead", statOrder = { 4656 }, level = 1, group = "BasePoisonChanceAppliesToBleed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "poison", "physical", "chaos", "ailment" }, tradeHashes = { [1710906986] = { "Chance to inflict Bleeding is calculated from your base chance to Poison instead" }, } }, + ["HandWrapsAbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds", statOrder = { 4235 }, level = 1, group = "AggravateOldBleedOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [521615509] = { "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds" }, } }, + ["HandWrapsAbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(13-17)% increased Attack Speed if you haven't been Hit Recently", statOrder = { 4548 }, level = 1, group = "AttackSpeedIfNotHitRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3842707164] = { "(13-17)% increased Attack Speed if you haven't been Hit Recently" }, } }, + ["HandWrapsAbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Mark Skills have (15-25)% increased Use Speed", statOrder = { 1946 }, level = 1, group = "MarkCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1714971114] = { "Mark Skills have (15-25)% increased Use Speed" }, } }, + ["HandWrapsAbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies", statOrder = { 9269 }, level = 1, group = "DamageGainedAsColdVsDazed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4212675042] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies" }, } }, + ["HandWrapsAbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "Life Leech can Overflow Maximum Life", statOrder = { 7450 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, + ["HandWrapsAbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(26-35)% increased Damage against Immobilised Enemies", statOrder = { 5955 }, level = 1, group = "ImmobiliseIncreasedDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3120508478] = { "(26-35)% increased Damage against Immobilised Enemies" }, } }, + ["HandWrapsAbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(5-10)% chance to gain a Power Charge on Critical Hit", statOrder = { 1585 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "(5-10)% chance to gain a Power Charge on Critical Hit" }, } }, + ["HandWrapsAbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(17-23)% increased Attack Speed when on Full Life", statOrder = { 1178 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "(17-23)% increased Attack Speed when on Full Life" }, } }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueAddedPhysicalDamage4"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (10-15)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsUniqueGiantsBlood1"] = { affix = "", "Hollow Palm Technique", statOrder = { 10698 }, level = 1, group = "KeystoneHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3959337123] = { "Hollow Palm Technique" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed7"] = { affix = "", "5% reduced Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "5% reduced Cast Speed" }, } }, + ["HandWrapsUniqueStunDamageIncrease2"] = { affix = "", "(20-30)% increased Immobilisation buildup", statOrder = { 7189 }, level = 1, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [330530785] = { "(20-30)% increased Immobilisation buildup" }, } }, + ["HandWrapsUniqueStrength47"] = { affix = "", "(15-20)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(15-20)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsUniqueShareChargesWithAllies1"] = { affix = "", "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit", "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit", "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit", statOrder = { 5537, 5538, 5541 }, level = 1, group = "GrantChargesToAlliesOnHitChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [3294345676] = { "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit" }, [991168463] = { "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit" }, [3174788165] = { "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit" }, } }, + ["HandWrapsUniqueIncreasedSkillSpeed1"] = { affix = "", "(13-20)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(13-20)% increased Attack Speed" }, } }, + ["HandWrapsUniqueMaximumManaIncrease3"] = { affix = "", "Cannot Leech Mana", statOrder = { 2350 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, + ["HandWrapsUniqueIncreasedLife9"] = { affix = "", "(7-9)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(7-9)% less damage taken while on Low Life" }, } }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRating3"] = { affix = "", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueCriticalMultiplier2"] = { affix = "", "+(1.5-2)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.5-2)% to Critical Hit Chance" }, } }, + ["HandWrapsUniqueImpaleOnCriticalHit1"] = { affix = "", "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks", statOrder = { 6089 }, level = 1, group = "ThornsOnMeleeCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3760099479] = { "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks" }, } }, + ["HandWrapsUniqueCriticalsCannotConsumeImpale1"] = { affix = "", "(25-35)% increased Thorns Critical Damage Bonus", statOrder = { 4755 }, level = 1, group = "ThornsCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1094302125] = { "(25-35)% increased Thorns Critical Damage Bonus" }, } }, + ["HandWrapsUniqueAttackerTakesDamage8"] = { affix = "", "(24-35) to (36-57) Cold Thorns damage", statOrder = { 10249 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "(24-35) to (36-57) Cold Thorns damage" }, } }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIncreasedLife58"] = { affix = "", "(12-15)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(12-15)% less damage taken while on Low Life" }, } }, + ["HandWrapsUniqueLifeLeech2"] = { affix = "", "Leech (13-17)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (13-17)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsUniqueVaalPact1"] = { affix = "", "Eternal Youth", statOrder = { 10691 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, + ["HandWrapsUniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2752 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueStrength41"] = { affix = "", "(18-24)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(18-24)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsUniqueLifeGainedFromEnemyDeath11"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, + ["HandWrapsUniqueIncreasedPhysicalDamagePercent1"] = { affix = "", "Attack Damage with Hits is Lucky while you are Surrounded", statOrder = { 4519 }, level = 1, group = "LuckyAttackDamageWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1292739266] = { "Attack Damage with Hits is Lucky while you are Surrounded" }, } }, + ["HandWrapsUniqueCriticalMultiplier1"] = { affix = "", "(15-20)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-20)% increased Critical Damage Bonus" }, } }, + ["HandWrapsUniqueAddedPhysicalDamage2"] = { affix = "", "Attacks Gain (11-15)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (11-15)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsUniqueOverrideWeaponBaseCritical1"] = { affix = "", "+(3-6)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3255 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(3-6)% to Unarmed Melee Attack Critical Hit Chance" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionRating4"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent6"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueAddedColdDamage1"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (10-15)% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsUniqueFreezeDamageIncrease2"] = { affix = "", "All Damage from Hits Contributes to Freeze Buildup", statOrder = { 4267 }, level = 1, group = "AllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4052117756] = { "All Damage from Hits Contributes to Freeze Buildup" }, } }, + ["HandWrapsUniqueChillEffect1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2614 }, level = 1, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage from Hits Contributes to Chill Magnitude" }, } }, + ["HandWrapsUniqueColdResist24"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", "+(15-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent7"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueFullManaThreshold1"] = { affix = "", "You are considered on Low Mana while at 50% of maximum Mana or below instead", statOrder = { 7940 }, level = 1, group = "HandWrapsLowManaThreshold", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1439856646] = { "You are considered on Low Mana while at 50% of maximum Mana or below instead" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2091975590] = { "25% more Attack damage while on Low Mana" }, } }, + ["HandWrapsUniqueIncreasedAccuracy4"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsUniqueIntelligence19"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent8"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueChaosResist6"] = { affix = "", "+1% to Maximum Chaos Resistance", "+(7-17)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(7-17)% to Chaos Resistance" }, } }, + ["HandWrapsUniqueBaseChanceToPoison1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5643 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, + ["HandWrapsUniquePoisonStackCount1"] = { affix = "", "Targets can be affected by two of your Chills at the same time", statOrder = { 5242 }, level = 1, group = "HandWrapsApplyAdditionalChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1104235854] = { "Targets can be affected by two of your Chills at the same time" }, } }, + ["HandWrapsUniqueLifeRegeneration12"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.5-1.5)% of maximum Life per second" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent12"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueCriticalStrikeChance5"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-30)% increased Critical Damage Bonus" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed3"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueDexterity19"] = { affix = "", "+(45-60)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(45-60)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsUniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Critical Hit chance for Attacks is (25-40)%", statOrder = { 4499 }, level = 1, group = "AttackCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3998836319] = { "Critical Hit chance for Attacks is (25-40)%" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent36"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed16"] = { affix = "", "(10-20)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-20)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueDexterity45"] = { affix = "", "+(25-35)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(25-35)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsUniqueAddedChaosDamage5"] = { affix = "", "Attacks Gain (17-23)% of Damage as extra Chaos Damage", statOrder = { 9232 }, level = 1, group = "AttackDamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos", "attack" }, tradeHashes = { [1288439911] = { "Attacks Gain (17-23)% of Damage as extra Chaos Damage" }, } }, + ["HandWrapsUniqueGainFearIncarnateOnCulling1"] = { affix = "", "Gain 1 Fear Overwhelming when you Cull a target", statOrder = { 6929 }, level = 1, group = "GainFearOverwhelming", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1373147908] = { "Gain 1 Fear Overwhelming when you Cull a target" }, } }, + ["HandWrapsUniqueElementalDamageConvertToFire1"] = { affix = "", "Physical damage from Hits Contributes to Flammability and", "Ignite Magnitudes, Freeze Buildup, and Shock Chance", statOrder = { 2639, 2639.1 }, level = 1, group = "PhysicalDamageCanFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3268818374] = { "Physical damage from Hits Contributes to Flammability and", "Ignite Magnitudes, Freeze Buildup, and Shock Chance" }, } }, + ["HandWrapsUniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (6-15)% of Fire damage as Extra Physical damage", statOrder = { 1686 }, level = 1, group = "FireDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2848088738] = { "Gain (6-15)% of Fire damage as Extra Physical damage" }, } }, + ["HandWrapsUniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (6-15)% of Cold damage as Extra Physical damage", statOrder = { 1682 }, level = 1, group = "ColdDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1555320175] = { "Gain (6-15)% of Cold damage as Extra Physical damage" }, } }, + ["HandWrapsUniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (6-15)% of Lightning damage as Extra Physical damage", statOrder = { 1678 }, level = 1, group = "LightningDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [2098400428] = { "Gain (6-15)% of Lightning damage as Extra Physical damage" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent2"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueFireResist2"] = { affix = "", "+(2-3)% to Maximum Fire Resistance", "+(15-25)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(2-3)% to Maximum Fire Resistance" }, [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, + ["HandWrapsUniqueColdResist1"] = { affix = "", "(30-50)% increased Chill Duration on you", statOrder = { 1064 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(30-50)% increased Chill Duration on you" }, } }, + ["HandWrapsUniqueDoubleIgniteChance1"] = { affix = "", "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances", statOrder = { 7263 }, level = 1, group = "IgnitedChilledEnemyResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [134900849] = { "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances" }, } }, + ["HandWrapsUniqueFireDamagePercent2"] = { affix = "", "Attacks Gain (4-7)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (4-7)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsUniqueColdDamagePercent2"] = { affix = "", "Attacks Gain (4-7)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (4-7)% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsUniqueIncreasedCastSpeed6"] = { affix = "", "(15-25)% reduced Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(15-25)% reduced Attack Speed" }, } }, + ["HandWrapsUniqueSpellDamage1"] = { affix = "", "100% increased Attack Damage", statOrder = { 1156 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "100% increased Attack Damage" }, } }, + ["HandWrapsUniqueIntelligence18"] = { affix = "", "15% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShield10"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent7"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueDexterity10"] = { affix = "", "+(20-40)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(20-40)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsUniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% reduced Attack and Cast Speed" }, } }, + ["HandWrapsUniqueLightningDamageCanElectrocute1"] = { affix = "", "All damage with Attacks Contributes to Electrocution Buildup", statOrder = { 4264 }, level = 1, group = "AllAttackDamageElectrocutes", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2132256285] = { "All damage with Attacks Contributes to Electrocution Buildup" }, } }, + ["HandWrapsUniqueIncreasedCastSpeed7"] = { affix = "", "(9-15)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(9-15)% increased Attack Speed" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShield4"] = { affix = "", "+(60-80) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(60-80) to maximum Runic Ward" }, } }, + ["HandWrapsUniqueIncreasedLife15"] = { affix = "", "+(130-160) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(130-160) to maximum Life" }, } }, + ["HandWrapsUniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack", statOrder = { 9780 }, level = 1, group = "SacrificeLifeToGainWardOnAttack", weightKey = { }, weightVal = { }, modTags = { "runic_ward", "attack" }, tradeHashes = { [2238664497] = { "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent20"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIntelligence10"] = { affix = "", "15% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsUniqueColdResist30"] = { affix = "", "+2% to Maximum Cold Resistance", "+(20-30)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsUniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "You have no Mana Regeneration", statOrder = { 2021 }, level = 1, group = "NoManaRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052246654] = { "You have no Mana Regeneration" }, } }, + ["HandWrapsUniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently", statOrder = { 7984 }, level = 1, group = "IncreasedManaLeechIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHashes = { [3844601656] = { "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently" }, } }, + ["HandWrapsUniqueCriticalStrikeChance14"] = { affix = "", "(40-60)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-60)% increased Critical Hit Chance" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent25"] = { affix = "", "(15-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-25)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIncreasedMana48"] = { affix = "", "(15-25)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2091975590] = { "(15-25)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsUniqueItemFoundRarityIncrease21"] = { affix = "", "(15-25)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6913 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(15-25)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsUniqueElementalPenetrationBelowZero1"] = { affix = "", "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance", statOrder = { 6277 }, level = 1, group = "ElementalDamageLowestResist", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1740349133] = { "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance" }, } }, + ["HandWrapsUniqueElementalPenetration1"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, + ["HandWrapsUniqueIncreasedLife10"] = { affix = "", "(6-7)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(6-7)% less damage taken while on Low Life" }, } }, + ["HandWrapsUniqueAddedPhysicalDamage3"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (10-15)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed2"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 6136 }, level = 1, group = "DexteritySatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2233892982] = { "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion25"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion1"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueItemFoundRarityIncrease1"] = { affix = "", "(50-80)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6913 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(50-80)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsUniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 2% of maximum Life on Kill" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion7"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueLifeGainedFromEnemyDeath4"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, + ["HandWrapsUniqueManaGainedFromEnemyDeath5"] = { affix = "", "Recover 3% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, + ["HandWrapsUniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1775 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed8"] = { affix = "", "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently", statOrder = { 5907 }, level = 1, group = "CullThresholdIfCulledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1008466206] = { "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion19"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueStrength23"] = { affix = "", "(10-14)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(10-14)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsUniqueDexterity24"] = { affix = "", "+(25-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(25-50)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsUniqueLightningResist23"] = { affix = "", "Gain (15-25)% of Lightning damage as Extra Cold damage", statOrder = { 1680 }, level = 1, group = "LightningDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2236478400] = { "Gain (15-25)% of Lightning damage as Extra Cold damage" }, } }, + ["HandWrapsUniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1713 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed11"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion15"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueDecimatingStrike1"] = { affix = "", "Deal Double Damage to Enemies that are on Full Life", statOrder = { 6082 }, level = 1, group = "DoubleDamageToFullLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [231543702] = { "Deal Double Damage to Enemies that are on Full Life" }, } }, + ["HandWrapsUniqueIntelligence22"] = { affix = "", "(20-25)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-25)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed4"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield4"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueLifeGainedFromEnemyDeath3"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, + ["HandWrapsUniqueManaGainedFromEnemyDeath4"] = { affix = "", "Recover 3% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, + ["HandWrapsUniqueEnemiesKilledCountAsYours1"] = { affix = "", "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 943, 943.1, 6091 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602191394] = { "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, [1576794517] = { "Enemies in your Presence killed by anyone count as being killed by you instead" }, } }, + ["HandWrapsUniqueColdResist25"] = { affix = "", "(30-50)% chance to gain Volatility on Kill", statOrder = { 10474 }, level = 1, group = "VolatilityOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3749502527] = { "(30-50)% chance to gain Volatility on Kill" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueChillImmunityWhenChilled1"] = { affix = "", "(15-20)% more damage taken while Cursed", statOrder = { 6954 }, level = 1, group = "HandWrapsDamageTakenWhileCursed", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [276406225] = { "(15-20)% more damage taken while Cursed" }, } }, + ["HandWrapsUniqueFreezeImmunityWhenFrozen1"] = { affix = "", "Enemies you Curse take (20-30)% increased Damage", statOrder = { 3433 }, level = 1, group = "CursedEnemiesDamageTaken", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1984310483] = { "Enemies you Curse take (20-30)% increased Damage" }, } }, + ["HandWrapsUniqueIgniteImmunityWhenIgnited1"] = { affix = "", "(4-6)% reduced Movement Speed while Cursed", statOrder = { 2401 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3988943320] = { "(4-6)% reduced Movement Speed while Cursed" }, } }, + ["HandWrapsUniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5938 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4275855121] = { "Curses you inflict are reflected back to you" }, } }, + ["HandWrapsUniqueIntelligence12"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsUniqueFireResist7"] = { affix = "", "+1% to Maximum Fire Resistance", "+(5-15)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(5-15)% to Fire Resistance" }, } }, + ["HandWrapsUniqueColdResist9"] = { affix = "", "Gain (10-20)% of Fire damage as Extra Lightning damage", statOrder = { 1685 }, level = 1, group = "FireDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [387148449] = { "Gain (10-20)% of Fire damage as Extra Lightning damage" }, } }, + ["HandWrapsUniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 9268 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, + ["HandWrapsUniqueLocalIncreasedEnergyShield11"] = { affix = "", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield21"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueReducedLocalAttributeRequirements5"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "100% increased Attribute Requirements" }, } }, + ["HandWrapsUniqueSlowEffect1"] = { affix = "", "(25-50)% increased Immobilisation buildup", statOrder = { 7189 }, level = 1, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [330530785] = { "(25-50)% increased Immobilisation buildup" }, } }, + ["HandWrapsUniqueCannotImmobilise1"] = { affix = "", "Your Hits cannot Stun enemies", statOrder = { 1611 }, level = 1, group = "CannotStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [373932729] = { "Your Hits cannot Stun enemies" }, } }, + ["HandWrapsUniqueLifeRegeneration23"] = { affix = "", "Regenerate (1.5-3)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-3)% of maximum Life per second" }, } }, + ["HandWrapsUniqueLightningResist28"] = { affix = "", "+(2-3)% to Maximum Lightning Resistance", "+(15-25)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(2-3)% to Maximum Lightning Resistance" }, [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, + ["HandWrapsUniqueIncreasedLife54"] = { affix = "", "(10-12)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(10-12)% less damage taken while on Low Life" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield4"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed1"] = { affix = "", "(8-12)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(8-12)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueAllDamageCanPoison1"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict with Critical Hits", statOrder = { 5816 }, level = 1, group = "PoisonMagnitudeFromCriticalHits", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "critical", "ailment" }, tradeHashes = { [1692314789] = { "(30-40)% increased Magnitude of Poison you inflict with Critical Hits" }, } }, + ["HandWrapsUniqueBaseChanceToPoison2"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 9493 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield2"] = { affix = "", "+(30-50) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(30-50) to maximum Runic Ward" }, } }, + ["HandWrapsUniqueIncreasedLife6"] = { affix = "", "(6-8)% more damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(6-8)% more damage taken while on Low Life" }, } }, + ["HandWrapsUniqueLifeFlaskNoRecovery1"] = { affix = "", "Recover 1% of maximum Runic Ward on Kill", statOrder = { 10507 }, level = 1, group = "WardPercentOnKill", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3334796009] = { "Recover 1% of maximum Runic Ward on Kill" }, } }, + ["HandWrapsUniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 9352 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259470957] = { "On-Kill Effects happen twice" }, } }, + ["HandWrapsUniqueCriticalMultiplier3"] = { affix = "", "+(1-2)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1-2)% to Critical Hit Chance" }, } }, + ["HandWrapsUniqueAddedLightningDamage3"] = { affix = "", "Attacks Gain (17-21)% of Damage as Extra Lightning Damage", statOrder = { 9256 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (17-21)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsUniqueLightningResist26"] = { affix = "", "+2% to Maximum Lightning Resistance", "+(25-35)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(25-35)% to Lightning Resistance" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield17"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIntelligence34"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-30)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsUniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Mana Leech effects also Recover Energy Shield", statOrder = { 7985 }, level = 1, group = "ManaLeechAlsoRecoversEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4051067787] = { "Mana Leech effects also Recover Energy Shield" }, } }, + ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield19"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed13"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueLightningResist29"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", "+(10-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-25)% to Cold Resistance" }, [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, + ["HandWrapsAddedLightningDamageWhileUnarmedUniqueGloves_1"] = { affix = "", "Adds 44 to 66 Cold Damage to Unarmed Melee Hits", statOrder = { 3966 }, level = 1, group = "AddedColdDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1247498990] = { "Adds 44 to 66 Cold Damage to Unarmed Melee Hits" }, } }, + ["HandWrapsBaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(0.8-1.5)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3255 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(0.8-1.5)% to Unarmed Melee Attack Critical Hit Chance" }, } }, + ["HandWrapsUniqueIncreasedSkillSpeed5"] = { affix = "", "(15-25)% increased Attack Speed if you've dealt a Critical Hit Recently", statOrder = { 4563 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "(15-25)% increased Attack Speed if you've dealt a Critical Hit Recently" }, } }, + ["HandWrapsUniqueLocalArmourAndEvasionAndEnergyShield3"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5902 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4238331303] = { "Immobilise enemies at 50% buildup instead of 100%" }, } }, + ["HandWrapsUniqueImmobiliseIncreasedDamageTaken1"] = { affix = "", "(25-35)% Surpassing chance per enemy Power to gain", "Mountain's Teachings on Immobilising an enemy if", "you have the Way of the Mountain Ascendancy Passive Skill", statOrder = { 5398, 5398.1, 5398.2 }, level = 1, group = "MartialArtistStoneSkinChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [13746168] = { "(25-35)% Surpassing chance per enemy Power to gain", "Mountain's Teachings on Immobilising an enemy if", "you have the Way of the Mountain Ascendancy Passive Skill" }, } }, + ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { affix = "", "+(70-100) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(70-100) to maximum Runic Ward" }, } }, + ["HandWrapsUniqueRageOnAnyHit1"] = { affix = "", "Gain (6-8) Rage on Hit", statOrder = { 4695 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2258007247] = { "Gain (6-8) Rage on Hit" }, } }, + ["HandWrapsUniqueGainChargesOnMaximumRage1"] = { affix = "", "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage", statOrder = { 10508 }, level = 1, group = "RecoverPercentWardOnReachingMaximumRage", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [914467738] = { "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage" }, } }, + ["HandWrapsUniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7929 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3851480592] = { "Lose all Rage on reaching Maximum Rage" }, } }, + ["HandWrapsUniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9600 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-10-10) to Maximum Rage" }, } }, + ["HandWrapsUniqueDexterity31"] = { affix = "", "(11-13)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(11-13)% increased Dexterity" }, } }, + ["HandWrapsUniqueIntelligence31"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-10)% increased Intelligence" }, } }, + ["HandWrapsUniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity", statOrder = { 8952 }, level = 1, group = "AddedColdDamagePer20Dexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1088339210] = { "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2323 }, level = 1, group = "AreaOfEffectPer20Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } }, + ["HandWrapsUniqueChaosResist35"] = { affix = "", "+2% to Maximum Chaos Resistance", "+(17-23)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["HandWrapsUniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Mana per Second", statOrder = { 7973 }, level = 1, group = "LoseManaPercentPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2936435999] = { "Lose 5% of maximum Mana per Second" }, } }, + ["HandWrapsUniqueLocalIncreasedArmourAndEvasion30"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed9"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsUniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4737 }, level = 1, group = "RageRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2853314994] = { "Regenerate 5 Rage per second" }, } }, + ["HandWrapsUniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 9203 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163076972] = { "No Inherent loss of Rage" }, } }, + ["HandWrapsDemigodIncreasedSkillSpeed1"] = { affix = "", "15% increased Attack Speed if you've dealt a Critical Hit Recently", statOrder = { 4563 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "15% increased Attack Speed if you've dealt a Critical Hit Recently" }, } }, + ["HandWrapsUniqueBaseDamageOverrideForMaceAttacks1"] = { affix = "", "Has 9 to 14 Fire damage, +3 to +5 per Boss's Face Broken", statOrder = { 829 }, level = 1, group = "FacebreakerBaseUnarmedDamageOverrideFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1955786041] = { "Has 9 to 14 Fire damage, +3 to +5 per Boss's Face Broken" }, } }, + ["HandWrapsUniqueUnarmedAttackDamagePerXStrength1"] = { affix = "", "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence", statOrder = { 9299 }, level = 1, group = "UnarmedDamageGainedAsFirePerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1411594757] = { "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence" }, } }, + ["HandWrapsUniqueGainArmourEqualToStrength1"] = { affix = "", "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence", statOrder = { 10370 }, level = 1, group = "UnarmedAreaOfEffectPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1284514818] = { "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence" }, } }, + ["HandWrapsDecayInfluenceIgniteMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6339, 6517, 6517.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, + ["HandWrapsDecayInfluenceIgniteMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6339, 6517, 6517.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, + ["HandWrapsDecayInfluenceBleedMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage", statOrder = { 3011 }, level = 1, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage" }, } }, + ["HandWrapsDecayInfluenceBleedMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage", statOrder = { 3011 }, level = 1, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage" }, } }, + ["HandWrapsDecayInfluencePoisonMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 3012 }, level = 1, group = "ExplodeOnKillChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1776945532] = { "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, + ["HandWrapsDecayInfluencePoisonMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 3012 }, level = 1, group = "ExplodeOnKillChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1776945532] = { "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, + ["HandWrapsDecayInfluenceAilmentMagnitude1"] = { type = "Prefix", affix = "Katla's", "+(10-25) to Ailment Threshold", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4261, 4263 }, level = 1, group = "AilmentThresholdAndIncreasedAilmentThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1488650448] = { "+(10-25) to Ailment Threshold" }, [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, + ["HandWrapsDecayInfluenceAilmentMagnitude2"] = { type = "Prefix", affix = "Katla's", "+(26-40) to Ailment Threshold", "(21-35)% increased Elemental Ailment Threshold", statOrder = { 4261, 4263 }, level = 1, group = "AilmentThresholdAndIncreasedAilmentThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1488650448] = { "+(26-40) to Ailment Threshold" }, [3544800472] = { "(21-35)% increased Elemental Ailment Threshold" }, } }, + ["HandWrapsDecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6256, 6256.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, + ["HandWrapsDecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6256, 6256.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, + ["HandWrapsDecayInfluenceAilmentDuration1"] = { type = "Suffix", affix = "of Decay", "(10-22)% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-22)% increased Duration of Ailments on Enemies" }, } }, + ["HandWrapsDecayInfluenceAilmentDuration2"] = { type = "Suffix", affix = "of Decay", "(23-37)% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(23-37)% increased Duration of Ailments on Enemies" }, } }, + ["HandWrapsDecayInfluenceFasterLeech1"] = { type = "Suffix", affix = "of Decay", "(15-35)% increased Damage while Leeching", statOrder = { 2795 }, level = 1, group = "DamageWhileLeeching", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-35)% increased Damage while Leeching" }, } }, + ["HandWrapsDecayInfluenceSlowerLeech1"] = { type = "Suffix", affix = "of Decay", "(15-35)% increased Evasion while Leeching", statOrder = { 6506 }, level = 1, group = "IncreasedEvasionRatingWhileLeeching", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3854334101] = { "(15-35)% increased Evasion while Leeching" }, } }, + ["HandWrapsDecayInfluenceLeechAmount1"] = { type = "Suffix", affix = "of Decay", "Leech (7-12)% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (7-12)% of Physical Attack Damage as Life" }, } }, + ["HandWrapsDecayInfluenceWitherMagnitude1"] = { type = "Suffix", affix = "of Decay", "Damage with Weapons Penetrates (5-9)% Chaos Resistance", statOrder = { 3273 }, level = 1, group = "ChaosPenetrationWithAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2237902788] = { "Damage with Weapons Penetrates (5-9)% Chaos Resistance" }, } }, + ["HandWrapsDecayInfluenceWitherMagnitude2"] = { type = "Suffix", affix = "of Decay", "Damage with Weapons Penetrates (10-17)% Chaos Resistance", statOrder = { 3273 }, level = 1, group = "ChaosPenetrationWithAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2237902788] = { "Damage with Weapons Penetrates (10-17)% Chaos Resistance" }, } }, + ["HandWrapsDecayInfluenceCurseMagnitude1"] = { type = "Suffix", affix = "of Decay", "You can apply an additional Curse", statOrder = { 1909 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["HandWrapsDecayInfluenceCurseMagnitude2"] = { type = "Suffix", affix = "of Decay", "You can apply an additional Curse", "(5-15)% increased Curse Magnitudes", statOrder = { 1909, 2376 }, level = 1, group = "AdditionalCurseOnEnemiesAndCurseMagnitude", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [2353576063] = { "(5-15)% increased Curse Magnitudes" }, } }, + ["HandWrapsDecayInfluenceExposureEffect1"] = { type = "Suffix", affix = "of Decay", "Damage Penetrates (4-8)% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (4-8)% Elemental Resistances" }, } }, + ["HandWrapsDecayInfluenceExposureEffect2"] = { type = "Suffix", affix = "of Decay", "Damage Penetrates (9-15)% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-15)% Elemental Resistances" }, } }, + ["HandWrapsDecayInfluenceIncreasedCurseDuration1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Life per Cursed Enemy Hit with Attacks", statOrder = { 7442 }, level = 1, group = "LifeGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3072303874] = { "Gain (1-10) Life per Cursed Enemy Hit with Attacks" }, } }, + ["HandWrapsDecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Mana per Cursed Enemy Hit with Attacks", statOrder = { 7979 }, level = 1, group = "ManaGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2087996552] = { "Gain (1-10) Mana per Cursed Enemy Hit with Attacks" }, } }, + ["HandWrapsMarksmanInfluenceProjectileDamage1"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire an additional Projectile", statOrder = { 3849 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire an additional Projectile" }, } }, + ["HandWrapsMarksmanInfluenceProjectileDamage2"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire 2 additional Projectiles", statOrder = { 3849 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire 2 additional Projectiles" }, } }, + ["HandWrapsMarksmanInfluenceProjectileDamage3"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire 3 additional Projectiles", statOrder = { 3849 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire 3 additional Projectiles" }, } }, + ["HandWrapsMarksmanInfluenceMarkEffect1"] = { type = "Prefix", affix = "Kolr's", "(32-46)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5830 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(32-46)% increased Critical Hit Chance against Marked Enemies" }, } }, + ["HandWrapsMarksmanInfluenceMarkEffect2"] = { type = "Prefix", affix = "Kolr's", "(47-61)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5830 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(47-61)% increased Critical Hit Chance against Marked Enemies" }, } }, + ["HandWrapsMarksmanInfluenceProjectileSpeed1"] = { type = "Prefix", affix = "Kolr's", "(1-2)% increased Projectile Damage per Power Charge", statOrder = { 2415 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(1-2)% increased Projectile Damage per Power Charge" }, } }, + ["HandWrapsMarksmanInfluenceProjectileSpeed2"] = { type = "Prefix", affix = "Kolr's", "(3-4)% increased Projectile Damage per Power Charge", statOrder = { 2415 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(3-4)% increased Projectile Damage per Power Charge" }, } }, + ["HandWrapsMarksmanInfluenceProjectileSpeed3"] = { type = "Prefix", affix = "Kolr's", "(5-6)% increased Projectile Damage per Power Charge", statOrder = { 2415 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(5-6)% increased Projectile Damage per Power Charge" }, } }, + ["HandWrapsMarksmanInfluenceCriticalHitChance1"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (30-39)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (30-39)% reduced Critical Damage Bonus" }, } }, + ["HandWrapsMarksmanInfluenceCriticalHitChance2"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (40-49)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (40-49)% reduced Critical Damage Bonus" }, } }, + ["HandWrapsMarksmanInfluenceCriticalHitChance3"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (50-60)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (50-60)% reduced Critical Damage Bonus" }, } }, + ["HandWrapsMarksmanInfluenceChanceToPierce1"] = { type = "Prefix", affix = "of the Hunt", "Projectiles Pierce an additional Target", statOrder = { 1549 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["HandWrapsMarksmanInfluenceChanceToPierce2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles Pierce 2 additional Targets", statOrder = { 1549 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (15-20)% chance to Shock", statOrder = { 2476 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (15-20)% chance to Shock" }, } }, + ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (21-25)% chance to Shock", statOrder = { 2476 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (21-25)% chance to Shock" }, } }, + ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (26-30)% chance to Shock", statOrder = { 2476 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (26-30)% chance to Shock" }, } }, + ["HandWrapsMarksmanInfluenceChainToChainOffTerrain1"] = { type = "Suffix", affix = "of the Hunt", "Attacks Chain an additional time", statOrder = { 3783 }, level = 1, group = "AttacksChainAdditionalTimes", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain an additional time" }, } }, + ["HandWrapsMarksmanInfluenceChainToChainOffTerrain2"] = { type = "Suffix", affix = "of the Hunt", "Attacks Chain 2 additional times", statOrder = { 3783 }, level = 1, group = "AttacksChainAdditionalTimes", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain 2 additional times" }, } }, + ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9556 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9556 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["HandWrapsMarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres", statOrder = { 10612 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres" }, } }, + ["HandWrapsMarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres", statOrder = { 10612 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres" }, } }, + ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed1"] = { type = "Suffix", affix = "of the Hunt", "(10-19)% increased Damage with Hits against Marked Enemy", statOrder = { 5975 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(10-19)% increased Damage with Hits against Marked Enemy" }, } }, + ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed2"] = { type = "Suffix", affix = "of the Hunt", "(20-29)% increased Damage with Hits against Marked Enemy", statOrder = { 5975 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(20-29)% increased Damage with Hits against Marked Enemy" }, } }, + ["HandWrapsMarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (1-5)% increased Damage", statOrder = { 8819 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (1-5)% increased Damage" }, } }, + ["HandWrapsMarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (6-10)% increased Damage", statOrder = { 8819 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (6-10)% increased Damage" }, } }, + ["HandWrapsMarksmanInfluenceProjectileSkills1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-44)% chance to Fork", statOrder = { 9535 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (25-44)% chance to Fork" }, } }, + ["HandWrapsMarksmanInfluenceProjectileSkills2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-65)% chance to Fork", statOrder = { 9535 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (45-65)% chance to Fork" }, } }, + ["HandWrapsAlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5800 }, level = 1, group = "RemnantGrantEffectTwiceChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["HandWrapsAlloyCastSpeedGloves1"] = { type = "Suffix", affix = "of the Stars", "(10-30)% chance to gain a Power Charge when you Stun", statOrder = { 2531 }, level = 1, group = "PowerChargeOnStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "(10-30)% chance to gain a Power Charge when you Stun" }, } }, + ["HandWrapsAlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5814 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, + ["HandWrapsAlloyElementalPenetration1"] = { type = "Suffix", affix = "of the Stars", "+(20-30)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, + ["HandWrapsAlloyAttackAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4491 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "1% increased Area of Effect for Attacks per 10 Intelligence" }, } }, + ["HandWrapsEssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(12-23)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6112 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3471443885] = { "(12-23)% of Damage taken from Deflected Hits Recouped as Life" }, } }, + ["HandWrapsEssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "Charms gain (0.13-0.27) charges per Second", statOrder = { 6885 }, level = 1, group = "CharmChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.13-0.27) charges per Second" }, } }, + ["HandWrapsEssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "Life Flasks gain (0.13-0.27) charges per Second", "Mana Flasks gain (0.13-0.27) charges per Second", statOrder = { 6888, 6889 }, level = 1, group = "GenerateLifeAndManaFlasksChargesPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.13-0.27) charges per Second" }, [2200293569] = { "Mana Flasks gain (0.13-0.27) charges per Second" }, } }, + ["HandWrapsUniqueMutatedVaalMaximumManaIncreasePercent"] = { type = "Prefix", affix = "", "+(36-42) to maximum Mana", "(15-35)% increased Attack Damage", statOrder = { 892, 1156 }, level = 1, group = "AttackDamageAndBaseMaximumMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "damage", "attack" }, tradeHashes = { [1050105434] = { "+(36-42) to maximum Mana" }, [2843214518] = { "(15-35)% increased Attack Damage" }, } }, + ["HandWrapsUniqueMutatedVaalManaLeechPermyriad"] = { type = "Prefix", affix = "", "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9679 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence" }, } }, + ["HandWrapsUniqueMutatedVaalEnergyOnFullMana"] = { type = "Prefix", affix = "", "(25-45)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(25-45)% of Damage taken Recouped as Mana" }, } }, + ["HandWrapsUniqueMutatedVaalManaCostEfficiency"] = { type = "Prefix", affix = "", "(15-40)% reduced Mana Cost of Attacks", statOrder = { 4535 }, level = 1, group = "ReducedAttackManaCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(15-40)% reduced Mana Cost of Attacks" }, } }, + ["HandWrapsUniqueMutatedVaalSkillCostEfficiency"] = { type = "Prefix", affix = "", "Non-Channelling Skills Cost -(8-3) Mana", statOrder = { 9901 }, level = 1, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [407482587] = { "Non-Channelling Skills Cost -(8-3) Mana" }, } }, + ["HandWrapsUniqueMutatedVaalSpellLifeCostPercent"] = { type = "Prefix", affix = "", "Attacks have added Physical damage equal to (1-3)% of maximum Life", statOrder = { 4461 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to (1-3)% of maximum Life" }, } }, + ["HandWrapsUniqueMutatedVaalArcaneSurgeEffect"] = { type = "Prefix", affix = "", "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7441 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsUniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { type = "Prefix", affix = "", "(20-30)% increased Attack Damage while on Low Life", statOrder = { 4527 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4246007234] = { "(20-30)% increased Attack Damage while on Low Life" }, } }, + ["HandWrapsUniqueMutatedVaalGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "", "Dazes on Hit", statOrder = { 4666 }, level = 1, group = "DazeBuildup", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3146310524] = { "Dazes on Hit" }, } }, + ["HandWrapsUniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { type = "Suffix", affix = "", "(10-60)% reduced Poison Duration on you", statOrder = { 1067 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(10-60)% reduced Poison Duration on you" }, } }, + ["HandWrapsUniqueMutatedVaalGlobalChaosGemLevel"] = { type = "Suffix", affix = "", "Attacks have added Chaos damage equal to (1-3)% of maximum Life", statOrder = { 4460 }, level = 1, group = "ChaosDamageMaximumLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1141563002] = { "Attacks have added Chaos damage equal to (1-3)% of maximum Life" }, } }, + ["HandWrapsUniqueMutatedVaalPoisonEffect"] = { type = "Suffix", affix = "", "Critical Hits Poison the enemy", statOrder = { 9493 }, level = 1, group = "PoisonOnCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, + ["HandWrapsUniqueMutatedVaalIncreasedLifePercent"] = { type = "Suffix", affix = "", "+(205-221) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(205-221) to maximum Life" }, } }, + ["HandWrapsUniqueMutatedVaalAddedMaximumEnergyShield"] = { type = "Suffix", affix = "", "(7-16)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-16)% increased maximum Energy Shield" }, } }, + ["HandWrapsUniqueMutatedVaalLifeLeechAmount"] = { type = "Suffix", affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2928 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [4224337800] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, + ["HandWrapsUniqueMutatedVaalChanceToBleed"] = { type = "Suffix", affix = "", "Attacks have (35-80)% chance to cause Bleeding", statOrder = { 2270 }, level = 1, group = "ChanceToBleed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (35-80)% chance to cause Bleeding" }, } }, + ["HandWrapsUniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { type = "Suffix", affix = "", "+(12-23)% to Chaos Resistance per Poison on you", "Poison you inflict is Reflected to you", statOrder = { 5587, 9494 }, level = 1, group = "ChaosResistancePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "poison", "chaos", "resistance", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [175362265] = { "+(12-23)% to Chaos Resistance per Poison on you" }, } }, + ["HandWrapsUniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { type = "Suffix", affix = "", "(20-35)% increased Damage for each Poison on you up to a maximum of 75%", "Poison you inflict is Reflected to you", statOrder = { 6004, 9494 }, level = 1, group = "DamageIncreasePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1034580601] = { "(20-35)% increased Damage for each Poison on you up to a maximum of 75%" }, [2374357674] = { "Poison you inflict is Reflected to you" }, } }, + ["HandWrapsUniqueMutatedVaalReducedPoisonDuration"] = { type = "Suffix", affix = "", "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%", "Poison you inflict is Reflected to you", statOrder = { 9161, 9494 }, level = 1, group = "MovementSpeedPerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "speed", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [1360723495] = { "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, + ["HandWrapsUniqueMutatedVaalIgniteEffect1"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Ignited", statOrder = { 1602 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(20-50)% chance to Avoid being Ignited" }, } }, + ["HandWrapsUniqueMutatedVaalChillEffect"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Chilled", statOrder = { 1600 }, level = 1, group = "AvoidChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(20-50)% chance to Avoid being Chilled" }, } }, + ["HandWrapsUniqueMutatedVaalFreezeDuration"] = { type = "Suffix", affix = "", "Regenerate (5-15)% of maximum Life per second while Frozen", statOrder = { 3419 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2656696317] = { "Regenerate (5-15)% of maximum Life per second while Frozen" }, } }, + ["HandWrapsUniqueMutatedVaalShockEffect"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Shocked", statOrder = { 1604 }, level = 1, group = "AvoidShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(20-50)% chance to Avoid being Shocked" }, } }, + ["HandWrapsUniqueMutatedVaalCurseEffectiveness"] = { type = "Suffix", affix = "", "(20-30)% reduced effect of Curses on you", statOrder = { 1911 }, level = 1, group = "ReducedCurseEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(20-30)% reduced effect of Curses on you" }, } }, + ["HandWrapsUniqueMutatedVaalDamagePerCurse"] = { type = "Suffix", affix = "", "(10-20)% increased Damage with Hits per Curse on Enemy", statOrder = { 2749 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(10-20)% increased Damage with Hits per Curse on Enemy" }, } }, + ["HandWrapsUniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { type = "Suffix", affix = "", "Gain (1-3) Rage on Melee Hit", statOrder = { 6869 }, level = 1, group = "RageOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain (1-3) Rage on Melee Hit" }, } }, + ["HandWrapsUniqueMutatedVaalMaxRageFromRageOnHitChance"] = { type = "Suffix", affix = "", "Gain 1% of Physical Damage as Extra Fire Damage per Rage", statOrder = { 9292 }, level = 1, group = "PhysicalAddedAsFirePerRage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1336175820] = { "Gain 1% of Physical Damage as Extra Fire Damage per Rage" }, } }, + ["HandWrapsUniqueMutatedVaalIncreasedAttackSpeed"] = { type = "Suffix", affix = "", "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana", statOrder = { 4547 }, level = 1, group = "AttackLightningDamageMaximumMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2778228111] = { "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana" }, } }, + ["HandWrapsImplicitLocalBaseEvasionAndEnergyShieldPerLevel"] = { affix = "", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "HandWrapsImplicitLocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsImplicitLocalBaseEvasionEnergyShieldAndWardPerLevel"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", "Has +1 to maximum Runic Ward per player level", statOrder = { 842, 844, 847 }, level = 1, group = "HandWrapsImplicitLocalBaseEvasionEnergyShieldAndWardPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [298264758] = { "Has +1 to maximum Runic Ward per player level" }, [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, +} \ No newline at end of file diff --git a/src/Data/ModIncursionLimb.lua b/src/Data/ModIncursionLimb.lua index a2fc2ee5c3..ea3e59f634 100644 --- a/src/Data/ModIncursionLimb.lua +++ b/src/Data/ModIncursionLimb.lua @@ -3,15 +3,15 @@ return { ["IncursionLeg1"] = { affix = "", "(20-30)% increased Evasion Rating", statOrder = { 884 }, level = 0, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(20-30)% increased Evasion Rating" }, } }, - ["IncursionLeg2"] = { affix = "", "(6-10)% increased Movement Speed while Sprinting", statOrder = { 10069 }, level = 0, group = "MovementVelocityWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(6-10)% increased Movement Speed while Sprinting" }, } }, + ["IncursionLeg2"] = { affix = "", "(6-10)% increased Movement Speed while Sprinting", statOrder = { 10060 }, level = 0, group = "MovementVelocityWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(6-10)% increased Movement Speed while Sprinting" }, } }, ["IncursionLeg3"] = { affix = "", "(15-25)% increased Stun Threshold", statOrder = { 2983 }, level = 0, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(15-25)% increased Stun Threshold" }, } }, - ["IncursionLeg4"] = { affix = "", "(5-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9154 }, level = 0, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["IncursionLeg5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 8021 }, level = 0, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, + ["IncursionLeg4"] = { affix = "", "(5-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9145 }, level = 0, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["IncursionLeg5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 8017 }, level = 0, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, ["IncursionLeg6"] = { affix = "", "(6-10)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 0, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(6-10)% of Damage taken Recouped as Life" }, } }, ["IncursionArm1"] = { affix = "", "(8-12)% increased Block chance", statOrder = { 1133 }, level = 0, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(8-12)% increased Block chance" }, } }, ["IncursionArm2"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 985 }, level = 0, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-10)% increased Attack Speed" }, } }, ["IncursionArm3"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 987 }, level = 0, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, ["IncursionArm4"] = { affix = "", "(12-16)% increased Curse Magnitudes", statOrder = { 2376 }, level = 0, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(12-16)% increased Curse Magnitudes" }, } }, - ["IncursionArm5"] = { affix = "", "(6-10)% increased Deflection Rating", statOrder = { 6119 }, level = 0, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3040571529] = { "(6-10)% increased Deflection Rating" }, } }, + ["IncursionArm5"] = { affix = "", "(6-10)% increased Deflection Rating", statOrder = { 6115 }, level = 0, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3040571529] = { "(6-10)% increased Deflection Rating" }, } }, ["IncursionArm6"] = { affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1069 }, level = 0, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, } \ No newline at end of file diff --git a/src/Data/ModItem.lua b/src/Data/ModItem.lua index 304cfdfe17..9c2ab8e371 100644 --- a/src/Data/ModItem.lua +++ b/src/Data/ModItem.lua @@ -453,13 +453,13 @@ return { ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 836 }, level = 46, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 836 }, level = 65, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 836 }, level = 82, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "35% increased Movement Speed" }, } }, - ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "(1-2) to (3-4) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(1-2) to (3-4) Physical Thorns damage" }, } }, - ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "(5-7) to (7-10) Physical Thorns damage", statOrder = { 10261 }, level = 10, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(5-7) to (7-10) Physical Thorns damage" }, } }, - ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "(11-16) to (17-23) Physical Thorns damage", statOrder = { 10261 }, level = 19, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(11-16) to (17-23) Physical Thorns damage" }, } }, - ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Pointed", "(24-35) to (36-53) Physical Thorns damage", statOrder = { 10261 }, level = 38, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (36-53) Physical Thorns damage" }, } }, - ["AttackerTakesDamage5"] = { type = "Prefix", affix = "Spiked", "(40-60) to (61-92) Physical Thorns damage", statOrder = { 10261 }, level = 48, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(40-60) to (61-92) Physical Thorns damage" }, } }, - ["AttackerTakesDamage6"] = { type = "Prefix", affix = "Edged", "(64-97) to (98-145) Physical Thorns damage", statOrder = { 10261 }, level = 63, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(64-97) to (98-145) Physical Thorns damage" }, } }, - ["AttackerTakesDamage7"] = { type = "Prefix", affix = "Jagged", "(101-151) to (152-220) Physical Thorns damage", statOrder = { 10261 }, level = 74, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(101-151) to (152-220) Physical Thorns damage" }, } }, + ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "(1-2) to (3-4) Physical Thorns damage", statOrder = { 10252 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(1-2) to (3-4) Physical Thorns damage" }, } }, + ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "(5-7) to (7-10) Physical Thorns damage", statOrder = { 10252 }, level = 10, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(5-7) to (7-10) Physical Thorns damage" }, } }, + ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "(11-16) to (17-23) Physical Thorns damage", statOrder = { 10252 }, level = 19, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(11-16) to (17-23) Physical Thorns damage" }, } }, + ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Pointed", "(24-35) to (36-53) Physical Thorns damage", statOrder = { 10252 }, level = 38, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (36-53) Physical Thorns damage" }, } }, + ["AttackerTakesDamage5"] = { type = "Prefix", affix = "Spiked", "(40-60) to (61-92) Physical Thorns damage", statOrder = { 10252 }, level = 48, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(40-60) to (61-92) Physical Thorns damage" }, } }, + ["AttackerTakesDamage6"] = { type = "Prefix", affix = "Edged", "(64-97) to (98-145) Physical Thorns damage", statOrder = { 10252 }, level = 63, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(64-97) to (98-145) Physical Thorns damage" }, } }, + ["AttackerTakesDamage7"] = { type = "Prefix", affix = "Jagged", "(101-151) to (152-220) Physical Thorns damage", statOrder = { 10252 }, level = 74, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(101-151) to (152-220) Physical Thorns damage" }, } }, ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-2) to 3 Physical Damage to Attacks" }, } }, ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-6) Physical Damage to Attacks", statOrder = { 858 }, level = 8, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (4-6) Physical Damage to Attacks" }, } }, ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (2-4) to (5-8) Physical Damage to Attacks", statOrder = { 858 }, level = 16, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-4) to (5-8) Physical Damage to Attacks" }, } }, @@ -1148,11 +1148,11 @@ return { ["LocalIncreasedSpiritAndMana5"] = { type = "Prefix", affix = "Envoy's", "(27-30)% increased Spirit", "+(34-37) to maximum Mana", statOrder = { 857, 892 }, level = 48, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [3984865854] = { "(27-30)% increased Spirit" }, } }, ["LocalIncreasedSpiritAndMana6"] = { type = "Prefix", affix = "Diplomat's", "(31-34)% increased Spirit", "+(38-41) to maximum Mana", statOrder = { 857, 892 }, level = 58, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [3984865854] = { "(31-34)% increased Spirit" }, } }, ["LocalIncreasedSpiritAndMana7"] = { type = "Prefix", affix = "Chancellor's", "(35-38)% increased Spirit", "+(42-45) to maximum Mana", statOrder = { 857, 892 }, level = 70, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [3984865854] = { "(35-38)% increased Spirit" }, } }, - ["ReducedBleedDuration1"] = { type = "Suffix", affix = "of Sealing", "(36-40)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 21, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(36-40)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration2"] = { type = "Suffix", affix = "of Alleviation", "(41-45)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 37, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(41-45)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration3"] = { type = "Suffix", affix = "of Allaying", "(46-50)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 50, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(46-50)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration4"] = { type = "Suffix", affix = "of Assuaging", "(51-55)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 64, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(51-55)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration5"] = { type = "Suffix", affix = "of Staunching", "(56-60)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 76, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(56-60)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration1"] = { type = "Suffix", affix = "of Sealing", "(36-40)% reduced Duration of Bleeding on You", statOrder = { 9795 }, level = 21, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(36-40)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration2"] = { type = "Suffix", affix = "of Alleviation", "(41-45)% reduced Duration of Bleeding on You", statOrder = { 9795 }, level = 37, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(41-45)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration3"] = { type = "Suffix", affix = "of Allaying", "(46-50)% reduced Duration of Bleeding on You", statOrder = { 9795 }, level = 50, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(46-50)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration4"] = { type = "Suffix", affix = "of Assuaging", "(51-55)% reduced Duration of Bleeding on You", statOrder = { 9795 }, level = 64, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(51-55)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration5"] = { type = "Suffix", affix = "of Staunching", "(56-60)% reduced Duration of Bleeding on You", statOrder = { 9795 }, level = 76, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(56-60)% reduced Duration of Bleeding on You" }, } }, ["ReducedPoisonDuration1"] = { type = "Suffix", affix = "of the Antitoxin", "(36-40)% reduced Poison Duration on you", statOrder = { 1067 }, level = 21, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(36-40)% reduced Poison Duration on you" }, } }, ["ReducedPoisonDuration2"] = { type = "Suffix", affix = "of the Remedy", "(41-45)% reduced Poison Duration on you", statOrder = { 1067 }, level = 37, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(41-45)% reduced Poison Duration on you" }, } }, ["ReducedPoisonDuration3"] = { type = "Suffix", affix = "of the Cure", "(46-50)% reduced Poison Duration on you", statOrder = { 1067 }, level = 50, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(46-50)% reduced Poison Duration on you" }, } }, @@ -1233,12 +1233,12 @@ return { ["ArrowPierceChance5"] = { type = "Suffix", affix = "of Penetrating", "(24-26)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 77, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(24-26)% chance to Pierce an Enemy" }, } }, ["AdditionalArrow1"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 990 }, level = 55, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, ["AdditionalArrow2"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 990 }, level = 82, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["AdditionalArrowChance1"] = { type = "Suffix", affix = "of Surplus", "+(25-50)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-50)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance2"] = { type = "Suffix", affix = "of Splintering", "+(75-100)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 55, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(75-100)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance3"] = { type = "Suffix", affix = "of Shards", "+(125-150)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 66, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(125-150)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance4"] = { type = "Suffix", affix = "of Many", "+(175-200)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 82, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(175-200)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChanceQuiver1"] = { type = "Suffix", affix = "of Surplus", "+(25-40)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-40)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChanceQuiver2"] = { type = "Suffix", affix = "of Splintering", "+(41-60)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 80, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(41-60)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance1"] = { type = "Suffix", affix = "of Surplus", "+(25-50)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-50)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance2"] = { type = "Suffix", affix = "of Splintering", "+(75-100)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 55, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(75-100)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance3"] = { type = "Suffix", affix = "of Shards", "+(125-150)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 66, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(125-150)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance4"] = { type = "Suffix", affix = "of Many", "+(175-200)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 82, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(175-200)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChanceQuiver1"] = { type = "Suffix", affix = "of Surplus", "+(25-40)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-40)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChanceQuiver2"] = { type = "Suffix", affix = "of Splintering", "+(41-60)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 80, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(41-60)% Surpassing chance to fire an additional Arrow" }, } }, ["AdditionalAmmo1"] = { type = "Suffix", affix = "of Shelling", "Loads an additional bolt", statOrder = { 988 }, level = 55, group = "AdditionalAmmo", weightKey = { "cannon", "crossbow", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, ["AdditionalAmmo2"] = { type = "Suffix", affix = "of Bursting", "Loads 2 additional bolts", statOrder = { 988 }, level = 82, group = "AdditionalAmmo", weightKey = { "cannon", "crossbow", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } }, @@ -1258,30 +1258,30 @@ return { ["BeltIncreasedCharmDuration3"] = { type = "Prefix", affix = "Progressive", "(16-21)% increased Charm Effect Duration", statOrder = { 900 }, level = 46, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(16-21)% increased Charm Effect Duration" }, } }, ["BeltIncreasedCharmDuration4"] = { type = "Prefix", affix = "Innovative", "(22-27)% increased Charm Effect Duration", statOrder = { 900 }, level = 60, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(22-27)% increased Charm Effect Duration" }, } }, ["BeltIncreasedCharmDuration5"] = { type = "Prefix", affix = "Revolutionary", "(28-33)% increased Charm Effect Duration", statOrder = { 900 }, level = 75, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(28-33)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 6640 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 6640 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(11-16)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 6640 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(17-22)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 6640 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(23-28)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 6640 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(29-34)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 6640 }, level = 81, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(35-40)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 6636 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 6636 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(11-16)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 6636 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(17-22)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 6636 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(23-28)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 6636 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(29-34)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 6636 }, level = 81, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(35-40)% increased Flask Charges gained" }, } }, ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(8-10)% reduced Flask Charges used", statOrder = { 1049 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(8-10)% reduced Flask Charges used" }, } }, ["BeltReducedFlaskChargesUsed2"] = { type = "Suffix", affix = "of Imbibing", "(11-13)% reduced Flask Charges used", statOrder = { 1049 }, level = 18, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(11-13)% reduced Flask Charges used" }, } }, ["BeltReducedFlaskChargesUsed3"] = { type = "Suffix", affix = "of Relishing", "(14-16)% reduced Flask Charges used", statOrder = { 1049 }, level = 33, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(14-16)% reduced Flask Charges used" }, } }, ["BeltReducedFlaskChargesUsed4"] = { type = "Suffix", affix = "of Savouring", "(17-19)% reduced Flask Charges used", statOrder = { 1049 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(17-19)% reduced Flask Charges used" }, } }, ["BeltReducedFlaskChargesUsed5"] = { type = "Suffix", affix = "of Reveling", "(20-22)% reduced Flask Charges used", statOrder = { 1049 }, level = 72, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(20-22)% reduced Flask Charges used" }, } }, ["BeltReducedFlaskChargesUsed6"] = { type = "Suffix", affix = "of Nourishing", "(23-25)% reduced Flask Charges used", statOrder = { 1049 }, level = 81, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(23-25)% reduced Flask Charges used" }, } }, - ["BeltIncreasedCharmChargesGained1"] = { type = "Suffix", affix = "of Plenty", "(5-10)% increased Charm Charges gained", statOrder = { 5605 }, level = 2, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-10)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained2"] = { type = "Suffix", affix = "of Surplus", "(11-16)% increased Charm Charges gained", statOrder = { 5605 }, level = 16, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(11-16)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained3"] = { type = "Suffix", affix = "of Fertility", "(17-22)% increased Charm Charges gained", statOrder = { 5605 }, level = 32, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(17-22)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained4"] = { type = "Suffix", affix = "of Bounty", "(23-28)% increased Charm Charges gained", statOrder = { 5605 }, level = 48, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(23-28)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained5"] = { type = "Suffix", affix = "of the Harvest", "(29-34)% increased Charm Charges gained", statOrder = { 5605 }, level = 70, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(29-34)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained6"] = { type = "Suffix", affix = "of Abundance", "(35-40)% increased Charm Charges gained", statOrder = { 5605 }, level = 81, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(35-40)% increased Charm Charges gained" }, } }, - ["BeltReducedCharmChargesUsed1"] = { type = "Suffix", affix = "of Austerity", "(8-10)% reduced Charm Charges used", statOrder = { 5606 }, level = 3, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(8-10)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed2"] = { type = "Suffix", affix = "of Frugality", "(11-13)% reduced Charm Charges used", statOrder = { 5606 }, level = 18, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(11-13)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed3"] = { type = "Suffix", affix = "of Temperance", "(14-16)% reduced Charm Charges used", statOrder = { 5606 }, level = 33, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(14-16)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed4"] = { type = "Suffix", affix = "of Restraint", "(17-19)% reduced Charm Charges used", statOrder = { 5606 }, level = 50, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(17-19)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed5"] = { type = "Suffix", affix = "of Economy", "(20-22)% reduced Charm Charges used", statOrder = { 5606 }, level = 72, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(20-22)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed6"] = { type = "Suffix", affix = "of Scarcity", "(23-25)% reduced Charm Charges used", statOrder = { 5606 }, level = 81, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(23-25)% reduced Charm Charges used" }, } }, + ["BeltIncreasedCharmChargesGained1"] = { type = "Suffix", affix = "of Plenty", "(5-10)% increased Charm Charges gained", statOrder = { 5601 }, level = 2, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-10)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained2"] = { type = "Suffix", affix = "of Surplus", "(11-16)% increased Charm Charges gained", statOrder = { 5601 }, level = 16, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(11-16)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained3"] = { type = "Suffix", affix = "of Fertility", "(17-22)% increased Charm Charges gained", statOrder = { 5601 }, level = 32, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(17-22)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained4"] = { type = "Suffix", affix = "of Bounty", "(23-28)% increased Charm Charges gained", statOrder = { 5601 }, level = 48, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(23-28)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained5"] = { type = "Suffix", affix = "of the Harvest", "(29-34)% increased Charm Charges gained", statOrder = { 5601 }, level = 70, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(29-34)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained6"] = { type = "Suffix", affix = "of Abundance", "(35-40)% increased Charm Charges gained", statOrder = { 5601 }, level = 81, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(35-40)% increased Charm Charges gained" }, } }, + ["BeltReducedCharmChargesUsed1"] = { type = "Suffix", affix = "of Austerity", "(8-10)% reduced Charm Charges used", statOrder = { 5602 }, level = 3, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(8-10)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed2"] = { type = "Suffix", affix = "of Frugality", "(11-13)% reduced Charm Charges used", statOrder = { 5602 }, level = 18, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(11-13)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed3"] = { type = "Suffix", affix = "of Temperance", "(14-16)% reduced Charm Charges used", statOrder = { 5602 }, level = 33, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(14-16)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed4"] = { type = "Suffix", affix = "of Restraint", "(17-19)% reduced Charm Charges used", statOrder = { 5602 }, level = 50, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(17-19)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed5"] = { type = "Suffix", affix = "of Economy", "(20-22)% reduced Charm Charges used", statOrder = { 5602 }, level = 72, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(20-22)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed6"] = { type = "Suffix", affix = "of Scarcity", "(23-25)% reduced Charm Charges used", statOrder = { 5602 }, level = 81, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(23-25)% reduced Charm Charges used" }, } }, ["AdditionalCharm1"] = { type = "Suffix", affix = "of Symbolism", "+1 Charm Slot", statOrder = { 989 }, level = 23, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+1 Charm Slot" }, } }, ["AdditionalCharm2"] = { type = "Suffix", affix = "of Inscription", "+2 Charm Slots", statOrder = { 989 }, level = 64, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+2 Charm Slots" }, } }, ["IgniteChanceIncrease1"] = { type = "Suffix", affix = "of Ignition", "(51-60)% increased Flammability Magnitude", statOrder = { 1055 }, level = 15, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(51-60)% increased Flammability Magnitude" }, } }, @@ -1420,20 +1420,20 @@ return { ["MinionLife4"] = { type = "Suffix", affix = "of the Headmaster", "Minions have (36-40)% increased maximum Life", statOrder = { 1026 }, level = 48, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (36-40)% increased maximum Life" }, } }, ["MinionLife5"] = { type = "Suffix", affix = "of the Administrator", "Minions have (41-45)% increased maximum Life", statOrder = { 1026 }, level = 64, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-45)% increased maximum Life" }, } }, ["MinionLife6"] = { type = "Suffix", affix = "of the Rector", "Minions have (46-50)% increased maximum Life", statOrder = { 1026 }, level = 80, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (46-50)% increased maximum Life" }, } }, - ["GrenadeSkillAdditionalCooldownUse1"] = { type = "Suffix", affix = "of Stockpiling", "Grenade Skills have +1 Cooldown Use", statOrder = { 6941 }, level = 72, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, - ["GrenadeSkillAdditionalCooldownUse2"] = { type = "Suffix", affix = "of Ordnance", "Grenade Skills have +2 Cooldown Uses", statOrder = { 6941 }, level = 81, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +2 Cooldown Uses" }, } }, - ["GrenadeSkillAdditionalProjectile1"] = { type = "Suffix", affix = "of Blasting", "Grenade Skills Fire an additional Projectile", statOrder = { 6945 }, level = 72, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, - ["GrenadeSkillAdditionalProjectile2"] = { type = "Suffix", affix = "of Bombarding", "Grenade Skills Fire 2 additional Projectiles", statOrder = { 6945 }, level = 81, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire 2 additional Projectiles" }, } }, - ["GrenadeSkillCooldownRecovery1"] = { type = "Suffix", affix = "of Speed", "(4-8)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6942 }, level = 4, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(4-8)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery2"] = { type = "Suffix", affix = "of Brevity", "(9-14)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6942 }, level = 16, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(9-14)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery3"] = { type = "Suffix", affix = "of Rapidity", "(15-21)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6942 }, level = 33, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(15-21)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery4"] = { type = "Suffix", affix = "of Swiftness", "(22-26)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6942 }, level = 46, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(22-26)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery5"] = { type = "Suffix", affix = "of Fleetness", "(27-32)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6942 }, level = 60, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(27-32)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery6"] = { type = "Suffix", affix = "of Alacrity", "(33-40)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6942 }, level = 81, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(33-40)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillAdditionalCooldownUse1"] = { type = "Suffix", affix = "of Stockpiling", "Grenade Skills have +1 Cooldown Use", statOrder = { 6937 }, level = 72, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, + ["GrenadeSkillAdditionalCooldownUse2"] = { type = "Suffix", affix = "of Ordnance", "Grenade Skills have +2 Cooldown Uses", statOrder = { 6937 }, level = 81, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +2 Cooldown Uses" }, } }, + ["GrenadeSkillAdditionalProjectile1"] = { type = "Suffix", affix = "of Blasting", "Grenade Skills Fire an additional Projectile", statOrder = { 6941 }, level = 72, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, + ["GrenadeSkillAdditionalProjectile2"] = { type = "Suffix", affix = "of Bombarding", "Grenade Skills Fire 2 additional Projectiles", statOrder = { 6941 }, level = 81, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire 2 additional Projectiles" }, } }, + ["GrenadeSkillCooldownRecovery1"] = { type = "Suffix", affix = "of Speed", "(4-8)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6938 }, level = 4, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(4-8)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery2"] = { type = "Suffix", affix = "of Brevity", "(9-14)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6938 }, level = 16, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(9-14)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery3"] = { type = "Suffix", affix = "of Rapidity", "(15-21)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6938 }, level = 33, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(15-21)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery4"] = { type = "Suffix", affix = "of Swiftness", "(22-26)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6938 }, level = 46, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(22-26)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery5"] = { type = "Suffix", affix = "of Fleetness", "(27-32)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6938 }, level = 60, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(27-32)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery6"] = { type = "Suffix", affix = "of Alacrity", "(33-40)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6938 }, level = 81, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(33-40)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, ["EssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "60% increased effect of Socketed Augment Items", statOrder = { 178 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2081918629] = { "60% increased effect of Socketed Augment Items" }, } }, - ["EssenceCorruptForTwoEnchantments1"] = { type = "Suffix", affix = "of the Essence", "On Corruption, Item gains two Enchantments", statOrder = { 7703 }, level = 1, group = "CorruptForTwoEnchantments", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4215035940] = { "On Corruption, Item gains two Enchantments" }, } }, - ["EssenceAbyssPrefix"] = { type = "Prefix", affix = "Abyssal", "Bears the Mark of the Abyssal Lord", statOrder = { 6473 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, - ["EssenceAbyssSuffix"] = { type = "Suffix", affix = "of the Abyss", "Bears the Mark of the Abyssal Lord", statOrder = { 6473 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, + ["EssenceCorruptForTwoEnchantments1"] = { type = "Suffix", affix = "of the Essence", "On Corruption, Item gains two Enchantments", statOrder = { 7699 }, level = 1, group = "CorruptForTwoEnchantments", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4215035940] = { "On Corruption, Item gains two Enchantments" }, } }, + ["EssenceAbyssPrefix"] = { type = "Prefix", affix = "Abyssal", "Bears the Mark of the Abyssal Lord", statOrder = { 6469 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, + ["EssenceAbyssSuffix"] = { type = "Suffix", affix = "of the Abyss", "Bears the Mark of the Abyssal Lord", statOrder = { 6469 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, ["EssenceBreach"] = { type = "Prefix", affix = "Breachlord's", "+20% to Maximum Quality", statOrder = { 615 }, level = 1, group = "LocalMaximumQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2039822488] = { "+20% to Maximum Quality" }, } }, ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(8-11)% increased Flask Life Recovery rate" }, } }, ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-15)% increased Flask Life Recovery rate" }, } }, @@ -1670,31 +1670,31 @@ return { ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 410 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1235873320] = { "Socketed Gems deal 30% more Damage while on Low Life" }, } }, ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 3912 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "flask", "damage", "elemental" }, tradeHashes = { [3392890360] = { "Damage Penetrates 5% Elemental Resistances during any Flask Effect" }, } }, ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 3913 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "physical" }, tradeHashes = { [2693266036] = { "5% additional Physical Damage Reduction during any Flask Effect" }, } }, - ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9714 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 40% reduced Reflected Damage" }, } }, + ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9705 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 40% reduced Reflected Damage" }, } }, ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 3915 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "power_charge" }, tradeHashes = { [3945147290] = { "25% chance to gain a Power Charge when you Block" }, } }, ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 3916 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [583277599] = { "Chill Nearby Enemies when you Block" }, } }, ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of maximum Mana when you use a Skill", statOrder = { 3164 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [308309328] = { "10% chance to Recover 10% of maximum Mana when you use a Skill" }, } }, - ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 8835 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335507772] = { "+3 to maximum Fortification" }, } }, - ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5496 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2228892313] = { "(15-25)% chance to Crush on Hit" }, } }, - ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6742 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2989883253] = { "Gain Alchemist's Genius when you use a Flask" }, } }, + ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 8826 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335507772] = { "+3 to maximum Fortification" }, } }, + ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5492 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2228892313] = { "(15-25)% chance to Crush on Hit" }, } }, + ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6738 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2989883253] = { "Gain Alchemist's Genius when you use a Flask" }, } }, ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3293 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "16% chance to gain a Power, Frenzy, or Endurance Charge on kill" }, } }, ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 444 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "aura", "gem" }, tradeHashes = { [223595318] = { "Socketed Non-Curse Aura Gems have 20% increased Aura Effect" }, } }, ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 141 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 564 }, level = 63, group = "FireBurstOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack" }, tradeHashes = { [1621470436] = { "Cast Level 20 Fire Burst on Hit" }, } }, ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 545, 545.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [470688636] = { "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits" }, } }, ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1630 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [280731498] = { "25% increased Area of Effect" }, } }, - ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6823 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3049760680] = { "Gain Onslaught for 3 seconds when Hit" }, } }, + ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6819 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3049760680] = { "Gain Onslaught for 3 seconds when Hit" }, } }, ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2583 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 6 seconds when Hit" }, } }, ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 442 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, tradeHashes = { [3846088475] = { "Socketed Gems deal 30% more Damage over Time" }, } }, ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Curse Magnitudes", statOrder = { 2376 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "5% increased Curse Magnitudes" }, } }, ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Curse Magnitudes", statOrder = { 2376 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Curse Magnitudes" }, } }, ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [712554801] = { "25% increased Effect of your Mark Skills" }, } }, - ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6084 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3322709337] = { "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds" }, } }, - ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9178 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1521863824] = { "12% increased Movement speed while on Burning, Chilled or Shocked ground" }, } }, + ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6080 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3322709337] = { "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds" }, } }, + ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9169 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1521863824] = { "12% increased Movement speed while on Burning, Chilled or Shocked ground" }, } }, ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2288 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2076519255] = { "70% increased Mana Regeneration Rate while Shocked" }, } }, - ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 7991 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover 5% of your maximum Mana when you Block" }, } }, - ["BleedDuration1"] = { type = "Suffix", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4660 }, level = 30, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } }, - ["BleedDuration2"] = { type = "Suffix", affix = "", "(13-18)% increased Bleeding Duration", statOrder = { 4660 }, level = 60, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(13-18)% increased Bleeding Duration" }, } }, + ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 7987 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover 5% of your maximum Mana when you Block" }, } }, + ["BleedDuration1"] = { type = "Suffix", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4657 }, level = 30, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } }, + ["BleedDuration2"] = { type = "Suffix", affix = "", "(13-18)% increased Bleeding Duration", statOrder = { 4657 }, level = 60, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(13-18)% increased Bleeding Duration" }, } }, ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 512 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 508 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } }, ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 531 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, @@ -1718,519 +1718,108 @@ return { ["EssenceDamageasExtraCold2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-33)% of Damage as Extra Cold Damage" }, } }, ["EssenceDamageasExtraLightning1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (15-20)% of Damage as Extra Lightning Damage" }, } }, ["EssenceDamageasExtraLightning2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-33)% of Damage as Extra Lightning Damage" }, } }, - ["EssenceFireRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Fire Damage taken Recouped as Life", statOrder = { 6575 }, level = 72, group = "EssenceFireRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(26-30)% of Fire Damage taken Recouped as Life" }, } }, - ["EssenceColdRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Cold Damage taken Recouped as Life", statOrder = { 5689 }, level = 72, group = "EssenceColdRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(26-30)% of Cold Damage taken Recouped as Life" }, } }, - ["EssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7551 }, level = 72, group = "EssenceLightningRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(26-30)% of Lightning Damage taken Recouped as Life" }, } }, + ["EssenceFireRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 72, group = "EssenceFireRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(26-30)% of Fire Damage taken Recouped as Life" }, } }, + ["EssenceColdRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Cold Damage taken Recouped as Life", statOrder = { 5685 }, level = 72, group = "EssenceColdRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(26-30)% of Cold Damage taken Recouped as Life" }, } }, + ["EssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7547 }, level = 72, group = "EssenceLightningRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(26-30)% of Lightning Damage taken Recouped as Life" }, } }, ["EssencePhysicalDamageTakenAsChaos1"] = { type = "Prefix", affix = "Essences", "(10-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2212 }, level = 72, group = "PhysicalDamageTakenAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(10-15)% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["EssenceAttackSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of all Attack Skills", statOrder = { 967 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+2 to Level of all Attack Skills" }, } }, ["EssenceAttackSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Attack Skills", statOrder = { 967 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+3 to Level of all Attack Skills" }, } }, ["EssenceSpellSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Spell Skills", statOrder = { 950 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, ["EssenceSpellSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+5 to Level of all Spell Skills", statOrder = { 950 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+5 to Level of all Spell Skills" }, } }, - ["EssenceOnslaughtonKill1"] = { type = "Suffix", affix = "of the Essence", "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon", statOrder = { 7639 }, level = 72, group = "EssenceOnslaughtonKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1881230714] = { "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon" }, } }, - ["EssenceManaCostReduction"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-20)% increased Mana Cost Efficiency" }, } }, - ["EssenceManaCostReduction2H"] = { type = "Suffix", affix = "of the Essence", "(28-32)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(28-32)% increased Mana Cost Efficiency" }, } }, + ["EssenceOnslaughtonKill1"] = { type = "Suffix", affix = "of the Essence", "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon", statOrder = { 7635 }, level = 72, group = "EssenceOnslaughtonKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1881230714] = { "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon" }, } }, + ["EssenceManaCostReduction"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Mana Cost Efficiency", statOrder = { 4714 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-20)% increased Mana Cost Efficiency" }, } }, + ["EssenceManaCostReduction2H"] = { type = "Suffix", affix = "of the Essence", "(28-32)% increased Mana Cost Efficiency", statOrder = { 4714 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(28-32)% increased Mana Cost Efficiency" }, } }, ["EssencePercentStrength1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Strength", statOrder = { 999 }, level = 72, group = "PercentageStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(7-10)% increased Strength" }, } }, ["EssencePercentDexterity1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Dexterity", statOrder = { 1000 }, level = 72, group = "PercentageDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(7-10)% increased Dexterity" }, } }, ["EssencePercentIntelligence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Intelligence", statOrder = { 1001 }, level = 72, group = "PercentageIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(7-10)% increased Intelligence" }, } }, ["EssenceReducedCriticalDamageAgainstYou1"] = { type = "Suffix", affix = "of the Essence", "Hits against you have (40-50)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 72, group = "EssenceReducedCriticalDamageAgainstYou", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3855016469] = { "Hits against you have (40-50)% reduced Critical Damage Bonus" }, } }, - ["EssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 72, group = "EssenceGoldDropped", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["EssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6913 }, level = 72, group = "EssenceGoldDropped", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, ["EssenceAuraEffect1"] = { type = "Suffix", affix = "of the Essence", "Aura Skills have (15-20)% increased Magnitudes", statOrder = { 2574 }, level = 72, group = "EssenceAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [315791320] = { "Aura Skills have (15-20)% increased Magnitudes" }, } }, ["GenesisTreeAmuletColdDamageAsPortionOfDamageCrafted"] = { type = "Prefix", affix = "Tul's", "Gain (10-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1675 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [758893621] = { "Gain (10-20)% of Physical Damage as Extra Cold Damage" }, } }, - ["GenesisTreeAmuletAnaemiaOnHitCrafted"] = { type = "Prefix", affix = "Uul-Netol's", "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", statOrder = { 4324, 4324.1 }, level = 1, group = "AnaemiaOnHit", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [971590056] = { "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies" }, } }, - ["GenesisTreeFireSpellBaseCriticalChanceCrafted"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6590 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, - ["GenesisTreeAdditionalMaximumSealsCrafted"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4727 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, - ["GenesisTreeBeltMinionAdditionalProjectileChanceCrafted"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 9019 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, - ["GenesisTreeRingMaximumElementalInfusionCrafted"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8875 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, - ["GenesisTreeBeltSealGainFrequencyCrafted"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9800 }, level = 1, group = "SealGainFrequency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, + ["GenesisTreeAmuletAnaemiaOnHitCrafted"] = { type = "Prefix", affix = "Uul-Netol's", "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", statOrder = { 4321, 4321.1 }, level = 1, group = "AnaemiaOnHit", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [971590056] = { "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies" }, } }, + ["GenesisTreeFireSpellBaseCriticalChanceCrafted"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6586 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, + ["GenesisTreeAdditionalMaximumSealsCrafted"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4723 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, + ["GenesisTreeBeltMinionAdditionalProjectileChanceCrafted"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 9010 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, + ["GenesisTreeRingMaximumElementalInfusionCrafted"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8866 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, + ["GenesisTreeBeltSealGainFrequencyCrafted"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9791 }, level = 1, group = "SealGainFrequency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, ["GenesisTreeRingOfferingEffectCrafted"] = { type = "Prefix", affix = "Sacrificial", "Offering Skills have (16-23)% increased Buff effect", statOrder = { 3719 }, level = 1, group = "OfferingEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "Offering Skills have (16-23)% increased Buff effect" }, } }, - ["GenesisTreeRingTemporaryMinionLimitCrafted"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10247 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, - ["GenesisTreeRingMinionArmourBreakCrafted"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 9000 }, level = 1, group = "MinionArmourBreak", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, - ["GenesisTreeRingMinionAilmentMagnitudeCrafted"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 9012 }, level = 1, group = "MinionDamagingAilments", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, - ["GenesisTreeRingCommandSkillSpeedCrafted"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 9025 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, - ["GenesisTreeRingMinionCooldownRecoveryCrafted"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 9029 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, + ["GenesisTreeRingTemporaryMinionLimitCrafted"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10238 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, + ["GenesisTreeRingMinionArmourBreakCrafted"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 8991 }, level = 1, group = "MinionArmourBreak", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, + ["GenesisTreeRingMinionAilmentMagnitudeCrafted"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 9003 }, level = 1, group = "MinionDamagingAilments", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, + ["GenesisTreeRingCommandSkillSpeedCrafted"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 9016 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, + ["GenesisTreeRingMinionCooldownRecoveryCrafted"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 9020 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, ["GenesisTreeRingSpellDamageAsExtraLightningCrafted"] = { type = "Prefix", affix = "Storm Chaser's", "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", statOrder = { 870 }, level = 1, group = "SpellDamageGainedAsLightning", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [323800555] = { "Gain (8-12)% of Damage as Extra Lightning Damage with Spells" }, } }, ["GenesisTreeRingSpellDamageAsExtraFireCrafted"] = { type = "Prefix", affix = "Fire Breather's", "Gain (8-12)% of Damage as Extra Fire Damage with Spells", statOrder = { 864 }, level = 1, group = "SpellDamageGainedAsFire", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1321054058] = { "Gain (8-12)% of Damage as Extra Fire Damage with Spells" }, } }, ["GenesisTreeRingSpellDamageAsExtraColdCrafted"] = { type = "Prefix", affix = "Tempest Rider's", "Gain (8-12)% of Damage as Extra Cold Damage with Spells", statOrder = { 868 }, level = 1, group = "SpellDamageGainedAsCold", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [825116955] = { "Gain (8-12)% of Damage as Extra Cold Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraChaosCrafted"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9242 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, + ["GenesisTreeRingSpellDamageAsExtraChaosCrafted"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9233 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, ["GenesisTreeRingDamageTakenFromManaBeforeLifeCrafted"] = { type = "Prefix", affix = "Burdensome", "(8-12)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(8-12)% of Damage is taken from Mana before Life" }, } }, - ["GenesisTreeRingExposureEffectCrafted"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6533 }, level = 1, group = "ElementalExposureEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, - ["GenesisTreeRingMaximumInvocationEnergyCrafted"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7385 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, - ["GenesisTreeRingSpellImpaleEffectCrafted"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 10027 }, level = 1, group = "SpellImpaleEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, - ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6561 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7543 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5675 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltArchonEffectCrafted"] = { type = "Prefix", affix = "Unshackling", "(20-39)% increased effect of Archon Buffs on you", statOrder = { 4345 }, level = 1, group = "ArchonEffect", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1180552088] = { "(20-39)% increased effect of Archon Buffs on you" }, } }, - ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6SecondsCrafted"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5565 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, - ["GenesisTreeBeltSpellElementalAilmentMagnitudeCrafted"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 10025 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, - ["GenesisTreeBeltArchonDurationCrafted"] = { type = "Suffix", affix = "of Exertion", "(40-50)% increased Archon Buff duration", statOrder = { 4344 }, level = 1, group = "ArchonDuration", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(40-50)% increased Archon Buff duration" }, } }, - ["GenesisTreeBeltArchonUndeathOnOfferingUseCrafted"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5401 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, - ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15SecondsCrafted"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 9034 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, - ["GenesisTreeBeltMinionsGiganticRevivedRecentlyCrafted"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9096 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, - ["GenesisTreeBeltDamageRemovedFromSpectresCrafted"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6036 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, - ["GenesisTreeBeltMinionReservationEfficiencyCrafted"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9767 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, - ["GenesisTreeBeltMinionMeleeSplashCrafted"] = { type = "Suffix", affix = "of Ravaging", "Minions' Strikes have Melee Splash", statOrder = { 9067 }, level = 1, group = "MinionMeleeSplash", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Minions' Strikes have Melee Splash" }, } }, - ["GenesisTreeBeltMinionDurationCrafted"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4728 }, level = 1, group = "MinionDuration", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, + ["GenesisTreeRingExposureEffectCrafted"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6529 }, level = 1, group = "ElementalExposureEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, + ["GenesisTreeRingMaximumInvocationEnergyCrafted"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7381 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, + ["GenesisTreeRingSpellImpaleEffectCrafted"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 10018 }, level = 1, group = "SpellImpaleEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, + ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6557 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7539 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5671 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltArchonEffectCrafted"] = { type = "Prefix", affix = "Unshackling", "(20-39)% increased effect of Archon Buffs on you", statOrder = { 4342 }, level = 1, group = "ArchonEffect", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1180552088] = { "(20-39)% increased effect of Archon Buffs on you" }, } }, + ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6SecondsCrafted"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5561 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, + ["GenesisTreeBeltSpellElementalAilmentMagnitudeCrafted"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 10016 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, + ["GenesisTreeBeltArchonDurationCrafted"] = { type = "Suffix", affix = "of Exertion", "(40-50)% increased Archon Buff duration", statOrder = { 4341 }, level = 1, group = "ArchonDuration", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(40-50)% increased Archon Buff duration" }, } }, + ["GenesisTreeBeltArchonUndeathOnOfferingUseCrafted"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5397 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, + ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15SecondsCrafted"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 9025 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, + ["GenesisTreeBeltMinionsGiganticRevivedRecentlyCrafted"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9087 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, + ["GenesisTreeBeltDamageRemovedFromSpectresCrafted"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6032 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, + ["GenesisTreeBeltMinionReservationEfficiencyCrafted"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9758 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, + ["GenesisTreeBeltMinionMeleeSplashCrafted"] = { type = "Suffix", affix = "of Ravaging", "Minions' Strikes have Melee Splash", statOrder = { 9058 }, level = 1, group = "MinionMeleeSplash", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Minions' Strikes have Melee Splash" }, } }, + ["GenesisTreeBeltMinionDurationCrafted"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4724 }, level = 1, group = "MinionDuration", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, ["AlloyMaximumRunicWard1"] = { type = "Prefix", affix = "Verisium", "+(37-49) to maximum Runic Ward", statOrder = { 890 }, level = 13, group = "GlobalMaximumRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(37-49) to maximum Runic Ward" }, } }, - ["AlloyRunicWardRechargeRate1"] = { type = "Prefix", affix = "Verisium", "(15-20)% increased Runic Ward Regeneration Rate", statOrder = { 10520 }, level = 13, group = "WardRegenerationRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(15-20)% increased Runic Ward Regeneration Rate" }, } }, + ["AlloyRunicWardRechargeRate1"] = { type = "Prefix", affix = "Verisium", "(15-20)% increased Runic Ward Regeneration Rate", statOrder = { 10510 }, level = 13, group = "WardRegenerationRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(15-20)% increased Runic Ward Regeneration Rate" }, } }, ["AlloyMaximumRunicWardPercent1"] = { type = "Prefix", affix = "Verisium", "(6-10)% increased maximum Runic Ward", statOrder = { 891 }, level = 13, group = "GlobalRunicWardPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [4273473110] = { "(6-10)% increased maximum Runic Ward" }, } }, - ["AlloyRunicWardOnBlock1"] = { type = "Suffix", affix = "of the Stars", "Recover (10-15) Runic Ward when you Block", statOrder = { 9682 }, level = 13, group = "WardOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1568848828] = { "Recover (10-15) Runic Ward when you Block" }, } }, - ["AlloyDamageAsExtraFireWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9251 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, - ["AlloyDamageAsExtraFireTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9251 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, - ["AlloyAttackSpeedIfMissingWardRecently1"] = { type = "Suffix", affix = "of the Stars", "(10-15)% increased Attack Speed while missing Runic Ward", statOrder = { 4558 }, level = 25, group = "AttackSpeedWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [325171970] = { "(10-15)% increased Attack Speed while missing Runic Ward" }, } }, - ["AlloyRecoverRunicWardOnCharmUse1"] = { type = "Prefix", affix = "Verisium", "Recover (32-45) Runic Ward when a Charm is used", statOrder = { 9683 }, level = 25, group = "RecoverRunicWardOnCharmUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [554145967] = { "Recover (32-45) Runic Ward when a Charm is used" }, } }, + ["AlloyRunicWardOnBlock1"] = { type = "Suffix", affix = "of the Stars", "Recover (10-15) Runic Ward when you Block", statOrder = { 9673 }, level = 13, group = "WardOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1568848828] = { "Recover (10-15) Runic Ward when you Block" }, } }, + ["AlloyDamageAsExtraFireWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9242 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, + ["AlloyDamageAsExtraFireTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9242 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, + ["AlloyAttackSpeedIfMissingWardRecently1"] = { type = "Suffix", affix = "of the Stars", "(10-15)% increased Attack Speed while missing Runic Ward", statOrder = { 4555 }, level = 25, group = "AttackSpeedWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [325171970] = { "(10-15)% increased Attack Speed while missing Runic Ward" }, } }, + ["AlloyRecoverRunicWardOnCharmUse1"] = { type = "Prefix", affix = "Verisium", "Recover (32-45) Runic Ward when a Charm is used", statOrder = { 9674 }, level = 25, group = "RecoverRunicWardOnCharmUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [554145967] = { "Recover (32-45) Runic Ward when a Charm is used" }, } }, ["AlloyLocalWardIncreasePercent1"] = { type = "Prefix", affix = "Verisium", "(24-30)% increased Runic Ward", statOrder = { 855 }, level = 25, group = "LocalRunicWardIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [830161081] = { "(24-30)% increased Runic Ward" }, } }, ["AlloyLocalWardIncreasePercent2"] = { type = "Prefix", affix = "Verisium", "(31-40)% increased Runic Ward", statOrder = { 855 }, level = 65, group = "LocalRunicWardIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [830161081] = { "(31-40)% increased Runic Ward" }, } }, ["AlloyMaximumRunicWardWeapon1"] = { type = "Suffix", affix = "of the Stars", "+(51-74) to maximum Runic Ward", statOrder = { 890 }, level = 25, group = "GlobalMaximumRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(51-74) to maximum Runic Ward" }, } }, - ["AlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "Remnants can be collected from (35-50)% further away", statOrder = { 9738 }, level = 25, group = "RemnantPickupRadiusIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (35-50)% further away" }, } }, + ["AlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "Remnants can be collected from (35-50)% further away", statOrder = { 9729 }, level = 25, group = "RemnantPickupRadiusIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (35-50)% further away" }, } }, ["AlloyPresenceAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "(35-50)% increased Presence Area of Effect", statOrder = { 1069 }, level = 25, group = "PresenceRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(35-50)% increased Presence Area of Effect" }, } }, - ["AlloyManaCostEfficiency1"] = { type = "Prefix", affix = "Verisium", "(18-29)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 25, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-29)% increased Mana Cost Efficiency" }, } }, - ["AlloyTemporaryMinionSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "Temporary Minion Skills have +(1-2) to Limit of Minions summoned", statOrder = { 10247 }, level = 25, group = "TemporaryMinionLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +(1-2) to Limit of Minions summoned" }, } }, + ["AlloyManaCostEfficiency1"] = { type = "Prefix", affix = "Verisium", "(18-29)% increased Mana Cost Efficiency", statOrder = { 4714 }, level = 25, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-29)% increased Mana Cost Efficiency" }, } }, + ["AlloyTemporaryMinionSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "Temporary Minion Skills have +(1-2) to Limit of Minions summoned", statOrder = { 10238 }, level = 25, group = "TemporaryMinionLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +(1-2) to Limit of Minions summoned" }, } }, ["AlloyCastSpeedGloves1"] = { type = "Suffix", affix = "of the Stars", "(9-12)% increased Cast Speed", statOrder = { 987 }, level = 45, group = "IncreasedCastSpeedNoAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, ["AlloyAttackSpeedRing1"] = { type = "Suffix", affix = "of the Stars", "(7-9)% increased Attack Speed", statOrder = { 985 }, level = 45, group = "IncreasedAttackSpeedNoCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-9)% increased Attack Speed" }, } }, - ["AlloyFlaskChargesPerSecond1"] = { type = "Suffix", affix = "of the Stars", "Flasks gain (0.75-1) charges per Second", statOrder = { 6888 }, level = 45, group = "AllFlaskChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain (0.75-1) charges per Second" }, } }, + ["AlloyFlaskChargesPerSecond1"] = { type = "Suffix", affix = "of the Stars", "Flasks gain (0.75-1) charges per Second", statOrder = { 6884 }, level = 45, group = "AllFlaskChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain (0.75-1) charges per Second" }, } }, ["AlloyTotemPlacementSpeed1"] = { type = "Suffix", affix = "of the Stars", "(30-49)% increased Totem Placement speed", statOrder = { 2360 }, level = 45, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(30-49)% increased Totem Placement speed" }, } }, - ["AlloyReducedSlowPotency1"] = { type = "Suffix", affix = "of the Stars", "(15-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 45, group = "SlowPotency", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [924253255] = { "(15-30)% reduced Slowing Potency of Debuffs on You" }, } }, + ["AlloyReducedSlowPotency1"] = { type = "Suffix", affix = "of the Stars", "(15-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4743 }, level = 45, group = "SlowPotency", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [924253255] = { "(15-30)% reduced Slowing Potency of Debuffs on You" }, } }, ["AlloySkillEffectDuration1"] = { type = "Suffix", affix = "of the Stars", "(15-19)% increased Skill Effect Duration", statOrder = { 1645 }, level = 45, group = "SkillEffectDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-19)% increased Skill Effect Duration" }, } }, - ["AlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(20-25)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6065 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-25)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["AlloyArchonDuration1"] = { type = "Suffix", affix = "of the Stars", "(35-42)% increased Archon Buff duration", statOrder = { 4344 }, level = 45, group = "ArchonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(35-42)% increased Archon Buff duration" }, } }, + ["AlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(20-25)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6061 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-25)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["AlloyArchonDuration1"] = { type = "Suffix", affix = "of the Stars", "(35-42)% increased Archon Buff duration", statOrder = { 4341 }, level = 45, group = "ArchonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(35-42)% increased Archon Buff duration" }, } }, ["AlloyElementalPenetration1"] = { type = "Prefix", affix = "of the Stars", "Damage Penetrates (9-15)% Elemental Resistances", statOrder = { 2723 }, level = 45, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-15)% Elemental Resistances" }, } }, - ["AlloyAilmentMagnitude1"] = { type = "Suffix", affix = "of the Stars", "(20-30)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 45, group = "AilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(20-30)% increased Magnitude of Ailments you inflict" }, } }, - ["AlloyExposureEffect1"] = { type = "Suffix", affix = "of the Stars", "(40-50)% increased Exposure Effect", statOrder = { 6533 }, level = 45, group = "ElementalExposureEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(40-50)% increased Exposure Effect" }, } }, - ["AlloyMinionDamagingAilmentMagnitude1"] = { type = "Suffix", affix = "of the Stars", "Minions have (40-49)% increased Magnitude of Damaging Ailments", statOrder = { 9012 }, level = 45, group = "MinionDamagingAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (40-49)% increased Magnitude of Damaging Ailments" }, } }, - ["AlloySpellAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "Spell Skills have (10-15)% increased Area of Effect", statOrder = { 9991 }, level = 45, group = "SpellAreaOfEffectPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-15)% increased Area of Effect" }, } }, - ["AlloyAttackAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "(10-15)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 45, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(10-15)% increased Area of Effect for Attacks" }, } }, + ["AlloyAilmentMagnitude1"] = { type = "Suffix", affix = "of the Stars", "(20-30)% increased Magnitude of Ailments you inflict", statOrder = { 4256 }, level = 45, group = "AilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(20-30)% increased Magnitude of Ailments you inflict" }, } }, + ["AlloyExposureEffect1"] = { type = "Suffix", affix = "of the Stars", "(40-50)% increased Exposure Effect", statOrder = { 6529 }, level = 45, group = "ElementalExposureEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(40-50)% increased Exposure Effect" }, } }, + ["AlloyMinionDamagingAilmentMagnitude1"] = { type = "Suffix", affix = "of the Stars", "Minions have (40-49)% increased Magnitude of Damaging Ailments", statOrder = { 9003 }, level = 45, group = "MinionDamagingAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (40-49)% increased Magnitude of Damaging Ailments" }, } }, + ["AlloySpellAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "Spell Skills have (10-15)% increased Area of Effect", statOrder = { 9982 }, level = 45, group = "SpellAreaOfEffectPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-15)% increased Area of Effect" }, } }, + ["AlloyAttackAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "(10-15)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 45, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(10-15)% increased Area of Effect for Attacks" }, } }, ["AlloySpiritOnBoots1"] = { type = "Suffix", affix = "of the Stars", "+(10-15) to Spirit", statOrder = { 896 }, level = 45, group = "BaseSpirit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(10-15) to Spirit" }, } }, - ["AlloyChanceToChain1"] = { type = "Suffix", affix = "of the Stars", "(25-35)% chance to Chain an additional time", statOrder = { 7603 }, level = 45, group = "LocalAdditionalChainChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1028592286] = { "(25-35)% chance to Chain an additional time" }, } }, - ["AlloyMaximumElementalInfusions1"] = { type = "Suffix", affix = "of the Stars", "+1 to maximum number of Elemental Infusions", statOrder = { 8875 }, level = 45, group = "MaximumElementalInfusion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, + ["AlloyChanceToChain1"] = { type = "Suffix", affix = "of the Stars", "(25-35)% chance to Chain an additional time", statOrder = { 7599 }, level = 45, group = "LocalAdditionalChainChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1028592286] = { "(25-35)% chance to Chain an additional time" }, } }, + ["AlloyMaximumElementalInfusions1"] = { type = "Suffix", affix = "of the Stars", "+1 to maximum number of Elemental Infusions", statOrder = { 8866 }, level = 45, group = "MaximumElementalInfusion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, ["AlloyEffectOfSocketedAugments1"] = { type = "Suffix", affix = "of the Stars", "(20-30)% increased effect of Socketed Augment Items", statOrder = { 178 }, level = 65, group = "LocalSocketItemsEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2081918629] = { "(20-30)% increased effect of Socketed Augment Items" }, } }, ["AlloyEffectOfResistanceMods1"] = { type = "Prefix", affix = "Verisium", "(20-30)% increased Explicit Resistance Modifier magnitudes", statOrder = { 45 }, level = 65, group = "ArmourEnchantmentHeistResistanceModifierEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1972391381] = { "(20-30)% increased Explicit Resistance Modifier magnitudes" }, } }, ["AlloySpellLevelManaHybrid1"] = { type = "Prefix", affix = "Verisium", "+(142-188) to maximum Mana", "+1 to Level of all Spell Skills", statOrder = { 892, 950 }, level = 65, group = "ManaSpellLevelHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(142-188) to maximum Mana" }, [124131830] = { "+1 to Level of all Spell Skills" }, } }, ["AlloyAccuracyAttackSpeedHybrid1"] = { type = "Prefix", affix = "Verisium", "+(327-427) to Accuracy Rating", "(5-8)% increased Attack Speed", statOrder = { 880, 946 }, level = 65, group = "AccuracyAttackSpeedHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, [803737631] = { "+(327-427) to Accuracy Rating" }, } }, ["AlloyManaNearbyAllyAttackSpeedHybrid1"] = { type = "Prefix", affix = "Verisium", "+(110-114) to maximum Mana", "Allies in your Presence have (4-8)% increased Attack Speed", statOrder = { 892, 918 }, level = 65, group = "ManaNearbyAllyAttackSpeedHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(110-114) to maximum Mana" }, [1998951374] = { "Allies in your Presence have (4-8)% increased Attack Speed" }, } }, - ["AlloyCastSpeedDamageAsExtraColdHybrid1"] = { type = "Suffix", affix = "of the Stars", "(39-47)% increased Cast Speed", "Gain (11-16)% of Elemental Damage as Extra Cold Damage", statOrder = { 987, 9266 }, level = 65, group = "CastSpeedDamageAsExtraColdHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1158842087] = { "Gain (11-16)% of Elemental Damage as Extra Cold Damage" }, [2891184298] = { "(39-47)% increased Cast Speed" }, } }, - ["AlloyCastSpeedDamageAsExtraColdHybridOneHand1"] = { type = "Suffix", affix = "of the Stars", "(26-31)% increased Cast Speed", "Gain (7-11)% of Elemental Damage as Extra Cold Damage", statOrder = { 987, 9266 }, level = 65, group = "CastSpeedDamageAsExtraColdHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1158842087] = { "Gain (7-11)% of Elemental Damage as Extra Cold Damage" }, [2891184298] = { "(26-31)% increased Cast Speed" }, } }, + ["AlloyCastSpeedDamageAsExtraColdHybrid1"] = { type = "Suffix", affix = "of the Stars", "(39-47)% increased Cast Speed", "Gain (11-16)% of Elemental Damage as Extra Cold Damage", statOrder = { 987, 9257 }, level = 65, group = "CastSpeedDamageAsExtraColdHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1158842087] = { "Gain (11-16)% of Elemental Damage as Extra Cold Damage" }, [2891184298] = { "(39-47)% increased Cast Speed" }, } }, + ["AlloyCastSpeedDamageAsExtraColdHybridOneHand1"] = { type = "Suffix", affix = "of the Stars", "(26-31)% increased Cast Speed", "Gain (7-11)% of Elemental Damage as Extra Cold Damage", statOrder = { 987, 9257 }, level = 65, group = "CastSpeedDamageAsExtraColdHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1158842087] = { "Gain (7-11)% of Elemental Damage as Extra Cold Damage" }, [2891184298] = { "(26-31)% increased Cast Speed" }, } }, ["AlloyAttributeIncreasedLocalPhysicalDamageHybrid1"] = { type = "Suffix", affix = "of the Stars", "(15-20)% increased Physical Damage", "+(7-10) to all Attributes", statOrder = { 830, 1145 }, level = 65, group = "AttributeIncreasedLocalPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2897413282] = { "+(7-10) to all Attributes" }, [1509134228] = { "(15-20)% increased Physical Damage" }, } }, ["AlloySpiritPresenceAreaOfEffectHybrid1"] = { type = "Suffix", affix = "of the Stars", "(8-12)% increased Spirit", "(50-60)% increased Presence Area of Effect", statOrder = { 857, 1069 }, level = 65, group = "SpiritPresenceAreaOfEffectHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [101878827] = { "(50-60)% increased Presence Area of Effect" }, [3984865854] = { "(8-12)% increased Spirit" }, } }, - ["AlloyNaturesArchon1"] = { type = "Suffix", affix = "of the Stars", "(25-50)% chance to gain Nature's Archon when your Plants Overgrow", statOrder = { 5399 }, level = 65, group = "ChanceToGainNaturesArchon", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3518449420] = { "(25-50)% chance to gain Nature's Archon when your Plants Overgrow" }, } }, - ["AlloyElementalSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "+1 to Limit for Elemental Skills", statOrder = { 6309 }, level = 65, group = "ElementalSkillLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [1713927892] = { "+1 to Limit for Elemental Skills" }, } }, - ["AlloyRetainGlory1"] = { type = "Suffix", affix = "of the Stars", "(60-75)% chance for Skills to retain 40% of Glory on use", statOrder = { 5570 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2749595652] = { "(60-75)% chance for Skills to retain 40% of Glory on use" }, } }, - ["AlloyBellLimit1"] = { type = "Suffix", affix = "of the Stars", "Tempest Bells are destroyed after an additional (4-5) Hits", statOrder = { 4773 }, level = 65, group = "BellHitLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3984146263] = { "Tempest Bells are destroyed after an additional (4-5) Hits" }, } }, - ["AlloyPuppeteerStacks1"] = { type = "Suffix", affix = "of the Stars", "+(4-5) maximum stacks of Puppet Master", statOrder = { 8839 }, level = 65, group = "MaximumPuppeteerStacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1484026495] = { "+(4-5) maximum stacks of Puppet Master" }, } }, + ["AlloyNaturesArchon1"] = { type = "Suffix", affix = "of the Stars", "(25-50)% chance to gain Nature's Archon when your Plants Overgrow", statOrder = { 5395 }, level = 65, group = "ChanceToGainNaturesArchon", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3518449420] = { "(25-50)% chance to gain Nature's Archon when your Plants Overgrow" }, } }, + ["AlloyElementalSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "+1 to Limit for Elemental Skills", statOrder = { 6305 }, level = 65, group = "ElementalSkillLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [1713927892] = { "+1 to Limit for Elemental Skills" }, } }, + ["AlloyRetainGlory1"] = { type = "Suffix", affix = "of the Stars", "(60-75)% chance for Skills to retain 40% of Glory on use", statOrder = { 5566 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2749595652] = { "(60-75)% chance for Skills to retain 40% of Glory on use" }, } }, + ["AlloyBellLimit1"] = { type = "Suffix", affix = "of the Stars", "Tempest Bells are destroyed after an additional (4-5) Hits", statOrder = { 4769 }, level = 65, group = "BellHitLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3984146263] = { "Tempest Bells are destroyed after an additional (4-5) Hits" }, } }, + ["AlloyPuppeteerStacks1"] = { type = "Suffix", affix = "of the Stars", "+(4-5) maximum stacks of Puppet Master", statOrder = { 8830 }, level = 65, group = "MaximumPuppeteerStacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1484026495] = { "+(4-5) maximum stacks of Puppet Master" }, } }, ["AlloyMeleeStrikeRange1"] = { type = "Suffix", affix = "of the Stars", "+(8-10) to Weapon Range", statOrder = { 2507 }, level = 65, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(8-10) to Weapon Range" }, } }, - ["AlloyBallistaLimit1"] = { type = "Suffix", affix = "of the Stars", "+2 to maximum number of Summoned Ballista Totems", statOrder = { 4175 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1823942939] = { "+2 to maximum number of Summoned Ballista Totems" }, } }, - ["AlloyLightningDamageIgnites1"] = { type = "Suffix", affix = "of the Stars", "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 7546 }, level = 65, group = "LightningDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3121133045] = { "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes" }, } }, + ["AlloyBallistaLimit1"] = { type = "Suffix", affix = "of the Stars", "+2 to maximum number of Summoned Ballista Totems", statOrder = { 4172 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1823942939] = { "+2 to maximum number of Summoned Ballista Totems" }, } }, + ["AlloyLightningDamageIgnites1"] = { type = "Suffix", affix = "of the Stars", "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 7542 }, level = 65, group = "LightningDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3121133045] = { "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes" }, } }, ["AlloyMarkEffect"] = { type = "Suffix", affix = "of the Stars", "(40-50)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 65, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [712554801] = { "(40-50)% increased Effect of your Mark Skills" }, } }, - ["HandWrapsStrength1"] = { type = "Suffix", affix = "of the Brute", "(7-10)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(7-10)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength2"] = { type = "Suffix", affix = "of the Wrestler", "(11-13)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(11-13)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength3"] = { type = "Suffix", affix = "of the Bear", "(14-16)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(14-16)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength4"] = { type = "Suffix", affix = "of the Lion", "(17-19)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(17-19)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength5"] = { type = "Suffix", affix = "of the Gorilla", "(20-22)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-22)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength6"] = { type = "Suffix", affix = "of the Goliath", "(23-25)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(23-25)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength7"] = { type = "Suffix", affix = "of the Leviathan", "(26-28)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(26-28)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength8"] = { type = "Suffix", affix = "of the Titan", "(29-32)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(29-32)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsDexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(15-18)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(15-18)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(19-22)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(19-22)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity3"] = { type = "Suffix", affix = "of the Fox", "+(23-26)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-26)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(27-30)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(27-30)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity5"] = { type = "Suffix", affix = "of the Panther", "+(31-35)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(31-35)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(36-40)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(36-40)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(41-45)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(41-45)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(46-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(46-50)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-60)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-60)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsIntelligence1"] = { type = "Suffix", affix = "of the Pupil", "(5-8)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(5-8)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence2"] = { type = "Suffix", affix = "of the Student", "(9-12)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(9-12)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence3"] = { type = "Suffix", affix = "of the Prodigy", "(13-16)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(13-16)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence4"] = { type = "Suffix", affix = "of the Augur", "(17-20)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(17-20)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence5"] = { type = "Suffix", affix = "of the Philosopher", "(21-24)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(21-24)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence6"] = { type = "Suffix", affix = "of the Sage", "(25-28)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(25-28)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence7"] = { type = "Suffix", affix = "of the Savant", "(29-32)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(29-32)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "(33-36)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(33-36)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsFireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+1% to Maximum Fire Resistance", "+(11-15)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(11-15)% to Fire Resistance" }, } }, - ["HandWrapsFireResist2"] = { type = "Suffix", affix = "of the Salamander", "+1% to Maximum Fire Resistance", "+(16-20)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(16-20)% to Fire Resistance" }, } }, - ["HandWrapsFireResist3"] = { type = "Suffix", affix = "of the Drake", "+1% to Maximum Fire Resistance", "+(21-25)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, - ["HandWrapsFireResist4"] = { type = "Suffix", affix = "of the Kiln", "+2% to Maximum Fire Resistance", "+(21-25)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, - ["HandWrapsFireResist5"] = { type = "Suffix", affix = "of the Furnace", "+2% to Maximum Fire Resistance", "+(26-30)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(26-30)% to Fire Resistance" }, } }, - ["HandWrapsFireResist6"] = { type = "Suffix", affix = "of the Volcano", "+2% to Maximum Fire Resistance", "+(31-35)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(31-35)% to Fire Resistance" }, } }, - ["HandWrapsFireResist7"] = { type = "Suffix", affix = "of Magma", "+2% to Maximum Fire Resistance", "+(36-40)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, - ["HandWrapsFireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+3% to Maximum Fire Resistance", "+(36-40)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to Maximum Fire Resistance" }, [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, - ["HandWrapsColdResist1"] = { type = "Suffix", affix = "of the Seal", "+1% to Maximum Cold Resistance", "+(11-15)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-15)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+1% to Maximum Cold Resistance", "+(16-20)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(16-20)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+1% to Maximum Cold Resistance", "+(21-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+2% to Maximum Cold Resistance", "+(21-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+2% to Maximum Cold Resistance", "+(26-30)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-30)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+2% to Maximum Cold Resistance", "+(31-35)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-35)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist7"] = { type = "Suffix", affix = "of the Ice", "+2% to Maximum Cold Resistance", "+(36-40)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist8"] = { type = "Suffix", affix = "of Haast", "+3% to Maximum Cold Resistance", "+(36-40)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, - ["HandWrapsLightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+1% to Maximum Lightning Resistance", "+(11-15)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(11-15)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist2"] = { type = "Suffix", affix = "of the Squall", "+1% to Maximum Lightning Resistance", "+(16-20)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(16-20)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist3"] = { type = "Suffix", affix = "of the Storm", "+1% to Maximum Lightning Resistance", "+(21-25)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+2% to Maximum Lightning Resistance", "+(21-25)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+2% to Maximum Lightning Resistance", "+(26-30)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(26-30)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+2% to Maximum Lightning Resistance", "+(31-35)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(31-35)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+2% to Maximum Lightning Resistance", "+(36-40)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist8"] = { type = "Suffix", affix = "of Ephij", "+3% to Maximum Lightning Resistance", "+(36-40)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, - ["HandWrapsChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+1% to Maximum Chaos Resistance", "+(6-9)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(6-9)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+1% to Maximum Chaos Resistance", "+(10-13)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(10-13)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+1% to Maximum Chaos Resistance", "+(14-17)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(14-17)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+1% to Maximum Chaos Resistance", "+(18-21)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(18-21)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist5"] = { type = "Suffix", affix = "of Exile", "+1% to Maximum Chaos Resistance", "+(22-25)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+2% to Maximum Chaos Resistance", "+(22-25)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, - ["HandWrapsIncreasedLife1"] = { type = "Prefix", affix = "Hale", "5% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "5% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife2"] = { type = "Prefix", affix = "Healthy", "6% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "6% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "7% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "7% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "8% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "8% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife5"] = { type = "Prefix", affix = "Stout", "9% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "9% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife6"] = { type = "Prefix", affix = "Robust", "10% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "10% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife7"] = { type = "Prefix", affix = "Rotund", "11% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "11% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife8"] = { type = "Prefix", affix = "Virile", "12% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "12% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "13% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "13% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife10"] = { type = "Prefix", affix = "Fecund", "14% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "14% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "15% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "15% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "16% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "16% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife13"] = { type = "Prefix", affix = "Prime", "17% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "17% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedMana1"] = { type = "Prefix", affix = "Beryl", "(10-11)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(10-11)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "(12-13)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(12-13)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana3"] = { type = "Prefix", affix = "Azure", "(14-15)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(14-15)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana4"] = { type = "Prefix", affix = "Teal", "(16-17)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(16-17)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "(18-19)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(18-19)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana6"] = { type = "Prefix", affix = "Aqua", "(20-21)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(20-21)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "(22-23)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(22-23)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana8"] = { type = "Prefix", affix = "Gentian", "(24-25)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(24-25)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "(26-27)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(26-27)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEnergyShield2"] = { type = "Prefix", affix = "Anointed", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Incorporeal", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Ascendant", "(21-22)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(21-22)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "+(5-10) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, - ["HandWrapsReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "+(11-15) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(11-15) to all Attributes" }, } }, - ["HandWrapsReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "+(16-20) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-20) to all Attributes" }, } }, - ["HandWrapsReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "+(21-25) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-25) to all Attributes" }, } }, - ["HandWrapsReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "+(26-30) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(26-30) to all Attributes" }, } }, - ["HandWrapsAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Attacks Gain 10% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 10% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Attacks Gain 11% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 11% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Attacks Gain 12% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 12% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Attacks Gain 13% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 13% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Attacks Gain 14% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 14% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Attacks Gain (15-16)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (15-16)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Attacks Gain (17-18)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (17-18)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Attacks Gain (19-20)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (19-20)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Attacks Gain (21-23)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (21-23)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Attacks Gain 10% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 10% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Attacks Gain 11% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 11% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Attacks Gain 12% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 12% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Attacks Gain 13% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 13% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Attacks Gain 14% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 14% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Attacks Gain (15-16)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (15-16)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Attacks Gain (17-18)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (17-18)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Attacks Gain (19-20)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (19-20)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Attacks Gain (21-23)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (21-23)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Attacks Gain 10% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 10% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Attacks Gain 11% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 11% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Attacks Gain 12% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 12% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Attacks Gain 13% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 13% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Attacks Gain 14% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 14% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Attacks Gain (15-16)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (15-16)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Attacks Gain (17-18)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (17-18)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Attacks Gain (19-20)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (19-20)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Attacks Gain (21-23)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (21-23)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Attacks Gain 10% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 10% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Attacks Gain 11% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 11% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Attacks Gain 12% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 12% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Attacks Gain 13% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 13% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Attacks Gain 14% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 14% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Attacks Gain (15-16)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (15-16)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Attacks Gain (17-18)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (17-18)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Attacks Gain (19-20)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (19-20)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Attacks Gain (21-23)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (21-23)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsGlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+(10-12)% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(10-12)% to Quality of all Skills" }, } }, - ["HandWrapsGlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+1 to Level of all Melee Skills", "+(10-12)% to Quality of all Skills", statOrder = { 966, 975 }, level = 1, group = "GlobalSkillGemQualityMeleeLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "gem" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, [3655769732] = { "+(10-12)% to Quality of all Skills" }, } }, - ["HandWrapsLifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (8-8.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-8.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsLifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (9-10.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (9-10.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsLifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (11-11.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (11-11.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsLifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (12-13.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (12-13.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsLifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (14-15)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (14-15)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (6-7.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (6-7.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (8-8.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (8-8.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (9-10.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (9-10.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (11-11.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (11-11.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (12-13)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1046, 1898 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (12-13)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Recover 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Recover 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Recover 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Recover 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Recover 1% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Recover 1% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Recover 3% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, - ["HandWrapsLifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7445 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsLifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7445 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsLifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7445 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsLifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7445 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(8-12)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(8-12)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(14-18)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(14-18)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(20-24)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(20-24)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(26-30)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(26-30)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "(12-14)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(12-14)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "(15-17)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(15-17)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "(18-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(18-20)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "(21-23)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(21-23)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "(24-26)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(24-26)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "(27-29)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(27-29)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "(30-32)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(30-32)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "(33-35)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(33-35)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "(36-38)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(36-38)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(0.5-1)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(0.5-1)% to Critical Hit Chance" }, } }, - ["HandWrapsCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(1.1-1.5)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.1-1.5)% to Critical Hit Chance" }, } }, - ["HandWrapsCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(1.6-2)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.6-2)% to Critical Hit Chance" }, } }, - ["HandWrapsCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(2.1-2.5)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(2.1-2.5)% to Critical Hit Chance" }, } }, - ["HandWrapsCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(2.5-3)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(2.5-3)% to Critical Hit Chance" }, } }, - ["HandWrapsItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(15-20)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(15-20)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(21-25)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(21-25)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(26-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(26-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsEnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(31-35)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(41-45)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate5"] = { type = "Suffix", affix = "of Ardour", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(46-50)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-55)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(10-12)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-12)% to all Elemental Resistances" }, } }, - ["HandWrapsArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(13-15)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } }, - ["HandWrapsArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(16-18)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } }, - ["HandWrapsArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(19-21)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(19-21)% to all Elemental Resistances" }, } }, - ["HandWrapsArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(22-24)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(22-24)% to all Elemental Resistances" }, } }, - ["HandWrapsEvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Prevent +3% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +3% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Prevent +4% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +4% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Prevent +5% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +5% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Prevent +6% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +6% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Prevent +7% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +7% of Damage from Deflected Hits" }, } }, - ["HandWrapsAbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(2-3)% to Maximum Lightning Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1011, 1024 }, level = 1, group = "ChaosAndMaxLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [1011760251] = { "+(2-3)% to Maximum Lightning Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["HandWrapsAbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "(7-9)% increased Strength and Dexterity", statOrder = { 1002 }, level = 1, group = "IncreasedStrengthAndDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dexterity", "strength", "attribute" }, tradeHashes = { [4248928173] = { "(7-9)% increased Strength and Dexterity" }, } }, - ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(2-3)% to Maximum Fire Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1009, 1024 }, level = 1, group = "ChaosAndMaxFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [4095671657] = { "+(2-3)% to Maximum Fire Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "(7-9)% increased Strength and Intelligence", statOrder = { 1003 }, level = 1, group = "IncreasedStrengthAndIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "intelligence", "strength", "attribute" }, tradeHashes = { [517666337] = { "(7-9)% increased Strength and Intelligence" }, } }, - ["HandWrapsAbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(2-3)% to Maximum Cold Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1010, 1024 }, level = 1, group = "ChaosAndMaxColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["HandWrapsAbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "(7-9)% increased Dexterity and Intelligence", statOrder = { 1004 }, level = 1, group = "IncreasedDexterityAndIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dexterity", "intelligence", "attribute" }, tradeHashes = { [3300318172] = { "(7-9)% increased Dexterity and Intelligence" }, } }, - ["HandWrapsAbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Reservation Efficiency of Skills", statOrder = { 1955 }, level = 1, group = "ReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2587176568] = { "(6-10)% increased Reservation Efficiency of Skills" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5818 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "Chance to Poison is calculated from your base chance to inflict Bleeding instead", statOrder = { 4737 }, level = 1, group = "BaseBleedChanceAppliesToPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "poison", "physical", "chaos", "ailment" }, tradeHashes = { [1670828838] = { "Chance to Poison is calculated from your base chance to inflict Bleeding instead" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "Chance to inflict Bleeding is calculated from your base chance to Poison instead", statOrder = { 4659 }, level = 1, group = "BasePoisonChanceAppliesToBleed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "poison", "physical", "chaos", "ailment" }, tradeHashes = { [1710906986] = { "Chance to inflict Bleeding is calculated from your base chance to Poison instead" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds", statOrder = { 4238 }, level = 1, group = "AggravateOldBleedOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [521615509] = { "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(13-17)% increased Attack Speed if you haven't been Hit Recently", statOrder = { 4551 }, level = 1, group = "AttackSpeedIfNotHitRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3842707164] = { "(13-17)% increased Attack Speed if you haven't been Hit Recently" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Mark Skills have (15-25)% increased Use Speed", statOrder = { 1946 }, level = 1, group = "MarkCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1714971114] = { "Mark Skills have (15-25)% increased Use Speed" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies", statOrder = { 9278 }, level = 1, group = "DamageGainedAsColdVsDazed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4212675042] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "Life Leech can Overflow Maximum Life", statOrder = { 7454 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(26-35)% increased Damage against Immobilised Enemies", statOrder = { 5959 }, level = 1, group = "ImmobiliseIncreasedDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3120508478] = { "(26-35)% increased Damage against Immobilised Enemies" }, } }, - ["HandWrapsAbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(5-10)% chance to gain a Power Charge on Critical Hit", statOrder = { 1585 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "(5-10)% chance to gain a Power Charge on Critical Hit" }, } }, - ["HandWrapsAbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(17-23)% increased Attack Speed when on Full Life", statOrder = { 1178 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "(17-23)% increased Attack Speed when on Full Life" }, } }, - ["HandWrapsDecayInfluenceIgniteMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6343, 6521, 6521.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, - ["HandWrapsDecayInfluenceIgniteMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6343, 6521, 6521.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, - ["HandWrapsDecayInfluenceBleedMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage", statOrder = { 3011 }, level = 1, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage" }, } }, - ["HandWrapsDecayInfluenceBleedMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage", statOrder = { 3011 }, level = 1, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage" }, } }, - ["HandWrapsDecayInfluencePoisonMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 3012 }, level = 1, group = "ExplodeOnKillChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1776945532] = { "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, - ["HandWrapsDecayInfluencePoisonMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 3012 }, level = 1, group = "ExplodeOnKillChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1776945532] = { "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, - ["HandWrapsDecayInfluenceAilmentMagnitude1"] = { type = "Prefix", affix = "Katla's", "+(10-25) to Ailment Threshold", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4264, 4266 }, level = 1, group = "AilmentThresholdAndIncreasedAilmentThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1488650448] = { "+(10-25) to Ailment Threshold" }, [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, - ["HandWrapsDecayInfluenceAilmentMagnitude2"] = { type = "Prefix", affix = "Katla's", "+(26-40) to Ailment Threshold", "(21-35)% increased Elemental Ailment Threshold", statOrder = { 4264, 4266 }, level = 1, group = "AilmentThresholdAndIncreasedAilmentThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1488650448] = { "+(26-40) to Ailment Threshold" }, [3544800472] = { "(21-35)% increased Elemental Ailment Threshold" }, } }, - ["HandWrapsDecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6260, 6260.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, - ["HandWrapsDecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6260, 6260.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, - ["HandWrapsDecayInfluenceAilmentDuration1"] = { type = "Suffix", affix = "of Decay", "(10-22)% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-22)% increased Duration of Ailments on Enemies" }, } }, - ["HandWrapsDecayInfluenceAilmentDuration2"] = { type = "Suffix", affix = "of Decay", "(23-37)% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(23-37)% increased Duration of Ailments on Enemies" }, } }, - ["HandWrapsDecayInfluenceFasterLeech1"] = { type = "Suffix", affix = "of Decay", "(15-35)% increased Damage while Leeching", statOrder = { 2795 }, level = 1, group = "DamageWhileLeeching", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-35)% increased Damage while Leeching" }, } }, - ["HandWrapsDecayInfluenceSlowerLeech1"] = { type = "Suffix", affix = "of Decay", "(15-35)% increased Evasion while Leeching", statOrder = { 6510 }, level = 1, group = "IncreasedEvasionRatingWhileLeeching", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3854334101] = { "(15-35)% increased Evasion while Leeching" }, } }, - ["HandWrapsDecayInfluenceLeechAmount1"] = { type = "Suffix", affix = "of Decay", "Leech (7-12)% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (7-12)% of Physical Attack Damage as Life" }, } }, - ["HandWrapsDecayInfluenceWitherMagnitude1"] = { type = "Suffix", affix = "of Decay", "Damage with Weapons Penetrates (5-9)% Chaos Resistance", statOrder = { 3273 }, level = 1, group = "ChaosPenetrationWithAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2237902788] = { "Damage with Weapons Penetrates (5-9)% Chaos Resistance" }, } }, - ["HandWrapsDecayInfluenceWitherMagnitude2"] = { type = "Suffix", affix = "of Decay", "Damage with Weapons Penetrates (10-17)% Chaos Resistance", statOrder = { 3273 }, level = 1, group = "ChaosPenetrationWithAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2237902788] = { "Damage with Weapons Penetrates (10-17)% Chaos Resistance" }, } }, - ["HandWrapsDecayInfluenceCurseMagnitude1"] = { type = "Suffix", affix = "of Decay", "You can apply an additional Curse", statOrder = { 1909 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["HandWrapsDecayInfluenceCurseMagnitude2"] = { type = "Suffix", affix = "of Decay", "You can apply an additional Curse", "(5-15)% increased Curse Magnitudes", statOrder = { 1909, 2376 }, level = 1, group = "AdditionalCurseOnEnemiesAndCurseMagnitude", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [2353576063] = { "(5-15)% increased Curse Magnitudes" }, } }, - ["HandWrapsDecayInfluenceExposureEffect1"] = { type = "Suffix", affix = "of Decay", "Damage Penetrates (4-8)% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (4-8)% Elemental Resistances" }, } }, - ["HandWrapsDecayInfluenceExposureEffect2"] = { type = "Suffix", affix = "of Decay", "Damage Penetrates (9-15)% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-15)% Elemental Resistances" }, } }, - ["HandWrapsDecayInfluenceIncreasedCurseDuration1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Life per Cursed Enemy Hit with Attacks", statOrder = { 7446 }, level = 1, group = "LifeGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3072303874] = { "Gain (1-10) Life per Cursed Enemy Hit with Attacks" }, } }, - ["HandWrapsDecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Mana per Cursed Enemy Hit with Attacks", statOrder = { 7983 }, level = 1, group = "ManaGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2087996552] = { "Gain (1-10) Mana per Cursed Enemy Hit with Attacks" }, } }, - ["HandWrapsMarksmanInfluenceProjectileDamage1"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire an additional Projectile", statOrder = { 3849 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire an additional Projectile" }, } }, - ["HandWrapsMarksmanInfluenceProjectileDamage2"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire 2 additional Projectiles", statOrder = { 3849 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire 2 additional Projectiles" }, } }, - ["HandWrapsMarksmanInfluenceProjectileDamage3"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire 3 additional Projectiles", statOrder = { 3849 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire 3 additional Projectiles" }, } }, - ["HandWrapsMarksmanInfluenceMarkEffect1"] = { type = "Prefix", affix = "Kolr's", "(32-46)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5834 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(32-46)% increased Critical Hit Chance against Marked Enemies" }, } }, - ["HandWrapsMarksmanInfluenceMarkEffect2"] = { type = "Prefix", affix = "Kolr's", "(47-61)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5834 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(47-61)% increased Critical Hit Chance against Marked Enemies" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSpeed1"] = { type = "Prefix", affix = "Kolr's", "(1-2)% increased Projectile Damage per Power Charge", statOrder = { 2415 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(1-2)% increased Projectile Damage per Power Charge" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSpeed2"] = { type = "Prefix", affix = "Kolr's", "(3-4)% increased Projectile Damage per Power Charge", statOrder = { 2415 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(3-4)% increased Projectile Damage per Power Charge" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSpeed3"] = { type = "Prefix", affix = "Kolr's", "(5-6)% increased Projectile Damage per Power Charge", statOrder = { 2415 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(5-6)% increased Projectile Damage per Power Charge" }, } }, - ["HandWrapsMarksmanInfluenceCriticalHitChance1"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (30-39)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (30-39)% reduced Critical Damage Bonus" }, } }, - ["HandWrapsMarksmanInfluenceCriticalHitChance2"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (40-49)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (40-49)% reduced Critical Damage Bonus" }, } }, - ["HandWrapsMarksmanInfluenceCriticalHitChance3"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (50-60)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (50-60)% reduced Critical Damage Bonus" }, } }, - ["HandWrapsMarksmanInfluenceChanceToPierce1"] = { type = "Prefix", affix = "of the Hunt", "Projectiles Pierce an additional Target", statOrder = { 1549 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["HandWrapsMarksmanInfluenceChanceToPierce2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles Pierce 2 additional Targets", statOrder = { 1549 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (15-20)% chance to Shock", statOrder = { 2476 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (15-20)% chance to Shock" }, } }, - ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (21-25)% chance to Shock", statOrder = { 2476 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (21-25)% chance to Shock" }, } }, - ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (26-30)% chance to Shock", statOrder = { 2476 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (26-30)% chance to Shock" }, } }, - ["HandWrapsMarksmanInfluenceChainToChainOffTerrain1"] = { type = "Suffix", affix = "of the Hunt", "Attacks Chain an additional time", statOrder = { 3783 }, level = 1, group = "AttacksChainAdditionalTimes", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain an additional time" }, } }, - ["HandWrapsMarksmanInfluenceChainToChainOffTerrain2"] = { type = "Suffix", affix = "of the Hunt", "Attacks Chain 2 additional times", statOrder = { 3783 }, level = 1, group = "AttacksChainAdditionalTimes", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain 2 additional times" }, } }, - ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9565 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9565 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["HandWrapsMarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres", statOrder = { 10622 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres" }, } }, - ["HandWrapsMarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres", statOrder = { 10622 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed1"] = { type = "Suffix", affix = "of the Hunt", "(10-19)% increased Damage with Hits against Marked Enemy", statOrder = { 5979 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(10-19)% increased Damage with Hits against Marked Enemy" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed2"] = { type = "Suffix", affix = "of the Hunt", "(20-29)% increased Damage with Hits against Marked Enemy", statOrder = { 5979 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(20-29)% increased Damage with Hits against Marked Enemy" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (1-5)% increased Damage", statOrder = { 8828 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (1-5)% increased Damage" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (6-10)% increased Damage", statOrder = { 8828 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (6-10)% increased Damage" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSkills1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-44)% chance to Fork", statOrder = { 9544 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (25-44)% chance to Fork" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSkills2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-65)% chance to Fork", statOrder = { 9544 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (45-65)% chance to Fork" }, } }, - ["HandWrapsAlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5804 }, level = 1, group = "RemnantGrantEffectTwiceChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["HandWrapsAlloyCastSpeedGloves1"] = { type = "Suffix", affix = "of the Stars", "(10-30)% chance to gain a Power Charge when you Stun", statOrder = { 2531 }, level = 1, group = "PowerChargeOnStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "(10-30)% chance to gain a Power Charge when you Stun" }, } }, - ["HandWrapsAlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5818 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, - ["HandWrapsAlloyElementalPenetration1"] = { type = "Suffix", affix = "of the Stars", "+(20-30)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["HandWrapsAlloyAttackAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4494 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "1% increased Area of Effect for Attacks per 10 Intelligence" }, } }, - ["HandWrapsEssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(12-23)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6116 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3471443885] = { "(12-23)% of Damage taken from Deflected Hits Recouped as Life" }, } }, - ["HandWrapsEssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "Charms gain (0.13-0.27) charges per Second", statOrder = { 6889 }, level = 1, group = "CharmChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.13-0.27) charges per Second" }, } }, - ["HandWrapsEssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "Life Flasks gain (0.13-0.27) charges per Second", "Mana Flasks gain (0.13-0.27) charges per Second", statOrder = { 6892, 6893 }, level = 1, group = "GenerateLifeAndManaFlasksChargesPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.13-0.27) charges per Second" }, [2200293569] = { "Mana Flasks gain (0.13-0.27) charges per Second" }, } }, - ["HandWrapsUniqueMutatedVaalMaximumManaIncreasePercent"] = { type = "Prefix", affix = "", "+(36-42) to maximum Mana", "(15-35)% increased Attack Damage", statOrder = { 892, 1156 }, level = 1, group = "AttackDamageAndBaseMaximumMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "damage", "attack" }, tradeHashes = { [1050105434] = { "+(36-42) to maximum Mana" }, [2843214518] = { "(15-35)% increased Attack Damage" }, } }, - ["HandWrapsUniqueMutatedVaalManaLeechPermyriad"] = { type = "Prefix", affix = "", "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9688 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence" }, } }, - ["HandWrapsUniqueMutatedVaalEnergyOnFullMana"] = { type = "Prefix", affix = "", "(25-45)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(25-45)% of Damage taken Recouped as Mana" }, } }, - ["HandWrapsUniqueMutatedVaalManaCostEfficiency"] = { type = "Prefix", affix = "", "(15-40)% reduced Mana Cost of Attacks", statOrder = { 4538 }, level = 1, group = "ReducedAttackManaCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(15-40)% reduced Mana Cost of Attacks" }, } }, - ["HandWrapsUniqueMutatedVaalSkillCostEfficiency"] = { type = "Prefix", affix = "", "Non-Channelling Skills Cost -(8-3) Mana", statOrder = { 9910 }, level = 1, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [407482587] = { "Non-Channelling Skills Cost -(8-3) Mana" }, } }, - ["HandWrapsUniqueMutatedVaalSpellLifeCostPercent"] = { type = "Prefix", affix = "", "Attacks have added Physical damage equal to (1-3)% of maximum Life", statOrder = { 4464 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to (1-3)% of maximum Life" }, } }, - ["HandWrapsUniqueMutatedVaalArcaneSurgeEffect"] = { type = "Prefix", affix = "", "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7445 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsUniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { type = "Prefix", affix = "", "(20-30)% increased Attack Damage while on Low Life", statOrder = { 4530 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4246007234] = { "(20-30)% increased Attack Damage while on Low Life" }, } }, - ["HandWrapsUniqueMutatedVaalGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "", "Dazes on Hit", statOrder = { 4669 }, level = 1, group = "DazeBuildup", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3146310524] = { "Dazes on Hit" }, } }, - ["HandWrapsUniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { type = "Suffix", affix = "", "(10-60)% reduced Poison Duration on you", statOrder = { 1067 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(10-60)% reduced Poison Duration on you" }, } }, - ["HandWrapsUniqueMutatedVaalGlobalChaosGemLevel"] = { type = "Suffix", affix = "", "Attacks have added Chaos damage equal to (1-3)% of maximum Life", statOrder = { 4463 }, level = 1, group = "ChaosDamageMaximumLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1141563002] = { "Attacks have added Chaos damage equal to (1-3)% of maximum Life" }, } }, - ["HandWrapsUniqueMutatedVaalPoisonEffect"] = { type = "Suffix", affix = "", "Critical Hits Poison the enemy", statOrder = { 9502 }, level = 1, group = "PoisonOnCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, - ["HandWrapsUniqueMutatedVaalIncreasedLifePercent"] = { type = "Suffix", affix = "", "+(205-221) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(205-221) to maximum Life" }, } }, - ["HandWrapsUniqueMutatedVaalAddedMaximumEnergyShield"] = { type = "Suffix", affix = "", "(7-16)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-16)% increased maximum Energy Shield" }, } }, - ["HandWrapsUniqueMutatedVaalLifeLeechAmount"] = { type = "Suffix", affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2928 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [4224337800] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, - ["HandWrapsUniqueMutatedVaalChanceToBleed"] = { type = "Suffix", affix = "", "Attacks have (35-80)% chance to cause Bleeding", statOrder = { 2270 }, level = 1, group = "ChanceToBleed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (35-80)% chance to cause Bleeding" }, } }, - ["HandWrapsUniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { type = "Suffix", affix = "", "+(12-23)% to Chaos Resistance per Poison on you", "Poison you inflict is Reflected to you", statOrder = { 5591, 9503 }, level = 1, group = "ChaosResistancePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "poison", "chaos", "resistance", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [175362265] = { "+(12-23)% to Chaos Resistance per Poison on you" }, } }, - ["HandWrapsUniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { type = "Suffix", affix = "", "(20-35)% increased Damage for each Poison on you up to a maximum of 75%", "Poison you inflict is Reflected to you", statOrder = { 6008, 9503 }, level = 1, group = "DamageIncreasePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1034580601] = { "(20-35)% increased Damage for each Poison on you up to a maximum of 75%" }, [2374357674] = { "Poison you inflict is Reflected to you" }, } }, - ["HandWrapsUniqueMutatedVaalReducedPoisonDuration"] = { type = "Suffix", affix = "", "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%", "Poison you inflict is Reflected to you", statOrder = { 9170, 9503 }, level = 1, group = "MovementSpeedPerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "speed", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [1360723495] = { "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, - ["HandWrapsUniqueMutatedVaalIgniteEffect1"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Ignited", statOrder = { 1602 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(20-50)% chance to Avoid being Ignited" }, } }, - ["HandWrapsUniqueMutatedVaalChillEffect"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Chilled", statOrder = { 1600 }, level = 1, group = "AvoidChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(20-50)% chance to Avoid being Chilled" }, } }, - ["HandWrapsUniqueMutatedVaalFreezeDuration"] = { type = "Suffix", affix = "", "Regenerate (5-15)% of maximum Life per second while Frozen", statOrder = { 3419 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2656696317] = { "Regenerate (5-15)% of maximum Life per second while Frozen" }, } }, - ["HandWrapsUniqueMutatedVaalShockEffect"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Shocked", statOrder = { 1604 }, level = 1, group = "AvoidShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(20-50)% chance to Avoid being Shocked" }, } }, - ["HandWrapsUniqueMutatedVaalCurseEffectiveness"] = { type = "Suffix", affix = "", "(20-30)% reduced effect of Curses on you", statOrder = { 1911 }, level = 1, group = "ReducedCurseEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(20-30)% reduced effect of Curses on you" }, } }, - ["HandWrapsUniqueMutatedVaalDamagePerCurse"] = { type = "Suffix", affix = "", "(10-20)% increased Damage with Hits per Curse on Enemy", statOrder = { 2749 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(10-20)% increased Damage with Hits per Curse on Enemy" }, } }, - ["HandWrapsUniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { type = "Suffix", affix = "", "Gain (1-3) Rage on Melee Hit", statOrder = { 6873 }, level = 1, group = "RageOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain (1-3) Rage on Melee Hit" }, } }, - ["HandWrapsUniqueMutatedVaalMaxRageFromRageOnHitChance"] = { type = "Suffix", affix = "", "Gain 1% of Physical Damage as Extra Fire Damage per Rage", statOrder = { 9301 }, level = 1, group = "PhysicalAddedAsFirePerRage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1336175820] = { "Gain 1% of Physical Damage as Extra Fire Damage per Rage" }, } }, - ["HandWrapsUniqueMutatedVaalIncreasedAttackSpeed"] = { type = "Suffix", affix = "", "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana", statOrder = { 4550 }, level = 1, group = "AttackLightningDamageMaximumMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2778228111] = { "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana" }, } }, ["MinionDamage1"] = { type = "Prefix", affix = "Hustler's", "Minions deal (7-9)% increased Damage", statOrder = { 1720 }, level = 13, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (7-9)% increased Damage" }, } }, ["MinionDamage2"] = { type = "Prefix", affix = "Conniver's", "Minions deal (10-12)% increased Damage", statOrder = { 1720 }, level = 26, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-12)% increased Damage" }, } }, ["MinionDamage3"] = { type = "Prefix", affix = "Schemer's", "Minions deal (13-15)% increased Damage", statOrder = { 1720 }, level = 33, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (13-15)% increased Damage" }, } }, @@ -2249,51 +1838,51 @@ return { ["MinionElementalResistance4"] = { type = "Suffix", affix = "of Conditioning", "Minions have +(17-19)% to all Elemental Resistances", statOrder = { 2667 }, level = 57, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(17-19)% to all Elemental Resistances" }, } }, ["MinionElementalResistance5"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(20-22)% to all Elemental Resistances", statOrder = { 2667 }, level = 66, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(20-22)% to all Elemental Resistances" }, } }, ["MinionElementalResistance6"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(23-25)% to all Elemental Resistances", statOrder = { 2667 }, level = 73, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(23-25)% to all Elemental Resistances" }, } }, - ["MinionAttackSpeedAndCastSpeed1"] = { type = "Suffix", affix = "of Guidance", "Minions have (3-4)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 31, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (3-4)% increased Attack and Cast Speed" }, } }, - ["MinionAttackSpeedAndCastSpeed2"] = { type = "Suffix", affix = "of Direction", "Minions have (5-6)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 53, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (5-6)% increased Attack and Cast Speed" }, } }, - ["MinionAttackSpeedAndCastSpeed3"] = { type = "Suffix", affix = "of Management", "Minions have (7-8)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 69, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (7-8)% increased Attack and Cast Speed" }, } }, - ["MinionAttackSpeedAndCastSpeed4"] = { type = "Suffix", affix = "of Control", "Minions have (9-10)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 80, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (9-10)% increased Attack and Cast Speed" }, } }, - ["MinionCriticalStrikeChanceRing1"] = { type = "Suffix", affix = "of Pricking", "Minions have (5-12)% increased Critical Hit Chance", statOrder = { 9030 }, level = 18, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (5-12)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing2"] = { type = "Suffix", affix = "of Stinging", "Minions have (13-20)% increased Critical Hit Chance", statOrder = { 9030 }, level = 32, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (13-20)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing3"] = { type = "Suffix", affix = "of Gouging", "Minions have (21-28)% increased Critical Hit Chance", statOrder = { 9030 }, level = 45, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (21-28)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing4"] = { type = "Suffix", affix = "of Puncturing", "Minions have (29-36)% increased Critical Hit Chance", statOrder = { 9030 }, level = 58, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (29-36)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing5"] = { type = "Suffix", affix = "of Lacinating", "Minions have (37-44)% increased Critical Hit Chance", statOrder = { 9030 }, level = 70, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (37-44)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing6"] = { type = "Suffix", affix = "of Piercing", "Minions have (45-52)% increased Critical Hit Chance", statOrder = { 9030 }, level = 81, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (45-52)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeMultiplierRing1"] = { type = "Suffix", affix = "of Quashing", "Minions have (6-10)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 17, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (6-10)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing2"] = { type = "Suffix", affix = "of Purging", "Minions have (11-15)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (11-15)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing3"] = { type = "Suffix", affix = "of Elimination", "Minions have (16-20)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (16-20)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing4"] = { type = "Suffix", affix = "of Devastation", "Minions have (21-25)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 57, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (21-25)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing5"] = { type = "Suffix", affix = "of Eradication", "Minions have (26-30)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 69, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (26-30)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing6"] = { type = "Suffix", affix = "of Extinction", "Minions have (31-35)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 80, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (31-35)% increased Critical Damage Bonus" }, } }, + ["MinionAttackSpeedAndCastSpeed1"] = { type = "Suffix", affix = "of Guidance", "Minions have (3-4)% increased Attack and Cast Speed", statOrder = { 8994 }, level = 31, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (3-4)% increased Attack and Cast Speed" }, } }, + ["MinionAttackSpeedAndCastSpeed2"] = { type = "Suffix", affix = "of Direction", "Minions have (5-6)% increased Attack and Cast Speed", statOrder = { 8994 }, level = 53, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (5-6)% increased Attack and Cast Speed" }, } }, + ["MinionAttackSpeedAndCastSpeed3"] = { type = "Suffix", affix = "of Management", "Minions have (7-8)% increased Attack and Cast Speed", statOrder = { 8994 }, level = 69, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (7-8)% increased Attack and Cast Speed" }, } }, + ["MinionAttackSpeedAndCastSpeed4"] = { type = "Suffix", affix = "of Control", "Minions have (9-10)% increased Attack and Cast Speed", statOrder = { 8994 }, level = 80, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (9-10)% increased Attack and Cast Speed" }, } }, + ["MinionCriticalStrikeChanceRing1"] = { type = "Suffix", affix = "of Pricking", "Minions have (5-12)% increased Critical Hit Chance", statOrder = { 9021 }, level = 18, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (5-12)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing2"] = { type = "Suffix", affix = "of Stinging", "Minions have (13-20)% increased Critical Hit Chance", statOrder = { 9021 }, level = 32, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (13-20)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing3"] = { type = "Suffix", affix = "of Gouging", "Minions have (21-28)% increased Critical Hit Chance", statOrder = { 9021 }, level = 45, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (21-28)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing4"] = { type = "Suffix", affix = "of Puncturing", "Minions have (29-36)% increased Critical Hit Chance", statOrder = { 9021 }, level = 58, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (29-36)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing5"] = { type = "Suffix", affix = "of Lacinating", "Minions have (37-44)% increased Critical Hit Chance", statOrder = { 9021 }, level = 70, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (37-44)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing6"] = { type = "Suffix", affix = "of Piercing", "Minions have (45-52)% increased Critical Hit Chance", statOrder = { 9021 }, level = 81, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (45-52)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeMultiplierRing1"] = { type = "Suffix", affix = "of Quashing", "Minions have (6-10)% increased Critical Damage Bonus", statOrder = { 9023 }, level = 17, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (6-10)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing2"] = { type = "Suffix", affix = "of Purging", "Minions have (11-15)% increased Critical Damage Bonus", statOrder = { 9023 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (11-15)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing3"] = { type = "Suffix", affix = "of Elimination", "Minions have (16-20)% increased Critical Damage Bonus", statOrder = { 9023 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (16-20)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing4"] = { type = "Suffix", affix = "of Devastation", "Minions have (21-25)% increased Critical Damage Bonus", statOrder = { 9023 }, level = 57, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (21-25)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing5"] = { type = "Suffix", affix = "of Eradication", "Minions have (26-30)% increased Critical Damage Bonus", statOrder = { 9023 }, level = 69, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (26-30)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing6"] = { type = "Suffix", affix = "of Extinction", "Minions have (31-35)% increased Critical Damage Bonus", statOrder = { 9023 }, level = 80, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (31-35)% increased Critical Damage Bonus" }, } }, ["MinionLifeRing1"] = { type = "Prefix", affix = "Bearing", "Minions have (7-10)% increased maximum Life", statOrder = { 1026 }, level = 18, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (7-10)% increased maximum Life" }, } }, ["MinionLifeRing2"] = { type = "Prefix", affix = "Bracing", "Minions have (11-14)% increased maximum Life", statOrder = { 1026 }, level = 29, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (11-14)% increased maximum Life" }, } }, ["MinionLifeRing3"] = { type = "Prefix", affix = "Toughening", "Minions have (15-18)% increased maximum Life", statOrder = { 1026 }, level = 41, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (15-18)% increased maximum Life" }, } }, ["MinionLifeRing4"] = { type = "Prefix", affix = "Reinforcing", "Minions have (19-22)% increased maximum Life", statOrder = { 1026 }, level = 52, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (19-22)% increased maximum Life" }, } }, ["MinionLifeRing5"] = { type = "Prefix", affix = "Bolstering", "Minions have (23-26)% increased maximum Life", statOrder = { 1026 }, level = 67, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-26)% increased maximum Life" }, } }, ["MinionLifeRing6"] = { type = "Prefix", affix = "Fortifying", "Minions have (27-30)% increased maximum Life", statOrder = { 1026 }, level = 75, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (27-30)% increased maximum Life" }, } }, - ["MinionReviveSpeed1"] = { type = "Prefix", affix = "Stirring", "Minions Revive (1-2)% faster", statOrder = { 9085 }, level = 24, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (1-2)% faster" }, } }, - ["MinionReviveSpeed2"] = { type = "Prefix", affix = "Rousing", "Minions Revive (3-5)% faster", statOrder = { 9085 }, level = 45, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (3-5)% faster" }, } }, - ["MinionReviveSpeed3"] = { type = "Prefix", affix = "Waking", "Minions Revive (7-9)% faster", statOrder = { 9085 }, level = 63, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (7-9)% faster" }, } }, - ["MinionReviveSpeed4"] = { type = "Prefix", affix = "Restless", "Minions Revive (10-12)% faster", statOrder = { 9085 }, level = 76, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-12)% faster" }, } }, - ["MinionCommandSkillDamage1"] = { type = "Prefix", affix = "Guide's", "Minions deal (13-20)% increased Damage with Command Skills", statOrder = { 9027 }, level = 18, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (13-20)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage2"] = { type = "Prefix", affix = "Lookout's", "Minions deal (21-28)% increased Damage with Command Skills", statOrder = { 9027 }, level = 35, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (21-28)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage3"] = { type = "Prefix", affix = "Watcher's", "Minions deal (29-36)% increased Damage with Command Skills", statOrder = { 9027 }, level = 44, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (29-36)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage4"] = { type = "Prefix", affix = "Sentry's", "Minions deal (37-44)% increased Damage with Command Skills", statOrder = { 9027 }, level = 52, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (37-44)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage5"] = { type = "Prefix", affix = "Shepherd's", "Minions deal (45-52)% increased Damage with Command Skills", statOrder = { 9027 }, level = 63, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (45-52)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage6"] = { type = "Prefix", affix = "Custodian's", "Minions deal (53-61)% increased Damage with Command Skills", statOrder = { 9027 }, level = 81, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (53-61)% increased Damage with Command Skills" }, } }, + ["MinionReviveSpeed1"] = { type = "Prefix", affix = "Stirring", "Minions Revive (1-2)% faster", statOrder = { 9076 }, level = 24, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (1-2)% faster" }, } }, + ["MinionReviveSpeed2"] = { type = "Prefix", affix = "Rousing", "Minions Revive (3-5)% faster", statOrder = { 9076 }, level = 45, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (3-5)% faster" }, } }, + ["MinionReviveSpeed3"] = { type = "Prefix", affix = "Waking", "Minions Revive (7-9)% faster", statOrder = { 9076 }, level = 63, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (7-9)% faster" }, } }, + ["MinionReviveSpeed4"] = { type = "Prefix", affix = "Restless", "Minions Revive (10-12)% faster", statOrder = { 9076 }, level = 76, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-12)% faster" }, } }, + ["MinionCommandSkillDamage1"] = { type = "Prefix", affix = "Guide's", "Minions deal (13-20)% increased Damage with Command Skills", statOrder = { 9018 }, level = 18, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (13-20)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage2"] = { type = "Prefix", affix = "Lookout's", "Minions deal (21-28)% increased Damage with Command Skills", statOrder = { 9018 }, level = 35, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (21-28)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage3"] = { type = "Prefix", affix = "Watcher's", "Minions deal (29-36)% increased Damage with Command Skills", statOrder = { 9018 }, level = 44, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (29-36)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage4"] = { type = "Prefix", affix = "Sentry's", "Minions deal (37-44)% increased Damage with Command Skills", statOrder = { 9018 }, level = 52, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (37-44)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage5"] = { type = "Prefix", affix = "Shepherd's", "Minions deal (45-52)% increased Damage with Command Skills", statOrder = { 9018 }, level = 63, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (45-52)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage6"] = { type = "Prefix", affix = "Custodian's", "Minions deal (53-61)% increased Damage with Command Skills", statOrder = { 9018 }, level = 81, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (53-61)% increased Damage with Command Skills" }, } }, ["MinionGemLevelBelt1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 972 }, level = 36, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, ["MinionGemLevelBelt2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 972 }, level = 64, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["MinionImmobilisationBuildup1"] = { type = "Suffix", affix = "of Clutching", "Minions have (20-25)% increased Immobilisation buildup", statOrder = { 9058 }, level = 16, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (20-25)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup2"] = { type = "Suffix", affix = "of Grasping", "Minions have (26-31)% increased Immobilisation buildup", statOrder = { 9058 }, level = 34, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (26-31)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup3"] = { type = "Suffix", affix = "of Gripping", "Minions have (32-37)% increased Immobilisation buildup", statOrder = { 9058 }, level = 48, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (32-37)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup4"] = { type = "Suffix", affix = "of Snaring", "Minions have (38-43)% increased Immobilisation buildup", statOrder = { 9058 }, level = 56, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (38-43)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup5"] = { type = "Suffix", affix = "of Grappling", "Minions have (44-49)% increased Immobilisation buildup", statOrder = { 9058 }, level = 65, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (44-49)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup6"] = { type = "Suffix", affix = "of Seizing", "Minions have (50-55)% increased Immobilisation buildup", statOrder = { 9058 }, level = 74, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (50-55)% increased Immobilisation buildup" }, } }, - ["OfferingDuration1"] = { type = "Suffix", affix = "of Tradition", "Offering Skills have (6-15)% increased Duration", statOrder = { 9355 }, level = 15, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (6-15)% increased Duration" }, } }, - ["OfferingDuration2"] = { type = "Suffix", affix = "of Observance", "Offering Skills have (16-25)% increased Duration", statOrder = { 9355 }, level = 29, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (16-25)% increased Duration" }, } }, - ["OfferingDuration3"] = { type = "Suffix", affix = "of the Rite", "Offering Skills have (26-35)% increased Duration", statOrder = { 9355 }, level = 47, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (26-35)% increased Duration" }, } }, - ["OfferingDuration4"] = { type = "Suffix", affix = "of Ceremony", "Offering Skills have (36-45)% increased Duration", statOrder = { 9355 }, level = 68, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (36-45)% increased Duration" }, } }, - ["OfferingDuration5"] = { type = "Suffix", affix = "of Liturgy", "Offering Skills have (46-55)% increased Duration", statOrder = { 9355 }, level = 79, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (46-55)% increased Duration" }, } }, + ["MinionImmobilisationBuildup1"] = { type = "Suffix", affix = "of Clutching", "Minions have (20-25)% increased Immobilisation buildup", statOrder = { 9049 }, level = 16, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (20-25)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup2"] = { type = "Suffix", affix = "of Grasping", "Minions have (26-31)% increased Immobilisation buildup", statOrder = { 9049 }, level = 34, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (26-31)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup3"] = { type = "Suffix", affix = "of Gripping", "Minions have (32-37)% increased Immobilisation buildup", statOrder = { 9049 }, level = 48, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (32-37)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup4"] = { type = "Suffix", affix = "of Snaring", "Minions have (38-43)% increased Immobilisation buildup", statOrder = { 9049 }, level = 56, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (38-43)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup5"] = { type = "Suffix", affix = "of Grappling", "Minions have (44-49)% increased Immobilisation buildup", statOrder = { 9049 }, level = 65, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (44-49)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup6"] = { type = "Suffix", affix = "of Seizing", "Minions have (50-55)% increased Immobilisation buildup", statOrder = { 9049 }, level = 74, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (50-55)% increased Immobilisation buildup" }, } }, + ["OfferingDuration1"] = { type = "Suffix", affix = "of Tradition", "Offering Skills have (6-15)% increased Duration", statOrder = { 9346 }, level = 15, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (6-15)% increased Duration" }, } }, + ["OfferingDuration2"] = { type = "Suffix", affix = "of Observance", "Offering Skills have (16-25)% increased Duration", statOrder = { 9346 }, level = 29, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (16-25)% increased Duration" }, } }, + ["OfferingDuration3"] = { type = "Suffix", affix = "of the Rite", "Offering Skills have (26-35)% increased Duration", statOrder = { 9346 }, level = 47, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (26-35)% increased Duration" }, } }, + ["OfferingDuration4"] = { type = "Suffix", affix = "of Ceremony", "Offering Skills have (36-45)% increased Duration", statOrder = { 9346 }, level = 68, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (36-45)% increased Duration" }, } }, + ["OfferingDuration5"] = { type = "Suffix", affix = "of Liturgy", "Offering Skills have (46-55)% increased Duration", statOrder = { 9346 }, level = 79, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (46-55)% increased Duration" }, } }, ["MinionAreaOfEffect1"] = { type = "Suffix", affix = "of Scurrying", "Minions have (5-8)% increased Area of Effect", statOrder = { 2759 }, level = 23, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (5-8)% increased Area of Effect" }, } }, ["MinionAreaOfEffect2"] = { type = "Suffix", affix = "of Bustling", "Minions have (9-12)% increased Area of Effect", statOrder = { 2759 }, level = 36, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (9-12)% increased Area of Effect" }, } }, ["MinionAreaOfEffect3"] = { type = "Suffix", affix = "of Trampling", "Minions have (13-16)% increased Area of Effect", statOrder = { 2759 }, level = 49, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (13-16)% increased Area of Effect" }, } }, @@ -2307,12 +1896,12 @@ return { ["SpellDamageRing6"] = { type = "Prefix", affix = "Incanter's", "(26-29)% increased Spell Damage", statOrder = { 871 }, level = 63, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-29)% increased Spell Damage" }, } }, ["SpellDamageRing7"] = { type = "Prefix", affix = "Glyphic", "(30-34)% increased Spell Damage", statOrder = { 871 }, level = 71, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, } }, ["SpellDamageRing8"] = { type = "Prefix", affix = "Runic", "(35-39)% increased Spell Damage", statOrder = { 871 }, level = 82, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, } }, - ["SpellCostEfficiency1"] = { type = "Prefix", affix = "Thoughtful", "(7-9)% increased Mana Cost Efficiency of Spells", statOrder = { 4751 }, level = 12, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(7-9)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency2"] = { type = "Prefix", affix = "Considerate", "(10-12)% increased Mana Cost Efficiency of Spells", statOrder = { 4751 }, level = 29, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(10-12)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency3"] = { type = "Prefix", affix = "Prudent", "(13-15)% increased Mana Cost Efficiency of Spells", statOrder = { 4751 }, level = 42, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(13-15)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency4"] = { type = "Prefix", affix = "Astute", "(16-18)% increased Mana Cost Efficiency of Spells", statOrder = { 4751 }, level = 53, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(16-18)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency5"] = { type = "Prefix", affix = "Sagacious", "(19-22)% increased Mana Cost Efficiency of Spells", statOrder = { 4751 }, level = 64, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(19-22)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency6"] = { type = "Prefix", affix = "Calculating", "(23-26)% increased Mana Cost Efficiency of Spells", statOrder = { 4751 }, level = 77, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(23-26)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency1"] = { type = "Prefix", affix = "Thoughtful", "(7-9)% increased Mana Cost Efficiency of Spells", statOrder = { 4747 }, level = 12, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(7-9)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency2"] = { type = "Prefix", affix = "Considerate", "(10-12)% increased Mana Cost Efficiency of Spells", statOrder = { 4747 }, level = 29, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(10-12)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency3"] = { type = "Prefix", affix = "Prudent", "(13-15)% increased Mana Cost Efficiency of Spells", statOrder = { 4747 }, level = 42, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(13-15)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency4"] = { type = "Prefix", affix = "Astute", "(16-18)% increased Mana Cost Efficiency of Spells", statOrder = { 4747 }, level = 53, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(16-18)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency5"] = { type = "Prefix", affix = "Sagacious", "(19-22)% increased Mana Cost Efficiency of Spells", statOrder = { 4747 }, level = 64, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(19-22)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency6"] = { type = "Prefix", affix = "Calculating", "(23-26)% increased Mana Cost Efficiency of Spells", statOrder = { 4747 }, level = 77, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(23-26)% increased Mana Cost Efficiency of Spells" }, } }, ["ArcaneSurgeEffect1"] = { type = "Prefix", affix = "Eager", "(12-18)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 24, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(12-18)% increased effect of Arcane Surge on you" }, } }, ["ArcaneSurgeEffect2"] = { type = "Prefix", affix = "Enthusiastic", "(19-25)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 47, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(19-25)% increased effect of Arcane Surge on you" }, } }, ["ArcaneSurgeEffect3"] = { type = "Prefix", affix = "Spirited", "(26-32)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 61, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(26-32)% increased effect of Arcane Surge on you" }, } }, @@ -2329,43 +1918,43 @@ return { ["SpellCriticalStrikeMultiplierRing4"] = { type = "Suffix", affix = "of Fury", "(18-21)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 57, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(18-21)% increased Critical Spell Damage Bonus" }, } }, ["SpellCriticalStrikeMultiplierRing5"] = { type = "Suffix", affix = "of Ferocity", "(22-25)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 69, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(22-25)% increased Critical Spell Damage Bonus" }, } }, ["SpellCriticalStrikeMultiplierRing6"] = { type = "Suffix", affix = "of Destruction", "(26-29)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 80, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(26-29)% increased Critical Spell Damage Bonus" }, } }, - ["SpellDamageDuringManaFlaskEffect1"] = { type = "Prefix", affix = "Activating", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 9999 }, level = 12, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect2"] = { type = "Prefix", affix = "Stimulating", "(26-31)% increased Spell Damage during any Flask Effect", statOrder = { 9999 }, level = 26, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(26-31)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect3"] = { type = "Prefix", affix = "Awakening", "(32-37)% increased Spell Damage during any Flask Effect", statOrder = { 9999 }, level = 39, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(32-37)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect4"] = { type = "Prefix", affix = "Elevating", "(38-43)% increased Spell Damage during any Flask Effect", statOrder = { 9999 }, level = 53, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(38-43)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect5"] = { type = "Prefix", affix = "Energising", "(44-49)% increased Spell Damage during any Flask Effect", statOrder = { 9999 }, level = 67, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(44-49)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect6"] = { type = "Prefix", affix = "Exhilarating", "(50-55)% increased Spell Damage during any Flask Effect", statOrder = { 9999 }, level = 80, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(50-55)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect1"] = { type = "Prefix", affix = "Activating", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 9990 }, level = 12, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect2"] = { type = "Prefix", affix = "Stimulating", "(26-31)% increased Spell Damage during any Flask Effect", statOrder = { 9990 }, level = 26, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(26-31)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect3"] = { type = "Prefix", affix = "Awakening", "(32-37)% increased Spell Damage during any Flask Effect", statOrder = { 9990 }, level = 39, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(32-37)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect4"] = { type = "Prefix", affix = "Elevating", "(38-43)% increased Spell Damage during any Flask Effect", statOrder = { 9990 }, level = 53, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(38-43)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect5"] = { type = "Prefix", affix = "Energising", "(44-49)% increased Spell Damage during any Flask Effect", statOrder = { 9990 }, level = 67, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(44-49)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect6"] = { type = "Prefix", affix = "Exhilarating", "(50-55)% increased Spell Damage during any Flask Effect", statOrder = { 9990 }, level = 80, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(50-55)% increased Spell Damage during any Flask Effect" }, } }, ["DamageRemovedFromManaBeforeLife1"] = { type = "Prefix", affix = "Taxing", "(4-6)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 23, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(4-6)% of Damage is taken from Mana before Life" }, } }, ["DamageRemovedFromManaBeforeLife2"] = { type = "Prefix", affix = "Draining", "(7-9)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 39, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(7-9)% of Damage is taken from Mana before Life" }, } }, ["DamageRemovedFromManaBeforeLife3"] = { type = "Prefix", affix = "Exhausting", "(10-12)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 52, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-12)% of Damage is taken from Mana before Life" }, } }, ["DamageRemovedFromManaBeforeLife4"] = { type = "Prefix", affix = "Enervating", "(13-15)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 77, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(13-15)% of Damage is taken from Mana before Life" }, } }, - ["RemnantGrantEffectTwiceChance1"] = { type = "Suffix", affix = "of Accumulation", "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5804 }, level = 24, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance2"] = { type = "Suffix", affix = "of Proliferation", "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5804 }, level = 37, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance3"] = { type = "Suffix", affix = "of Expansion", "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5804 }, level = 49, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance4"] = { type = "Suffix", affix = "of Magnification", "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5804 }, level = 61, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance5"] = { type = "Suffix", affix = "of Multiplication", "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5804 }, level = 73, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["CastSpeedDuringManaFlaskEffect1"] = { type = "Suffix", affix = "of Hurrying", "(8-10)% increased Cast Speed during any Flask Effect", statOrder = { 5332 }, level = 22, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(8-10)% increased Cast Speed during any Flask Effect" }, } }, - ["CastSpeedDuringManaFlaskEffect2"] = { type = "Suffix", affix = "of Quickening", "(11-13)% increased Cast Speed during any Flask Effect", statOrder = { 5332 }, level = 41, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(11-13)% increased Cast Speed during any Flask Effect" }, } }, - ["CastSpeedDuringManaFlaskEffect3"] = { type = "Suffix", affix = "of Hastening", "(14-16)% increased Cast Speed during any Flask Effect", statOrder = { 5332 }, level = 59, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(14-16)% increased Cast Speed during any Flask Effect" }, } }, - ["CastSpeedDuringManaFlaskEffect4"] = { type = "Suffix", affix = "of Accelerating", "(17-19)% increased Cast Speed during any Flask Effect", statOrder = { 5332 }, level = 76, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(17-19)% increased Cast Speed during any Flask Effect" }, } }, + ["RemnantGrantEffectTwiceChance1"] = { type = "Suffix", affix = "of Accumulation", "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5800 }, level = 24, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["RemnantGrantEffectTwiceChance2"] = { type = "Suffix", affix = "of Proliferation", "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5800 }, level = 37, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["RemnantGrantEffectTwiceChance3"] = { type = "Suffix", affix = "of Expansion", "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5800 }, level = 49, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["RemnantGrantEffectTwiceChance4"] = { type = "Suffix", affix = "of Magnification", "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5800 }, level = 61, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["RemnantGrantEffectTwiceChance5"] = { type = "Suffix", affix = "of Multiplication", "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5800 }, level = 73, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["CastSpeedDuringManaFlaskEffect1"] = { type = "Suffix", affix = "of Hurrying", "(8-10)% increased Cast Speed during any Flask Effect", statOrder = { 5328 }, level = 22, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(8-10)% increased Cast Speed during any Flask Effect" }, } }, + ["CastSpeedDuringManaFlaskEffect2"] = { type = "Suffix", affix = "of Quickening", "(11-13)% increased Cast Speed during any Flask Effect", statOrder = { 5328 }, level = 41, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(11-13)% increased Cast Speed during any Flask Effect" }, } }, + ["CastSpeedDuringManaFlaskEffect3"] = { type = "Suffix", affix = "of Hastening", "(14-16)% increased Cast Speed during any Flask Effect", statOrder = { 5328 }, level = 59, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(14-16)% increased Cast Speed during any Flask Effect" }, } }, + ["CastSpeedDuringManaFlaskEffect4"] = { type = "Suffix", affix = "of Accelerating", "(17-19)% increased Cast Speed during any Flask Effect", statOrder = { 5328 }, level = 76, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(17-19)% increased Cast Speed during any Flask Effect" }, } }, ["CurseEffectiveness1"] = { type = "Prefix", affix = "Hexing", "(2-3)% increased Curse Magnitudes", statOrder = { 2376 }, level = 31, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(2-3)% increased Curse Magnitudes" }, } }, ["CurseEffectiveness2"] = { type = "Prefix", affix = "Condemning", "(4-6)% increased Curse Magnitudes", statOrder = { 2376 }, level = 47, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(4-6)% increased Curse Magnitudes" }, } }, ["CurseEffectiveness3"] = { type = "Prefix", affix = "Maledicting", "(7-9)% increased Curse Magnitudes", statOrder = { 2376 }, level = 61, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(7-9)% increased Curse Magnitudes" }, } }, ["CurseEffectiveness4"] = { type = "Prefix", affix = "Dooming", "(10-12)% increased Curse Magnitudes", statOrder = { 2376 }, level = 77, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-12)% increased Curse Magnitudes" }, } }, ["GlobalIncreaseSpellSkillGemLevel1"] = { type = "Suffix", affix = "of Jordan", "+1 to Level of all Spell Skills", statOrder = { 950 }, level = 45, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["SpellAreaOfEffectPercent1"] = { type = "Suffix", affix = "of Analysis", "Spell Skills have (6-8)% increased Area of Effect", statOrder = { 9991 }, level = 23, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (6-8)% increased Area of Effect" }, } }, - ["SpellAreaOfEffectPercent2"] = { type = "Suffix", affix = "of Experimentation", "Spell Skills have (9-11)% increased Area of Effect", statOrder = { 9991 }, level = 48, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (9-11)% increased Area of Effect" }, } }, - ["SpellAreaOfEffectPercent3"] = { type = "Suffix", affix = "of Understanding", "Spell Skills have (12-14)% increased Area of Effect", statOrder = { 9991 }, level = 69, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (12-14)% increased Area of Effect" }, } }, - ["RemnantPickupRadiusIncrease1"] = { type = "Suffix", affix = "of Receiving", "Remnants can be collected from (12-19)% further away", statOrder = { 9738 }, level = 26, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (12-19)% further away" }, } }, - ["RemnantPickupRadiusIncrease2"] = { type = "Suffix", affix = "of Collecting", "Remnants can be collected from (20-27)% further away", statOrder = { 9738 }, level = 38, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-27)% further away" }, } }, - ["RemnantPickupRadiusIncrease3"] = { type = "Suffix", affix = "of Amassing", "Remnants can be collected from (28-35)% further away", statOrder = { 9738 }, level = 51, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (28-35)% further away" }, } }, - ["RemnantPickupRadiusIncrease4"] = { type = "Suffix", affix = "of Absorbing", "Remnants can be collected from (36-43)% further away", statOrder = { 9738 }, level = 64, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (36-43)% further away" }, } }, - ["RemnantPickupRadiusIncrease5"] = { type = "Suffix", affix = "of Engulfing", "Remnants can be collected from (44-51)% further away", statOrder = { 9738 }, level = 76, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (44-51)% further away" }, } }, - ["SpellCooldownRecovery1"] = { type = "Prefix", affix = "Imagninative", "Spells have (2-4)% increased Cooldown Recovery Rate", statOrder = { 4748 }, level = 12, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (2-4)% increased Cooldown Recovery Rate" }, } }, - ["SpellCooldownRecovery2"] = { type = "Prefix", affix = "Inventive", "Spells have (6-10)% increased Cooldown Recovery Rate", statOrder = { 4748 }, level = 28, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (6-10)% increased Cooldown Recovery Rate" }, } }, - ["SpellCooldownRecovery3"] = { type = "Prefix", affix = "Pioneering", "Spells have (11-15)% increased Cooldown Recovery Rate", statOrder = { 4748 }, level = 41, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (11-15)% increased Cooldown Recovery Rate" }, } }, - ["SpellCooldownRecovery4"] = { type = "Prefix", affix = "Trailblazing", "Spells have (16-20)% increased Cooldown Recovery Rate", statOrder = { 4748 }, level = 59, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (16-20)% increased Cooldown Recovery Rate" }, } }, - ["SpellCooldownRecovery5"] = { type = "Prefix", affix = "Ingenious", "Spells have (21-25)% increased Cooldown Recovery Rate", statOrder = { 4748 }, level = 74, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (21-25)% increased Cooldown Recovery Rate" }, } }, + ["SpellAreaOfEffectPercent1"] = { type = "Suffix", affix = "of Analysis", "Spell Skills have (6-8)% increased Area of Effect", statOrder = { 9982 }, level = 23, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (6-8)% increased Area of Effect" }, } }, + ["SpellAreaOfEffectPercent2"] = { type = "Suffix", affix = "of Experimentation", "Spell Skills have (9-11)% increased Area of Effect", statOrder = { 9982 }, level = 48, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (9-11)% increased Area of Effect" }, } }, + ["SpellAreaOfEffectPercent3"] = { type = "Suffix", affix = "of Understanding", "Spell Skills have (12-14)% increased Area of Effect", statOrder = { 9982 }, level = 69, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (12-14)% increased Area of Effect" }, } }, + ["RemnantPickupRadiusIncrease1"] = { type = "Suffix", affix = "of Receiving", "Remnants can be collected from (12-19)% further away", statOrder = { 9729 }, level = 26, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (12-19)% further away" }, } }, + ["RemnantPickupRadiusIncrease2"] = { type = "Suffix", affix = "of Collecting", "Remnants can be collected from (20-27)% further away", statOrder = { 9729 }, level = 38, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-27)% further away" }, } }, + ["RemnantPickupRadiusIncrease3"] = { type = "Suffix", affix = "of Amassing", "Remnants can be collected from (28-35)% further away", statOrder = { 9729 }, level = 51, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (28-35)% further away" }, } }, + ["RemnantPickupRadiusIncrease4"] = { type = "Suffix", affix = "of Absorbing", "Remnants can be collected from (36-43)% further away", statOrder = { 9729 }, level = 64, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (36-43)% further away" }, } }, + ["RemnantPickupRadiusIncrease5"] = { type = "Suffix", affix = "of Engulfing", "Remnants can be collected from (44-51)% further away", statOrder = { 9729 }, level = 76, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (44-51)% further away" }, } }, + ["SpellCooldownRecovery1"] = { type = "Prefix", affix = "Imagninative", "Spells have (2-4)% increased Cooldown Recovery Rate", statOrder = { 4744 }, level = 12, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (2-4)% increased Cooldown Recovery Rate" }, } }, + ["SpellCooldownRecovery2"] = { type = "Prefix", affix = "Inventive", "Spells have (6-10)% increased Cooldown Recovery Rate", statOrder = { 4744 }, level = 28, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (6-10)% increased Cooldown Recovery Rate" }, } }, + ["SpellCooldownRecovery3"] = { type = "Prefix", affix = "Pioneering", "Spells have (11-15)% increased Cooldown Recovery Rate", statOrder = { 4744 }, level = 41, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (11-15)% increased Cooldown Recovery Rate" }, } }, + ["SpellCooldownRecovery4"] = { type = "Prefix", affix = "Trailblazing", "Spells have (16-20)% increased Cooldown Recovery Rate", statOrder = { 4744 }, level = 59, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (16-20)% increased Cooldown Recovery Rate" }, } }, + ["SpellCooldownRecovery5"] = { type = "Prefix", affix = "Ingenious", "Spells have (21-25)% increased Cooldown Recovery Rate", statOrder = { 4744 }, level = 74, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (21-25)% increased Cooldown Recovery Rate" }, } }, ["CastSpeedJewellery1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, ["CastSpeedJewellery2"] = { type = "Suffix", affix = "of Nimbleness", "(13-15)% increased Cast Speed", statOrder = { 987 }, level = 18, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-15)% increased Cast Speed" }, } }, ["CastSpeedJewellery3"] = { type = "Suffix", affix = "of Expertise", "(16-18)% increased Cast Speed", statOrder = { 987 }, level = 35, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(16-18)% increased Cast Speed" }, } }, @@ -2415,39 +2004,39 @@ return { ["ConvertedNearbyAlliesAddedChaosDamage7"] = { type = "Prefix", affix = "Twisted", "Allies in your Presence deal (17-19) to (30-31) added Attack Chaos Damage", statOrder = { 911 }, level = 60, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (17-19) to (30-31) added Attack Chaos Damage" }, } }, ["ConvertedNearbyAlliesAddedChaosDamage8"] = { type = "Prefix", affix = "Malevolent", "Allies in your Presence deal (20-23) to (32-37) added Attack Chaos Damage", statOrder = { 911 }, level = 65, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (20-23) to (32-37) added Attack Chaos Damage" }, } }, ["ConvertedNearbyAlliesAddedChaosDamage9"] = { type = "Prefix", affix = "Baleful", "Allies in your Presence deal (24-29) to (38-47) added Attack Chaos Damage", statOrder = { 911 }, level = 75, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (24-29) to (38-47) added Attack Chaos Damage" }, } }, - ["ConvertedAbyssChaosPenetration"] = { type = "Prefix", affix = "Abyssal", "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance", statOrder = { 7641 }, level = 65, group = "LocalChaosPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance" }, } }, + ["ConvertedAbyssChaosPenetration"] = { type = "Prefix", affix = "Abyssal", "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance", statOrder = { 7637 }, level = 65, group = "LocalChaosPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance" }, } }, ["ConvertedSoulHybridResistance1"] = { type = "Suffix", affix = "of the Soul", "+(3-41)% to Chaos Resistance", statOrder = { 1024 }, level = 65, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-41)% to Chaos Resistance" }, } }, - ["ConvertedAlloyDamageAsExtraColdWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9244 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraColdTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9244 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraLightningWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9256 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraLightningTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9256 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraChaosWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9240 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraChaosTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9240 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraColdWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9235 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraColdTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9235 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraLightningWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9247 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraLightningTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9247 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraChaosWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9231 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraChaosTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9231 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, ["TimeInfluenceIncreasedDuration1"] = { type = "Suffix", affix = "of Chronomancy", "(15-19)% increased Skill Effect Duration", statOrder = { 1645 }, level = 45, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-19)% increased Skill Effect Duration" }, } }, ["TimeInfluenceIncreasedDuration2"] = { type = "Suffix", affix = "of Chronomancy", "(20-29)% increased Skill Effect Duration", statOrder = { 1645 }, level = 55, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(20-29)% increased Skill Effect Duration" }, } }, ["TimeInfluenceIncreasedDuration3"] = { type = "Suffix", affix = "of Chronomancy", "(30-40)% increased Skill Effect Duration", statOrder = { 1645 }, level = 78, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(30-40)% increased Skill Effect Duration" }, } }, - ["TimeInfluenceCooldownRecovery1"] = { type = "Suffix", affix = "of Chronomancy", "(12-17)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 45, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(12-17)% increased Cooldown Recovery Rate" }, } }, - ["TimeInfluenceCooldownRecovery2"] = { type = "Suffix", affix = "of Chronomancy", "(18-23)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 55, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(18-23)% increased Cooldown Recovery Rate" }, } }, - ["TimeInfluenceCooldownRecovery3"] = { type = "Suffix", affix = "of Chronomancy", "(24-30)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 78, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(24-30)% increased Cooldown Recovery Rate" }, } }, - ["TimeInfluenceMovementSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(24-26)% increased Movement Speed", "(10-15)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4747 }, level = 65, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(10-15)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(24-26)% increased Movement Speed" }, } }, - ["TimeInfluenceMovementSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(27-29)% increased Movement Speed", "(16-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4747 }, level = 70, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(16-20)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(27-29)% increased Movement Speed" }, } }, - ["TimeInfluenceMovementSpeed3"] = { type = "Prefix", affix = "Uhtred's", "(30-32)% increased Movement Speed", "(21-25)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4747 }, level = 78, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(21-25)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(30-32)% increased Movement Speed" }, } }, - ["TimeInfluenceSprintSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(10-14)% increased Movement Speed while Sprinting", statOrder = { 10069 }, level = 45, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(10-14)% increased Movement Speed while Sprinting" }, } }, - ["TimeInfluenceSprintSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(17-23)% increased Movement Speed while Sprinting", statOrder = { 10069 }, level = 78, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(17-23)% increased Movement Speed while Sprinting" }, } }, - ["TimeInfluenceDodgeRoll1"] = { type = "Prefix", affix = "Uhtred's", "+(0.3-0.4) metres to Dodge Roll distance", statOrder = { 6200 }, level = 45, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.3-0.4) metres to Dodge Roll distance" }, } }, - ["TimeInfluenceDodgeRoll2"] = { type = "Prefix", affix = "Uhtred's", "+(0.4-0.5) metres to Dodge Roll distance", statOrder = { 6200 }, level = 78, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.4-0.5) metres to Dodge Roll distance" }, } }, - ["TimeInfluenceCharges1"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (7-10)% chance to not remove Charges but still count as consuming them", statOrder = { 5603 }, level = 45, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (7-10)% chance to not remove Charges but still count as consuming them" }, } }, - ["TimeInfluenceCharges2"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (11-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5603 }, level = 78, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (11-15)% chance to not remove Charges but still count as consuming them" }, } }, - ["TimeInfluenceDebuffExpiry1"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (50-69)% faster", statOrder = { 6099 }, level = 45, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (50-69)% faster" }, } }, - ["TimeInfluenceDebuffExpiry2"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (70-89)% faster", statOrder = { 6099 }, level = 78, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (70-89)% faster" }, } }, + ["TimeInfluenceCooldownRecovery1"] = { type = "Suffix", affix = "of Chronomancy", "(12-17)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 45, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(12-17)% increased Cooldown Recovery Rate" }, } }, + ["TimeInfluenceCooldownRecovery2"] = { type = "Suffix", affix = "of Chronomancy", "(18-23)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 55, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(18-23)% increased Cooldown Recovery Rate" }, } }, + ["TimeInfluenceCooldownRecovery3"] = { type = "Suffix", affix = "of Chronomancy", "(24-30)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 78, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(24-30)% increased Cooldown Recovery Rate" }, } }, + ["TimeInfluenceMovementSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(24-26)% increased Movement Speed", "(10-15)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4743 }, level = 65, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(10-15)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(24-26)% increased Movement Speed" }, } }, + ["TimeInfluenceMovementSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(27-29)% increased Movement Speed", "(16-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4743 }, level = 70, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(16-20)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(27-29)% increased Movement Speed" }, } }, + ["TimeInfluenceMovementSpeed3"] = { type = "Prefix", affix = "Uhtred's", "(30-32)% increased Movement Speed", "(21-25)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4743 }, level = 78, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(21-25)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(30-32)% increased Movement Speed" }, } }, + ["TimeInfluenceSprintSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(10-14)% increased Movement Speed while Sprinting", statOrder = { 10060 }, level = 45, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(10-14)% increased Movement Speed while Sprinting" }, } }, + ["TimeInfluenceSprintSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(17-23)% increased Movement Speed while Sprinting", statOrder = { 10060 }, level = 78, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(17-23)% increased Movement Speed while Sprinting" }, } }, + ["TimeInfluenceDodgeRoll1"] = { type = "Prefix", affix = "Uhtred's", "+(0.3-0.4) metres to Dodge Roll distance", statOrder = { 6196 }, level = 45, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.3-0.4) metres to Dodge Roll distance" }, } }, + ["TimeInfluenceDodgeRoll2"] = { type = "Prefix", affix = "Uhtred's", "+(0.4-0.5) metres to Dodge Roll distance", statOrder = { 6196 }, level = 78, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.4-0.5) metres to Dodge Roll distance" }, } }, + ["TimeInfluenceCharges1"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (7-10)% chance to not remove Charges but still count as consuming them", statOrder = { 5599 }, level = 45, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (7-10)% chance to not remove Charges but still count as consuming them" }, } }, + ["TimeInfluenceCharges2"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (11-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5599 }, level = 78, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (11-15)% chance to not remove Charges but still count as consuming them" }, } }, + ["TimeInfluenceDebuffExpiry1"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (50-69)% faster", statOrder = { 6095 }, level = 45, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (50-69)% faster" }, } }, + ["TimeInfluenceDebuffExpiry2"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (70-89)% faster", statOrder = { 6095 }, level = 78, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (70-89)% faster" }, } }, ["SoulInfluenceIncreasedLifePercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased maximum Life", statOrder = { 889 }, level = 65, group = "MaximumLifeIncreasePercent", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(1-20)% increased maximum Life" }, } }, ["SoulInfluenceIncreasedManaPercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased maximum Mana", statOrder = { 894 }, level = 65, group = "MaximumManaIncreasePercent", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(1-20)% increased maximum Mana" }, } }, ["SoulInfluenceIncreasedSpiritPercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased Spirit", statOrder = { 1417 }, level = 65, group = "MaximumSpiritPercentageAllowBaseSpirit", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1416406066] = { "(1-20)% increased Spirit" }, } }, - ["SoulInfluenceReducedAilmentDurationAgainstYou"] = { type = "Suffix", affix = "of the Soul", "(5-50)% reduced Duration of Ailments on You", statOrder = { 4644 }, level = 65, group = "AilmentDurationOnYou", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "poison", "physical", "elemental", "fire", "cold", "lightning", "chaos", "ailment" }, tradeHashes = { [548070846] = { "(5-50)% reduced Duration of Ailments on You" }, } }, + ["SoulInfluenceReducedAilmentDurationAgainstYou"] = { type = "Suffix", affix = "of the Soul", "(5-50)% reduced Duration of Ailments on You", statOrder = { 4641 }, level = 65, group = "AilmentDurationOnYou", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "poison", "physical", "elemental", "fire", "cold", "lightning", "chaos", "ailment" }, tradeHashes = { [548070846] = { "(5-50)% reduced Duration of Ailments on You" }, } }, ["SoulInfluenceReducedCriticalDamageAgainstYou"] = { type = "Suffix", affix = "of the Soul", "Hits against you have (10-99)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 65, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (10-99)% reduced Critical Damage Bonus" }, } }, - ["SoulInfluenceFireAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Fire and Chaos Resistances", statOrder = { 6553 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(3-31)% to Fire and Chaos Resistances" }, } }, - ["SoulInfluenceColdAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Cold and Chaos Resistances", statOrder = { 5674 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(3-31)% to Cold and Chaos Resistances" }, } }, - ["SoulInfluenceLightningAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Lightning and Chaos Resistances", statOrder = { 7537 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(3-31)% to Lightning and Chaos Resistances" }, } }, + ["SoulInfluenceFireAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Fire and Chaos Resistances", statOrder = { 6549 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(3-31)% to Fire and Chaos Resistances" }, } }, + ["SoulInfluenceColdAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Cold and Chaos Resistances", statOrder = { 5670 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(3-31)% to Cold and Chaos Resistances" }, } }, + ["SoulInfluenceLightningAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Lightning and Chaos Resistances", statOrder = { 7533 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(3-31)% to Lightning and Chaos Resistances" }, } }, ["SoulInfluenceConvertedChaosAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(5-47)% to Chaos Resistance", statOrder = { 1024 }, level = 65, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-47)% to Chaos Resistance" }, } }, ["SoulInfluenceIncreasedLifeAndMana"] = { type = "Prefix", affix = "Medved's", "+(19-189) to maximum Life", "+(19-189) to maximum Mana", statOrder = { 887, 892 }, level = 65, group = "BaseLifeAndMana", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1050105434] = { "+(19-189) to maximum Mana" }, [3299347043] = { "+(19-189) to maximum Life" }, } }, ["SoulInfluenceSpiritDefencesHybridArmourEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Evasion", "+(1-24) to Spirit", statOrder = { 850, 895 }, level = 65, group = "LocalIncreasedArmourAndEvasionAndSpiritNoLife", weightKey = { "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-52)% increased Armour and Evasion" }, [2704225257] = { "+(1-24) to Spirit" }, } }, @@ -2462,36 +2051,36 @@ return { ["SoulInfluenceManaDefencesHybridArmour"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour", "+(7-57) to maximum Mana", statOrder = { 846, 892 }, level = 65, group = "LocalIncreasedArmourAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(6-52)% increased Armour" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, ["SoulInfluenceManaDefencesHybridEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion Rating", "+(7-57) to maximum Mana", statOrder = { 848, 892 }, level = 65, group = "LocalIncreasedEvasionAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(6-52)% increased Evasion Rating" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, ["SoulInfluenceManaDefencesHybridEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Energy Shield", "+(7-57) to maximum Mana", statOrder = { 849, 892 }, level = 65, group = "LocalIncreasedEnergyShieldAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-52)% increased Energy Shield" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, - ["BerserkInfluenceMaximumRage1"] = { type = "Prefix", affix = "Vorana's", "+(4-7) to Maximum Rage", statOrder = { 9609 }, level = 45, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(4-7) to Maximum Rage" }, } }, - ["BerserkInfluenceMaximumRage2"] = { type = "Prefix", affix = "Vorana's", "+(8-12) to Maximum Rage", statOrder = { 9609 }, level = 75, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } }, - ["BerserkInfluenceDamageWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Damage with Warcries", statOrder = { 10509 }, level = 45, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(20-34)% increased Damage with Warcries" }, } }, - ["BerserkInfluenceDamageWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-49)% increased Damage with Warcries", statOrder = { 10509 }, level = 65, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(35-49)% increased Damage with Warcries" }, } }, - ["BerserkInfluenceDamageWithWarcries3"] = { type = "Prefix", affix = "Vorana's", "(50-75)% increased Damage with Warcries", statOrder = { 10509 }, level = 75, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(50-75)% increased Damage with Warcries" }, } }, - ["BerserkInfluencePowerWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased total Power counted by Warcries", statOrder = { 10512 }, level = 45, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(20-34)% increased total Power counted by Warcries" }, } }, - ["BerserkInfluencePowerWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-55)% increased total Power counted by Warcries", statOrder = { 10512 }, level = 75, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(35-55)% increased total Power counted by Warcries" }, } }, - ["BerserkInfluenceArmourBreakMagnitude1"] = { type = "Prefix", affix = "Vorana's", "(15-24)% increased effect of Fully Broken Armour", statOrder = { 5236 }, level = 45, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(15-24)% increased effect of Fully Broken Armour" }, } }, - ["BerserkInfluenceArmourBreakMagnitude2"] = { type = "Prefix", affix = "Vorana's", "(25-39)% increased effect of Fully Broken Armour", statOrder = { 5236 }, level = 65, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(25-39)% increased effect of Fully Broken Armour" }, } }, - ["BerserkInfluenceArmourBreakMagnitude3"] = { type = "Prefix", affix = "Vorana's", "(40-60)% increased effect of Fully Broken Armour", statOrder = { 5236 }, level = 75, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(40-60)% increased effect of Fully Broken Armour" }, } }, - ["BerserkInfluenceGloryGeneration1"] = { type = "Prefix", affix = "Vorana's", "(20-49)% increased Glory generation", statOrder = { 6914 }, level = 45, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(20-49)% increased Glory generation" }, } }, - ["BerserkInfluenceGloryGeneration2"] = { type = "Prefix", affix = "Vorana's", "(50-85)% increased Glory generation", statOrder = { 6914 }, level = 75, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(50-85)% increased Glory generation" }, } }, - ["BerserkInfluenceRageCostEfficiency1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Rage Cost Efficiency", statOrder = { 4740 }, level = 45, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(20-34)% increased Rage Cost Efficiency" }, } }, - ["BerserkInfluenceRageCostEfficiency2"] = { type = "Prefix", affix = "Vorana's", "(35-60)% increased Rage Cost Efficiency", statOrder = { 4740 }, level = 75, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(35-60)% increased Rage Cost Efficiency" }, } }, - ["BerserkInfluenceRageLossDelay1"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts 1 second later", statOrder = { 9622 }, level = 45, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts 1 second later" }, } }, - ["BerserkInfluenceRageLossDelay2"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts (3-5) seconds later", statOrder = { 9622 }, level = 75, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts (3-5) seconds later" }, } }, - ["BerserkInfluenceRageWhenHit1"] = { type = "Suffix", affix = "of the Berserker", "Gain (4-5) Rage when Hit by an Enemy", statOrder = { 6875 }, level = 45, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (4-5) Rage when Hit by an Enemy" }, } }, - ["BerserkInfluenceRageWhenHit2"] = { type = "Suffix", affix = "of the Berserker", "Gain (6-10) Rage when Hit by an Enemy", statOrder = { 6875 }, level = 75, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (6-10) Rage when Hit by an Enemy" }, } }, + ["BerserkInfluenceMaximumRage1"] = { type = "Prefix", affix = "Vorana's", "+(4-7) to Maximum Rage", statOrder = { 9600 }, level = 45, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(4-7) to Maximum Rage" }, } }, + ["BerserkInfluenceMaximumRage2"] = { type = "Prefix", affix = "Vorana's", "+(8-12) to Maximum Rage", statOrder = { 9600 }, level = 75, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } }, + ["BerserkInfluenceDamageWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Damage with Warcries", statOrder = { 10499 }, level = 45, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(20-34)% increased Damage with Warcries" }, } }, + ["BerserkInfluenceDamageWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-49)% increased Damage with Warcries", statOrder = { 10499 }, level = 65, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(35-49)% increased Damage with Warcries" }, } }, + ["BerserkInfluenceDamageWithWarcries3"] = { type = "Prefix", affix = "Vorana's", "(50-75)% increased Damage with Warcries", statOrder = { 10499 }, level = 75, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(50-75)% increased Damage with Warcries" }, } }, + ["BerserkInfluencePowerWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased total Power counted by Warcries", statOrder = { 10502 }, level = 45, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(20-34)% increased total Power counted by Warcries" }, } }, + ["BerserkInfluencePowerWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-55)% increased total Power counted by Warcries", statOrder = { 10502 }, level = 75, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(35-55)% increased total Power counted by Warcries" }, } }, + ["BerserkInfluenceArmourBreakMagnitude1"] = { type = "Prefix", affix = "Vorana's", "(15-24)% increased effect of Fully Broken Armour", statOrder = { 5232 }, level = 45, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(15-24)% increased effect of Fully Broken Armour" }, } }, + ["BerserkInfluenceArmourBreakMagnitude2"] = { type = "Prefix", affix = "Vorana's", "(25-39)% increased effect of Fully Broken Armour", statOrder = { 5232 }, level = 65, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(25-39)% increased effect of Fully Broken Armour" }, } }, + ["BerserkInfluenceArmourBreakMagnitude3"] = { type = "Prefix", affix = "Vorana's", "(40-60)% increased effect of Fully Broken Armour", statOrder = { 5232 }, level = 75, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(40-60)% increased effect of Fully Broken Armour" }, } }, + ["BerserkInfluenceGloryGeneration1"] = { type = "Prefix", affix = "Vorana's", "(20-49)% increased Glory generation", statOrder = { 6910 }, level = 45, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(20-49)% increased Glory generation" }, } }, + ["BerserkInfluenceGloryGeneration2"] = { type = "Prefix", affix = "Vorana's", "(50-85)% increased Glory generation", statOrder = { 6910 }, level = 75, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(50-85)% increased Glory generation" }, } }, + ["BerserkInfluenceRageCostEfficiency1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Rage Cost Efficiency", statOrder = { 4736 }, level = 45, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(20-34)% increased Rage Cost Efficiency" }, } }, + ["BerserkInfluenceRageCostEfficiency2"] = { type = "Prefix", affix = "Vorana's", "(35-60)% increased Rage Cost Efficiency", statOrder = { 4736 }, level = 75, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(35-60)% increased Rage Cost Efficiency" }, } }, + ["BerserkInfluenceRageLossDelay1"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts 1 second later", statOrder = { 9613 }, level = 45, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts 1 second later" }, } }, + ["BerserkInfluenceRageLossDelay2"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts (3-5) seconds later", statOrder = { 9613 }, level = 75, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts (3-5) seconds later" }, } }, + ["BerserkInfluenceRageWhenHit1"] = { type = "Suffix", affix = "of the Berserker", "Gain (4-5) Rage when Hit by an Enemy", statOrder = { 6871 }, level = 45, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (4-5) Rage when Hit by an Enemy" }, } }, + ["BerserkInfluenceRageWhenHit2"] = { type = "Suffix", affix = "of the Berserker", "Gain (6-10) Rage when Hit by an Enemy", statOrder = { 6871 }, level = 75, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (6-10) Rage when Hit by an Enemy" }, } }, ["BerserkInfluenceWarcrySpeed1"] = { type = "Suffix", affix = "of the Berserker", "(23-36)% increased Warcry Speed", statOrder = { 2989 }, level = 45, group = "WarcrySpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(23-36)% increased Warcry Speed" }, } }, ["BerserkInfluenceWarcrySpeed2"] = { type = "Suffix", affix = "of the Berserker", "(37-50)% increased Warcry Speed", statOrder = { 2989 }, level = 75, group = "WarcrySpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(37-50)% increased Warcry Speed" }, } }, ["BerserkInfluenceWarcryCooldown1"] = { type = "Suffix", affix = "of the Berserker", "(23-36)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 45, group = "WarcryCooldownSpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(23-36)% increased Warcry Cooldown Recovery Rate" }, } }, ["BerserkInfluenceWarcryCooldown2"] = { type = "Suffix", affix = "of the Berserker", "(37-50)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 75, group = "WarcryCooldownSpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(37-50)% increased Warcry Cooldown Recovery Rate" }, } }, - ["BerserkInfluenceWarcryArea1"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (15-29)% increased Area of Effect", statOrder = { 10514 }, level = 45, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (15-29)% increased Area of Effect" }, } }, - ["BerserkInfluenceWarcryArea2"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (30-50)% increased Area of Effect", statOrder = { 10514 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (30-50)% increased Area of Effect" }, } }, + ["BerserkInfluenceWarcryArea1"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (15-29)% increased Area of Effect", statOrder = { 10504 }, level = 45, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (15-29)% increased Area of Effect" }, } }, + ["BerserkInfluenceWarcryArea2"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (30-50)% increased Area of Effect", statOrder = { 10504 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (30-50)% increased Area of Effect" }, } }, ["BerserkInfluenceWarcryLifeRecovery1"] = { type = "Suffix", affix = "of the Berserker", "Recover (2-3)% of maximum Life when you use a Warcry", statOrder = { 2919 }, level = 45, group = "RecoverLifeOnWarcry", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1040141381] = { "Recover (2-3)% of maximum Life when you use a Warcry" }, } }, ["BerserkInfluenceWarcryLifeRecovery2"] = { type = "Suffix", affix = "of the Berserker", "Recover (4-5)% of maximum Life when you use a Warcry", statOrder = { 2919 }, level = 75, group = "RecoverLifeOnWarcry", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1040141381] = { "Recover (4-5)% of maximum Life when you use a Warcry" }, } }, - ["BerserkInfluenceArmourBreakDuration1"] = { type = "Suffix", affix = "of the Berserker", "(50-99)% increased Armour Break Duration", statOrder = { 4409 }, level = 45, group = "ArmourBreakDuration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(50-99)% increased Armour Break Duration" }, } }, - ["BerserkInfluenceArmourBreakDuration2"] = { type = "Suffix", affix = "of the Berserker", "(100-150)% increased Armour Break Duration", statOrder = { 4409 }, level = 75, group = "ArmourBreakDuration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(100-150)% increased Armour Break Duration" }, } }, - ["BerserkInfluenceAdditionalCombo1"] = { type = "Suffix", affix = "of the Berserker", "(20-39)% chance to build an additional Combo on Hit", statOrder = { 4185 }, level = 45, group = "ChanceToGenerateAdditionalCombo", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4258524206] = { "(20-39)% chance to build an additional Combo on Hit" }, } }, - ["BerserkInfluenceAdditionalCombo2"] = { type = "Suffix", affix = "of the Berserker", "(40-60)% chance to build an additional Combo on Hit", statOrder = { 4185 }, level = 75, group = "ChanceToGenerateAdditionalCombo", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4258524206] = { "(40-60)% chance to build an additional Combo on Hit" }, } }, + ["BerserkInfluenceArmourBreakDuration1"] = { type = "Suffix", affix = "of the Berserker", "(50-99)% increased Armour Break Duration", statOrder = { 4406 }, level = 45, group = "ArmourBreakDuration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(50-99)% increased Armour Break Duration" }, } }, + ["BerserkInfluenceArmourBreakDuration2"] = { type = "Suffix", affix = "of the Berserker", "(100-150)% increased Armour Break Duration", statOrder = { 4406 }, level = 75, group = "ArmourBreakDuration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(100-150)% increased Armour Break Duration" }, } }, + ["BerserkInfluenceAdditionalCombo1"] = { type = "Suffix", affix = "of the Berserker", "(20-39)% chance to build an additional Combo on Hit", statOrder = { 4182 }, level = 45, group = "ChanceToGenerateAdditionalCombo", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4258524206] = { "(20-39)% chance to build an additional Combo on Hit" }, } }, + ["BerserkInfluenceAdditionalCombo2"] = { type = "Suffix", affix = "of the Berserker", "(40-60)% chance to build an additional Combo on Hit", statOrder = { 4182 }, level = 75, group = "ChanceToGenerateAdditionalCombo", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4258524206] = { "(40-60)% chance to build an additional Combo on Hit" }, } }, ["DestructionInfluencePhysicalModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(10-15)% increased Explicit Physical Modifier magnitudes", statOrder = { 44 }, level = 65, group = "DestructionInfluencePhysicalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1335369947] = { "(10-15)% increased Explicit Physical Modifier magnitudes" }, } }, ["DestructionInfluenceFireModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Fire Modifier magnitudes", statOrder = { 40 }, level = 65, group = "DestructionInfluenceFireModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3574578302] = { "(15-20)% increased Explicit Fire Modifier magnitudes" }, } }, ["DestructionInfluenceLightningModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Lightning Modifier magnitudes", statOrder = { 42 }, level = 65, group = "DestructionInfluenceLightningModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [3624940721] = { "(15-20)% increased Explicit Lightning Modifier magnitudes" }, } }, @@ -2503,27 +2092,27 @@ return { ["DestructionInfluenceCriticalModifierEffect"] = { type = "Prefix", affix = "Thrud's", "(20-30)% increased Explicit Critical Modifier magnitudes", statOrder = { 37 }, level = 65, group = "DestructionInfluenceCriticalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [2393315299] = { "(20-30)% increased Explicit Critical Modifier magnitudes" }, } }, ["DecayInfluenceIgniteMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-34)% increased Ignite Magnitude", statOrder = { 1077 }, level = 45, group = "IgniteEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-34)% increased Ignite Magnitude" }, } }, ["DecayInfluenceIgniteMagnitude2"] = { type = "Prefix", affix = "Katla's", "(35-50)% increased Ignite Magnitude", statOrder = { 1077 }, level = 75, group = "IgniteEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(35-50)% increased Ignite Magnitude" }, } }, - ["DecayInfluenceBleedMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 45, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(20-29)% increased Magnitude of Bleeding you inflict" }, } }, - ["DecayInfluenceBleedMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 75, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(30-42)% increased Magnitude of Bleeding you inflict" }, } }, - ["DecayInfluencePoisonMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 45, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(20-29)% increased Magnitude of Poison you inflict" }, } }, - ["DecayInfluencePoisonMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 75, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(30-42)% increased Magnitude of Poison you inflict" }, } }, - ["DecayInfluenceAilmentMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-25)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 45, group = "AilmentEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(20-25)% increased Magnitude of Ailments you inflict" }, } }, - ["DecayInfluenceAilmentMagnitude2"] = { type = "Prefix", affix = "Katla's", "(26-32)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 75, group = "AilmentEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(26-32)% increased Magnitude of Ailments you inflict" }, } }, - ["DecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (8-13)% faster", statOrder = { 6068 }, level = 45, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (8-13)% faster" }, } }, - ["DecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (14-20)% faster", statOrder = { 6068 }, level = 75, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (14-20)% faster" }, } }, - ["DecayInfluenceAilmentDuration1"] = { type = "Suffix", affix = "of Decay", "(10-19)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6065 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(10-19)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["DecayInfluenceAilmentDuration2"] = { type = "Suffix", affix = "of Decay", "(20-30)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6065 }, level = 75, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-30)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["DecayInfluenceBleedMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Bleeding you inflict", statOrder = { 4805 }, level = 45, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(20-29)% increased Magnitude of Bleeding you inflict" }, } }, + ["DecayInfluenceBleedMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Bleeding you inflict", statOrder = { 4805 }, level = 75, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(30-42)% increased Magnitude of Bleeding you inflict" }, } }, + ["DecayInfluencePoisonMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Poison you inflict", statOrder = { 9489 }, level = 45, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(20-29)% increased Magnitude of Poison you inflict" }, } }, + ["DecayInfluencePoisonMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Poison you inflict", statOrder = { 9489 }, level = 75, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(30-42)% increased Magnitude of Poison you inflict" }, } }, + ["DecayInfluenceAilmentMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-25)% increased Magnitude of Ailments you inflict", statOrder = { 4256 }, level = 45, group = "AilmentEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(20-25)% increased Magnitude of Ailments you inflict" }, } }, + ["DecayInfluenceAilmentMagnitude2"] = { type = "Prefix", affix = "Katla's", "(26-32)% increased Magnitude of Ailments you inflict", statOrder = { 4256 }, level = 75, group = "AilmentEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(26-32)% increased Magnitude of Ailments you inflict" }, } }, + ["DecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (8-13)% faster", statOrder = { 6064 }, level = 45, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (8-13)% faster" }, } }, + ["DecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (14-20)% faster", statOrder = { 6064 }, level = 75, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (14-20)% faster" }, } }, + ["DecayInfluenceAilmentDuration1"] = { type = "Suffix", affix = "of Decay", "(10-19)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6061 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(10-19)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["DecayInfluenceAilmentDuration2"] = { type = "Suffix", affix = "of Decay", "(20-30)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6061 }, level = 75, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-30)% increased Duration of Damaging Ailments on Enemies" }, } }, ["DecayInfluenceFasterLeech1"] = { type = "Suffix", affix = "of Decay", "Leech (8-12)% of Physical Attack Damage as Life", "Leech Life (15-25)% faster", statOrder = { 1038, 1896 }, level = 45, group = "LeechAndLeechSpeed", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-12)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (15-25)% faster" }, } }, ["DecayInfluenceSlowerLeech1"] = { type = "Suffix", affix = "of Decay", "Leech (8-12)% of Physical Attack Damage as Life", "Leech Life (15-25)% slower", statOrder = { 1038, 1896 }, level = 45, group = "LeechAndLeechSpeed", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-12)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (15-25)% slower" }, } }, ["DecayInfluenceLeechAmount1"] = { type = "Suffix", affix = "of Decay", "(30-40)% increased amount of Life Leeched", statOrder = { 1895 }, level = 45, group = "IncreasedLifeLeechAmountGloves", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(30-40)% increased amount of Life Leeched" }, } }, - ["DecayInfluenceWitherMagnitude1"] = { type = "Suffix", affix = "of Decay", "(15-24)% increased Withered Magnitude", statOrder = { 10556 }, level = 45, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(15-24)% increased Withered Magnitude" }, } }, - ["DecayInfluenceWitherMagnitude2"] = { type = "Suffix", affix = "of Decay", "(25-35)% increased Withered Magnitude", statOrder = { 10556 }, level = 75, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(25-35)% increased Withered Magnitude" }, } }, + ["DecayInfluenceWitherMagnitude1"] = { type = "Suffix", affix = "of Decay", "(15-24)% increased Withered Magnitude", statOrder = { 10546 }, level = 45, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(15-24)% increased Withered Magnitude" }, } }, + ["DecayInfluenceWitherMagnitude2"] = { type = "Suffix", affix = "of Decay", "(25-35)% increased Withered Magnitude", statOrder = { 10546 }, level = 75, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(25-35)% increased Withered Magnitude" }, } }, ["DecayInfluenceCurseMagnitude1"] = { type = "Suffix", affix = "of Decay", "(15-21)% increased Curse Magnitudes", statOrder = { 2376 }, level = 45, group = "CurseEffectiveness", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(15-21)% increased Curse Magnitudes" }, } }, ["DecayInfluenceCurseMagnitude2"] = { type = "Suffix", affix = "of Decay", "(22-29)% increased Curse Magnitudes", statOrder = { 2376 }, level = 75, group = "CurseEffectiveness", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(22-29)% increased Curse Magnitudes" }, } }, - ["DecayInfluenceExposureEffect1"] = { type = "Suffix", affix = "of Decay", "(20-34)% increased Exposure Effect", statOrder = { 6533 }, level = 45, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(20-34)% increased Exposure Effect" }, } }, - ["DecayInfluenceExposureEffect2"] = { type = "Suffix", affix = "of Decay", "(35-50)% increased Exposure Effect", statOrder = { 6533 }, level = 75, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(35-50)% increased Exposure Effect" }, } }, + ["DecayInfluenceExposureEffect1"] = { type = "Suffix", affix = "of Decay", "(20-34)% increased Exposure Effect", statOrder = { 6529 }, level = 45, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(20-34)% increased Exposure Effect" }, } }, + ["DecayInfluenceExposureEffect2"] = { type = "Suffix", affix = "of Decay", "(35-50)% increased Exposure Effect", statOrder = { 6529 }, level = 75, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(35-50)% increased Exposure Effect" }, } }, ["DecayInfluenceIncreasedCurseDuration1"] = { type = "Suffix", affix = "of Decay", "(50-99)% increased Curse Duration", statOrder = { 1540 }, level = 75, group = "BaseCurseDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3824372849] = { "(50-99)% increased Curse Duration" }, } }, - ["DecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "(20-30)% faster Curse Activation", statOrder = { 5924 }, level = 75, group = "CurseDelay", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(20-30)% faster Curse Activation" }, } }, + ["DecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "(20-30)% faster Curse Activation", statOrder = { 5920 }, level = 75, group = "CurseDelay", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(20-30)% faster Curse Activation" }, } }, ["MarksmanInfluenceProjectileDamage1"] = { type = "Prefix", affix = "Kolr's", "(11-20)% increased Projectile Damage", statOrder = { 1738 }, level = 45, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(11-20)% increased Projectile Damage" }, } }, ["MarksmanInfluenceProjectileDamage2"] = { type = "Prefix", affix = "Kolr's", "(21-30)% increased Projectile Damage", statOrder = { 1738 }, level = 65, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(21-30)% increased Projectile Damage" }, } }, ["MarksmanInfluenceProjectileDamage3"] = { type = "Prefix", affix = "Kolr's", "(31-40)% increased Projectile Damage", statOrder = { 1738 }, level = 75, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(31-40)% increased Projectile Damage" }, } }, @@ -2537,19 +2126,19 @@ return { ["MarksmanInfluenceCriticalHitChance3"] = { type = "Suffix", affix = "of the Hunt", "(28-34)% increased Critical Hit Chance", statOrder = { 976 }, level = 75, group = "CriticalStrikeChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(28-34)% increased Critical Hit Chance" }, } }, ["MarksmanInfluenceChanceToPierce1"] = { type = "Suffix", affix = "of the Hunt", "(25-50)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 45, group = "ChanceToPierce", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(25-50)% chance to Pierce an Enemy" }, } }, ["MarksmanInfluenceChanceToPierce2"] = { type = "Suffix", affix = "of the Hunt", "(51-100)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 75, group = "ChanceToPierce", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(51-100)% chance to Pierce an Enemy" }, } }, - ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { type = "Suffix", affix = "of the Hunt", "+(23-36)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 45, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-36)% Surpassing chance to fire an additional Projectile" }, } }, - ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { type = "Suffix", affix = "of the Hunt", "+(37-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 65, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(37-50)% Surpassing chance to fire an additional Projectile" }, } }, - ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "+(51-66)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 75, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-66)% Surpassing chance to fire an additional Projectile" }, } }, - ["MarksmanInfluenceChainToChainOffTerrain1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (10-19)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 45, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-19)% chance to Chain an additional time from terrain" }, } }, - ["MarksmanInfluenceChainToChainOffTerrain2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (20-32)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 75, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (20-32)% chance to Chain an additional time from terrain" }, } }, - ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-50)% chance for an additional Projectile when Forking", statOrder = { 5515 }, level = 45, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (25-50)% chance for an additional Projectile when Forking" }, } }, - ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (51-100)% chance for an additional Projectile when Forking", statOrder = { 5515 }, level = 75, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (51-100)% chance for an additional Projectile when Forking" }, } }, - ["MarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (50-74)% increased Skill Effect Duration", statOrder = { 8822 }, level = 45, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (50-74)% increased Skill Effect Duration" }, } }, - ["MarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (75-100)% increased Skill Effect Duration", statOrder = { 8822 }, level = 75, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (75-100)% increased Skill Effect Duration" }, } }, + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { type = "Suffix", affix = "of the Hunt", "+(23-36)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 45, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-36)% Surpassing chance to fire an additional Projectile" }, } }, + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { type = "Suffix", affix = "of the Hunt", "+(37-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 65, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(37-50)% Surpassing chance to fire an additional Projectile" }, } }, + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "+(51-66)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 75, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-66)% Surpassing chance to fire an additional Projectile" }, } }, + ["MarksmanInfluenceChainToChainOffTerrain1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (10-19)% chance to Chain an additional time from terrain", statOrder = { 9534 }, level = 45, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-19)% chance to Chain an additional time from terrain" }, } }, + ["MarksmanInfluenceChainToChainOffTerrain2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (20-32)% chance to Chain an additional time from terrain", statOrder = { 9534 }, level = 75, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (20-32)% chance to Chain an additional time from terrain" }, } }, + ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-50)% chance for an additional Projectile when Forking", statOrder = { 5511 }, level = 45, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (25-50)% chance for an additional Projectile when Forking" }, } }, + ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (51-100)% chance for an additional Projectile when Forking", statOrder = { 5511 }, level = 75, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (51-100)% chance for an additional Projectile when Forking" }, } }, + ["MarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (50-74)% increased Skill Effect Duration", statOrder = { 8813 }, level = 45, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (50-74)% increased Skill Effect Duration" }, } }, + ["MarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (75-100)% increased Skill Effect Duration", statOrder = { 8813 }, level = 75, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (75-100)% increased Skill Effect Duration" }, } }, ["MarksmanInfluenceMarkSkillUseSpeed1"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (13-23)% increased Use Speed", statOrder = { 1946 }, level = 45, group = "MarkUseSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1714971114] = { "Mark Skills have (13-23)% increased Use Speed" }, } }, ["MarksmanInfluenceMarkSkillUseSpeed2"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (24-39)% increased Use Speed", statOrder = { 1946 }, level = 75, group = "MarkUseSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1714971114] = { "Mark Skills have (24-39)% increased Use Speed" }, } }, - ["MarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "+(1-2) to Level of all Mark Skills", statOrder = { 8823 }, level = 45, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(1-2) to Level of all Mark Skills" }, } }, - ["MarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "+(3-4) to Level of all Mark Skills", statOrder = { 8823 }, level = 65, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(3-4) to Level of all Mark Skills" }, } }, + ["MarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "+(1-2) to Level of all Mark Skills", statOrder = { 8814 }, level = 45, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(1-2) to Level of all Mark Skills" }, } }, + ["MarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "+(3-4) to Level of all Mark Skills", statOrder = { 8814 }, level = 65, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(3-4) to Level of all Mark Skills" }, } }, ["MarksmanInfluenceProjectileSkills1"] = { type = "Suffix", affix = "of the Hunt", "+1 to Level of all Projectile Skills", statOrder = { 968 }, level = 45, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, ["MarksmanInfluenceProjectileSkills2"] = { type = "Suffix", affix = "of the Hunt", "+2 to Level of all Projectile Skills", statOrder = { 968 }, level = 65, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, } \ No newline at end of file diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua index 3010fb776c..69e98d0fd4 100644 --- a/src/Data/ModItemExclusive.lua +++ b/src/Data/ModItemExclusive.lua @@ -3,23 +3,23 @@ return { ["UniqueNearbyAlliesAddedChaosDamage1"] = { affix = "", "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage", statOrder = { 911 }, level = 82, group = "AlliesInPresenceAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage" }, } }, - ["UniqueChanceForExertedAttackToNoteReduceCount1"] = { affix = "", "Skills which Empower an Attack have (10-20)% chance to not count that Attack", statOrder = { 5404 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2538411280] = { "Skills which Empower an Attack have (10-20)% chance to not count that Attack" }, } }, + ["UniqueChanceForExertedAttackToNoteReduceCount1"] = { affix = "", "Skills which Empower an Attack have (10-20)% chance to not count that Attack", statOrder = { 5400 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2538411280] = { "Skills which Empower an Attack have (10-20)% chance to not count that Attack" }, } }, ["UniqueGlobalColdSpellGemsLevel1"] = { affix = "", "+(5-7) to Level of all Cold Spell Skills", statOrder = { 961 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(5-7) to Level of all Cold Spell Skills" }, } }, ["UniqueNearbyAlliesLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (50-100) Life per second", statOrder = { 921 }, level = 78, group = "AlliesInPresenceLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (50-100) Life per second" }, } }, ["UniqueAttackCriticalStrikeChance1UNUSED"] = { affix = "", "(20-40)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-40)% increased Critical Hit Chance for Attacks" }, } }, ["UniqueAttackCriticalStrikeMultiplier1UNUSED"] = { affix = "", "(20-40)% increased Critical Damage Bonus for Attack Damage", statOrder = { 981 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(20-40)% increased Critical Damage Bonus for Attack Damage" }, } }, ["UniqueMaximumChaosResist1"] = { affix = "", "+(1-5)% to Maximum Chaos Resistance", statOrder = { 1012 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+(1-5)% to Maximum Chaos Resistance" }, } }, - ["UniqueArmourAppliesToChaosDamage1"] = { affix = "", "+(10-20)% of Armour also applies to Chaos Damage", statOrder = { 4645 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(10-20)% of Armour also applies to Chaos Damage" }, } }, + ["UniqueArmourAppliesToChaosDamage1"] = { affix = "", "+(10-20)% of Armour also applies to Chaos Damage", statOrder = { 4642 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(10-20)% of Armour also applies to Chaos Damage" }, } }, ["UniqueArmourAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to 20% of Armour", statOrder = { 1029 }, level = 1, group = "ArmourAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1752419596] = { "Gain Deflection Rating equal to 20% of Armour" }, } }, ["UniqueEvasionAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (20-30)% of Evasion Rating" }, } }, ["UniqueEvasionAppliesToDeflection2"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (40-60)% of Evasion Rating" }, } }, ["UniqueEvasionAppliesToDeflection3"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (20-30)% of Evasion Rating" }, } }, ["UniqueEvasionAppliesToDeflection4"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (40-60)% of Evasion Rating" }, } }, ["UniqueEvasionAppliesToDeflection5"] = { affix = "", "Gain Deflection Rating equal to (24-32)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (24-32)% of Evasion Rating" }, } }, - ["UniqueDeflectDamagePrevented1"] = { affix = "", "-(12-6)% to amount of Damage Prevented by Deflection", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "-(12-6)% to amount of Damage Prevented by Deflection" }, } }, - ["UniquePercentEvasionRatingAsExtraArmour1"] = { affix = "", "Gain (15-30)% of Evasion Rating as extra Armour", statOrder = { 6501 }, level = 1, group = "PercentEvasionRatingAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [1546604934] = { "Gain (15-30)% of Evasion Rating as extra Armour" }, } }, + ["UniqueDeflectDamagePrevented1"] = { affix = "", "-(12-6)% to amount of Damage Prevented by Deflection", statOrder = { 4675 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "-(12-6)% to amount of Damage Prevented by Deflection" }, } }, + ["UniquePercentEvasionRatingAsExtraArmour1"] = { affix = "", "Gain (15-30)% of Evasion Rating as extra Armour", statOrder = { 6497 }, level = 1, group = "PercentEvasionRatingAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [1546604934] = { "Gain (15-30)% of Evasion Rating as extra Armour" }, } }, ["UniqueAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 988 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["UniqueAdditionalArrowChance1"] = { affix = "", "+(250-330)% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(250-330)% Surpassing chance to fire an additional Arrow" }, } }, + ["UniqueAdditionalArrowChance1"] = { affix = "", "+(250-330)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(250-330)% Surpassing chance to fire an additional Arrow" }, } }, ["UniqueFlaskIncreasedRecoverySpeed1"] = { affix = "", "50% reduced Recovery rate", statOrder = { 938 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "50% reduced Recovery rate" }, } }, ["UniqueFlaskIncreasedRecoverySpeed2"] = { affix = "", "(25-50)% reduced Recovery rate", statOrder = { 938 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(25-50)% reduced Recovery rate" }, } }, ["UniqueFlaskIncreasedRecoverySpeed3"] = { affix = "", "70% reduced Recovery rate", statOrder = { 938 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "70% reduced Recovery rate" }, } }, @@ -58,7 +58,7 @@ return { ["AmuletImplicitPrefixSuffixAllowed7"] = { affix = "", "-1 Prefix Modifier allowed", statOrder = { 18 }, level = 53, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, ["AmuletImplicitPrefixSuffixAllowed8"] = { affix = "", "-1 Suffix Modifier allowed", statOrder = { 19 }, level = 53, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "" }, } }, ["AmuletImplicitPrefixSuffixAllowed9"] = { affix = "", "-1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 18, 19 }, level = 62, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["AmuletImplicitHelmetSocket1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7743 }, level = 50, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1458343515] = { "This item gains bonuses from Socketed Items as though it was a Helmet" }, } }, + ["AmuletImplicitHelmetSocket1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7739 }, level = 50, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1458343515] = { "This item gains bonuses from Socketed Items as though it was a Helmet" }, } }, ["RingImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, ["RingImplicitIncreasedMana1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, ["RingImplicitFireResistance1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1014 }, level = 10, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, @@ -82,28 +82,28 @@ return { ["RingImplicitPercentMana"] = { affix = "", "(4-6)% increased maximum Mana", statOrder = { 894 }, level = 50, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, } }, ["RingImplicitPhysicalDamage2"] = { affix = "", "Adds (6-9) to (11-15) Physical Damage to Attacks", statOrder = { 858 }, level = 50, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (11-15) Physical Damage to Attacks" }, } }, ["RingImplicitChaosDamage"] = { affix = "", "(11-23)% increased Chaos Damage", statOrder = { 876 }, level = 59, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(11-23)% increased Chaos Damage" }, } }, - ["RingImplicitGloveSocket"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7742 }, level = 50, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1856590738] = { "This item gains bonuses from Socketed Items as though it was Gloves" }, } }, + ["RingImplicitGloveSocket"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7738 }, level = 50, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1856590738] = { "This item gains bonuses from Socketed Items as though it was Gloves" }, } }, ["RingImplicitFireColdResistance"] = { affix = "", "+(12-16)% to Fire and Cold Resistances", statOrder = { 1016 }, level = 1, group = "FireColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(12-16)% to Fire and Cold Resistances" }, } }, ["RingImplicitFireLightningResistance"] = { affix = "", "+(12-16)% to Fire and Lightning Resistances", statOrder = { 1018 }, level = 1, group = "FireLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(12-16)% to Fire and Lightning Resistances" }, } }, ["RingImplicitColdLightningResistance"] = { affix = "", "+(12-16)% to Cold and Lightning Resistances", statOrder = { 1021 }, level = 1, group = "ColdLightningResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "lightning_resistance", "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(12-16)% to Cold and Lightning Resistances" }, } }, ["BeltImplicitFlaskLifeRecovery1"] = { affix = "", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(20-30)% increased Life Recovery from Flasks" }, } }, ["BeltImplicitFlaskManaRecovery1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 1795 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(20-30)% increased Mana Recovery from Flasks" }, } }, - ["BeltImplicitIncreasedFlaskChargesGained1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6640 }, level = 18, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["BeltImplicitIncreasedFlaskChargesGained1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6636 }, level = 18, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, ["BeltImplicitIncreasedCharmDuration1"] = { affix = "", "(15-20)% increased Charm Effect Duration", statOrder = { 900 }, level = 25, group = "BeltIncreasedCharmDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(15-20)% increased Charm Effect Duration" }, } }, ["BeltImplicitPhysicalDamageReductionRating1"] = { affix = "", "+(140-180) to Armour", statOrder = { 881 }, level = 31, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(140-180) to Armour" }, } }, - ["BeltImplicitReducedCharmChargesUsed1"] = { affix = "", "(10-15)% reduced Charm Charges used", statOrder = { 5606 }, level = 39, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(10-15)% reduced Charm Charges used" }, } }, + ["BeltImplicitReducedCharmChargesUsed1"] = { affix = "", "(10-15)% reduced Charm Charges used", statOrder = { 5602 }, level = 39, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(10-15)% reduced Charm Charges used" }, } }, ["BeltImplicitReducedFlaskChargesUsed1"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 1049 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-15)% reduced Flask Charges used" }, } }, - ["BeltImplicitIncreasedCharmChargesGained1"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5605 }, level = 55, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, + ["BeltImplicitIncreasedCharmChargesGained1"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5601 }, level = 55, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, ["BeltImplicitIncreasedStunThreshold1"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2983 }, level = 63, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, - ["BeltImplicitInstantFlaskRecoveryPercent1"] = { affix = "", "20% of Flask Recovery applied Instantly", statOrder = { 6646 }, level = 69, group = "InstantFlaskRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [462041840] = { "20% of Flask Recovery applied Instantly" }, } }, - ["BeltImplicitFlaskPassiveChargeGain1"] = { affix = "", "Flasks gain 0.17 charges per Second", statOrder = { 6888 }, level = 78, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain 0.17 charges per Second" }, } }, - ["BeltImplicitBootsSocket1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7741 }, level = 50, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733960806] = { "This item gains bonuses from Socketed Items as though it was Boots" }, } }, + ["BeltImplicitInstantFlaskRecoveryPercent1"] = { affix = "", "20% of Flask Recovery applied Instantly", statOrder = { 6642 }, level = 69, group = "InstantFlaskRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [462041840] = { "20% of Flask Recovery applied Instantly" }, } }, + ["BeltImplicitFlaskPassiveChargeGain1"] = { affix = "", "Flasks gain 0.17 charges per Second", statOrder = { 6884 }, level = 78, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain 0.17 charges per Second" }, } }, + ["BeltImplicitBootsSocket1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7737 }, level = 50, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733960806] = { "This item gains bonuses from Socketed Items as though it was Boots" }, } }, ["BeltImplicitCastSpeed1"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 987 }, level = 40, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, ["BeltImplicitStrength1"] = { affix = "", "+(15-20) to Strength", statOrder = { 992 }, level = 40, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-20) to Strength" }, } }, ["BeltImplicitLightningDamage1"] = { affix = "", "Adds 1 to (20-30) Lightning damage to Attacks", statOrder = { 861 }, level = 40, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (20-30) Lightning damage to Attacks" }, } }, - ["BeltImplicitCharmSlots1"] = { affix = "", "Has 1 Charm Slot", statOrder = { 4775 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has 1 Charm Slot" }, } }, - ["BeltImplicitCharmSlots2"] = { affix = "", "Has (1-2) Charm Slot", statOrder = { 4775 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-2) Charm Slot" }, } }, - ["BeltImplicitCharmSlots3"] = { affix = "", "Has (1-3) Charm Slot", statOrder = { 4775 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-3) Charm Slot" }, } }, + ["BeltImplicitCharmSlots1"] = { affix = "", "Has 1 Charm Slot", statOrder = { 4771 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has 1 Charm Slot" }, } }, + ["BeltImplicitCharmSlots2"] = { affix = "", "Has (1-2) Charm Slot", statOrder = { 4771 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-2) Charm Slot" }, } }, + ["BeltImplicitCharmSlots3"] = { affix = "", "Has (1-3) Charm Slot", statOrder = { 4771 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-3) Charm Slot" }, } }, ["CharmImplicitUseOnFreeze1"] = { affix = "", "Used when you become Frozen", statOrder = { 689 }, level = 1, group = "FlaskUseOnAffectedByFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1691862754] = { "Used when you become Frozen" }, } }, ["CharmImplicitUseOnBleed1"] = { affix = "", "Used when you start Bleeding", statOrder = { 687 }, level = 1, group = "FlaskUseOnAffectedByBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3676540188] = { "Used when you start Bleeding" }, } }, ["CharmImplicitUseOnPoison1"] = { affix = "", "Used when you become Poisoned", statOrder = { 691 }, level = 1, group = "FlaskUseOnAffectedByPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1412682799] = { "Used when you become Poisoned" }, } }, @@ -119,8 +119,8 @@ return { ["CharmImplicitUseOnCurse1"] = { affix = "", "Used when you become Cursed", statOrder = { 685 }, level = 1, group = "FlaskUseOnAffectedByCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4146282829] = { "Used when you become Cursed" }, } }, ["BodyArmourImplicitIncreasedStunThreshold1"] = { affix = "", "(30-40)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(30-40)% increased Stun Threshold" }, } }, ["BodyArmourImplicitLifeRegenerationPercent1"] = { affix = "", "Regenerate (1.5-2.5)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-2.5)% of maximum Life per second" }, } }, - ["BodyArmourImplicitIncreasedAilmentThreshold1"] = { affix = "", "(30-40)% increased Elemental Ailment Threshold", statOrder = { 4266 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [3544800472] = { "(30-40)% increased Elemental Ailment Threshold" }, } }, - ["BodyArmourImplicitSlowPotency1"] = { affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, + ["BodyArmourImplicitIncreasedAilmentThreshold1"] = { affix = "", "(30-40)% increased Elemental Ailment Threshold", statOrder = { 4263 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [3544800472] = { "(30-40)% increased Elemental Ailment Threshold" }, } }, + ["BodyArmourImplicitSlowPotency1"] = { affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4743 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, ["BodyArmourImplicitEnergyShieldDelay1"] = { affix = "", "(40-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(40-50)% faster start of Energy Shield Recharge" }, } }, ["BodyArmourImplicitEnergyShieldRate1"] = { affix = "", "(20-25)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(20-25)% increased Energy Shield Recharge Rate" }, } }, ["BodyArmourImplicitManaRegeneration1"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-50)% increased Mana Regeneration Rate" }, } }, @@ -133,70 +133,70 @@ return { ["BodyArmourImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, ["BodyArmourImplicitMovementVelocity1"] = { affix = "", "5% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, ["BodyArmourImplicitReducedCriticalStrikeDamageTaken1"] = { affix = "", "Hits against you have (15-25)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (15-25)% reduced Critical Damage Bonus" }, } }, - ["BodyArmourImplicitMovementVelocityPenaltyWhilePerformingAction1"] = { affix = "", "(10-20)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9154 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(10-20)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["BodyArmourImplicitMovementVelocityPenaltyWhilePerformingAction1"] = { affix = "", "(10-20)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9145 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(10-20)% reduced Movement Speed Penalty from using Skills while moving" }, } }, ["BodyArmourImplicitDamageRemovedFromManaBeforeLife1"] = { affix = "", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, ["BodyArmourImplicitArmourAppliesToElementalDamage1"] = { affix = "", "+(15-25)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(15-25)% of Armour also applies to Elemental Damage" }, } }, ["BodyArmourImplicitLifeRecoupForJewel1"] = { affix = "", "(8-14)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(8-14)% of Damage taken Recouped as Life" }, } }, ["BodyArmourImplicitSelfStatusAilmentDuration1"] = { affix = "", "(10-15)% reduced Elemental Ailment Duration on you", statOrder = { 1622 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(10-15)% reduced Elemental Ailment Duration on you" }, } }, ["BodyArmourImplicitLevelOfAllCorruptedSkillGems1"] = { affix = "", "+1 to Level of all Corrupted Skill Gems", statOrder = { 951 }, level = 1, group = "GlobalCorruptedSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2251279027] = { "+1 to Level of all Corrupted Skill Gems" }, } }, - ["BodyArmourImplicitWardRegen1"] = { affix = "", "(30-40)% increased Runic Ward Regeneration Rate", statOrder = { 10520 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(30-40)% increased Runic Ward Regeneration Rate" }, } }, + ["BodyArmourImplicitWardRegen1"] = { affix = "", "(30-40)% increased Runic Ward Regeneration Rate", statOrder = { 10510 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(30-40)% increased Runic Ward Regeneration Rate" }, } }, ["BodyArmourImplicitLocalMaximumWardUnique1"] = { affix = "", "+(750-1000) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(750-1000) to maximum Runic Ward" }, } }, ["VerisiumHelmetImplicitIgniteMagnitudeUnique1"] = { affix = "", "(30-50)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(30-50)% increased Ignite Magnitude" }, } }, ["SwordImplicitLifeLeechLocal1"] = { affix = "", "Leeches 6% of Physical Damage as Life", statOrder = { 1039 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 6% of Physical Damage as Life" }, } }, ["SwordImplicitItemFoundRarity1"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, ["SwordImplicitSpellDamage1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["AxeImplicitRageOnHit1"] = { affix = "", "Grants 1 Rage on Hit", statOrder = { 7705 }, level = 1, group = "LocalRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, - ["AxeImplicitAccuracyUnaffectedByDistance1"] = { affix = "", "Has no Accuracy Penalty from Range", statOrder = { 7922 }, level = 1, group = "LocalAccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1050883682] = { "Has no Accuracy Penalty from Range" }, } }, + ["AxeImplicitRageOnHit1"] = { affix = "", "Grants 1 Rage on Hit", statOrder = { 7701 }, level = 1, group = "LocalRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, + ["AxeImplicitAccuracyUnaffectedByDistance1"] = { affix = "", "Has no Accuracy Penalty from Range", statOrder = { 7918 }, level = 1, group = "LocalAccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1050883682] = { "Has no Accuracy Penalty from Range" }, } }, ["AxeImplicitManaGainedFromEnemyDeath1"] = { affix = "", "Gain (28-35) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (28-35) Mana per enemy killed" }, } }, ["AxeImplicitDamageTaken1"] = { affix = "", "10% increased Damage taken", statOrder = { 1963 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, - ["AxeImplicitCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 7652 }, level = 1, group = "LocalCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1574531783] = { "Culling Strike" }, } }, + ["AxeImplicitCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 7648 }, level = 1, group = "LocalCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1574531783] = { "Culling Strike" }, } }, ["AxeImplicitLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (34-43) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (34-43) Life per enemy killed" }, } }, ["AxeImplicitLocalChanceToBleed1"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(15-25)% chance to cause Bleeding on Hit" }, } }, - ["AxeImplicitCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7637 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, + ["AxeImplicitCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7633 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, ["MaceImplicitCriticalMultiplier1"] = { affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 945 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(5-10)% to Critical Damage Bonus" }, } }, - ["MaceImplicitLocalDazeBuildup1"] = { affix = "", "40% chance to Daze on Hit", statOrder = { 7924 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "40% chance to Daze on Hit" }, } }, + ["MaceImplicitLocalDazeBuildup1"] = { affix = "", "40% chance to Daze on Hit", statOrder = { 7920 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "40% chance to Daze on Hit" }, } }, ["MaceImplicitStunDamageIncrease1"] = { affix = "", "Causes (20-40)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (20-40)% increased Stun Buildup" }, } }, ["MaceImplicitStunDamageIncrease2"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (30-50)% increased Stun Buildup" }, } }, ["MaceImplicitAlwaysHit1"] = { affix = "", "Always Hits", statOrder = { 1779 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Always Hits" }, } }, ["MaceImplicitSplashDamage1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1137 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, - ["MaceImplicitEnemiesExplodeOnCrit1"] = { affix = "", "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", statOrder = { 7700 }, level = 1, group = "EnemiesExplodeOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1541903247] = { "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage" }, } }, - ["MaceImplicitLocalCrushOnHit1"] = { affix = "", "Crushes Enemies on Hit", statOrder = { 7650 }, level = 1, group = "LocalCrushOnHit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1503146834] = { "Crushes Enemies on Hit" }, } }, - ["MaceImplicitWarcryExert1"] = { affix = "", "Warcries Empower an additional Attack", statOrder = { 10510 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, + ["MaceImplicitEnemiesExplodeOnCrit1"] = { affix = "", "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", statOrder = { 7696 }, level = 1, group = "EnemiesExplodeOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1541903247] = { "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage" }, } }, + ["MaceImplicitLocalCrushOnHit1"] = { affix = "", "Crushes Enemies on Hit", statOrder = { 7646 }, level = 1, group = "LocalCrushOnHit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1503146834] = { "Crushes Enemies on Hit" }, } }, + ["MaceImplicitWarcryExert1"] = { affix = "", "Warcries Empower an additional Attack", statOrder = { 10500 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, ["MaceImplicitWardUnique1"] = { affix = "", "+(100-150) to maximum Runic Ward", statOrder = { 890 }, level = 1, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(100-150) to maximum Runic Ward" }, } }, ["TalismanImplicitFireDamageAndFlammability1"] = { affix = "", "(50-80)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "WeaponImplicitDamageIsFireAndFlammability", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(50-80)% increased Flammability Magnitude" }, } }, ["TalismanImplicitMinionDamage1"] = { affix = "", "Minions deal (30-50)% increased Damage", statOrder = { 1720 }, level = 1, group = "WeaponImplicitMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-50)% increased Damage" }, } }, - ["TalismanImplicitRageOnMeleeHit1"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6873 }, level = 1, group = "WeaponImplicitRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain (2-4) Rage on Melee Hit" }, } }, - ["TalismanImplicitLightningDamageAndShockMagnitude1"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "WeaponImplicitDamageIsLightningAndShockMagnitude", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-30)% increased Magnitude of Shock you inflict" }, } }, - ["TalismanImplicitMaximumRage1"] = { affix = "", "+(7-10) to Maximum Rage", statOrder = { 9609 }, level = 1, group = "WeaponImplicitMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(7-10) to Maximum Rage" }, } }, + ["TalismanImplicitRageOnMeleeHit1"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6869 }, level = 1, group = "WeaponImplicitRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain (2-4) Rage on Melee Hit" }, } }, + ["TalismanImplicitLightningDamageAndShockMagnitude1"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9836 }, level = 1, group = "WeaponImplicitDamageIsLightningAndShockMagnitude", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-30)% increased Magnitude of Shock you inflict" }, } }, + ["TalismanImplicitMaximumRage1"] = { affix = "", "+(7-10) to Maximum Rage", statOrder = { 9600 }, level = 1, group = "WeaponImplicitMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(7-10) to Maximum Rage" }, } }, ["TalismanImplicitMarkEffect1"] = { affix = "", "(10-20)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 1, group = "WeaponImplicitMarkEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [712554801] = { "(10-20)% increased Effect of your Mark Skills" }, } }, ["TalismanImplicitAdditionalBlock1"] = { affix = "", "+(14-18)% to Block chance", statOrder = { 1123 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(14-18)% to Block chance" }, } }, - ["SpearImplicitLocalChanceToMaim1"] = { affix = "", "(15-25)% chance to Maim on Hit", statOrder = { 7798 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-25)% chance to Maim on Hit" }, } }, - ["SpearImplicitLocalProjectileSpeed1"] = { affix = "", "(25-35)% increased Projectile Speed with this Weapon", statOrder = { 7815 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(25-35)% increased Projectile Speed with this Weapon" }, } }, - ["SpearImplicitDeflectDamagePrevented1"] = { affix = "", "Prevent +(3-7)% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +(3-7)% of Damage from Deflected Hits" }, } }, - ["SpearImplicitWeaponRange1"] = { affix = "", "25% increased Melee Strike Range with this weapon", statOrder = { 7600 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "25% increased Melee Strike Range with this weapon" }, } }, - ["SpearImplicitFasterBleed1"] = { affix = "", "Bleeding you inflict deals Damage (10-20)% faster", statOrder = { 6550 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (10-20)% faster" }, } }, + ["SpearImplicitLocalChanceToMaim1"] = { affix = "", "(15-25)% chance to Maim on Hit", statOrder = { 7794 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-25)% chance to Maim on Hit" }, } }, + ["SpearImplicitLocalProjectileSpeed1"] = { affix = "", "(25-35)% increased Projectile Speed with this Weapon", statOrder = { 7811 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(25-35)% increased Projectile Speed with this Weapon" }, } }, + ["SpearImplicitDeflectDamagePrevented1"] = { affix = "", "Prevent +(3-7)% of Damage from Deflected Hits", statOrder = { 4675 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +(3-7)% of Damage from Deflected Hits" }, } }, + ["SpearImplicitWeaponRange1"] = { affix = "", "25% increased Melee Strike Range with this weapon", statOrder = { 7596 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "25% increased Melee Strike Range with this weapon" }, } }, + ["SpearImplicitFasterBleed1"] = { affix = "", "Bleeding you inflict deals Damage (10-20)% faster", statOrder = { 6546 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (10-20)% faster" }, } }, ["ClawImplicitLifeGainPerTargetLocal1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1041 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 8 Life per Enemy Hit" }, } }, ["ClawImplicitLocalChanceToBlind1"] = { affix = "", "(15-25)% chance to Blind Enemies on hit", statOrder = { 2013 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301191210] = { "(15-25)% chance to Blind Enemies on hit" }, } }, - ["ClawImplicitLocalChanceToPoison1"] = { affix = "", "(15-25)% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(15-25)% chance to Poison on Hit with this weapon" }, } }, + ["ClawImplicitLocalChanceToPoison1"] = { affix = "", "(15-25)% chance to Poison on Hit with this weapon", statOrder = { 7809 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(15-25)% chance to Poison on Hit with this weapon" }, } }, ["ClawImplicitManaGainPerTargetLocal1"] = { affix = "", "Grants 8 Mana per Enemy Hit", statOrder = { 1508 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 8 Mana per Enemy Hit" }, } }, ["DaggerImplicitManaLeechLocal1"] = { affix = "", "Leeches 4% of Physical Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches 4% of Physical Damage as Mana" }, } }, - ["DaggerImplicitSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 10038 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, - ["DaggerImplicitBreakArmour1"] = { affix = "", "Breaks (400-500) Armour on Critical Hit", statOrder = { 7615 }, level = 1, group = "LocalBreakArmourOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4270348114] = { "Breaks (400-500) Armour on Critical Hit" }, } }, + ["DaggerImplicitSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 10029 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, + ["DaggerImplicitBreakArmour1"] = { affix = "", "Breaks (400-500) Armour on Critical Hit", statOrder = { 7611 }, level = 1, group = "LocalBreakArmourOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4270348114] = { "Breaks (400-500) Armour on Critical Hit" }, } }, ["FlailImplicitRollCritTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1356 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1451444093] = { "Bifurcates Critical Hits" }, } }, - ["FlailImplicitIgnoreBlock1"] = { affix = "", "Unblockable", statOrder = { 7624 }, level = 1, group = "LocalIgnoreBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1137147997] = { "Unblockable" }, } }, - ["QuarterstaffWeaponRange1"] = { affix = "", "16% increased Melee Strike Range with this weapon", statOrder = { 7600 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "16% increased Melee Strike Range with this weapon" }, } }, + ["FlailImplicitIgnoreBlock1"] = { affix = "", "Unblockable", statOrder = { 7620 }, level = 1, group = "LocalIgnoreBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1137147997] = { "Unblockable" }, } }, + ["QuarterstaffWeaponRange1"] = { affix = "", "16% increased Melee Strike Range with this weapon", statOrder = { 7596 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "16% increased Melee Strike Range with this weapon" }, } }, ["QuarterstaffImplicitAdditionalBlock1"] = { affix = "", "+(12-18)% to Block chance", statOrder = { 1123 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(12-18)% to Block chance" }, } }, - ["QuarterstaffImplicitDazeChance1"] = { affix = "", "(20-50)% chance to Daze on Hit", statOrder = { 7924 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "(20-50)% chance to Daze on Hit" }, } }, + ["QuarterstaffImplicitDazeChance1"] = { affix = "", "(20-50)% chance to Daze on Hit", statOrder = { 7920 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "(20-50)% chance to Daze on Hit" }, } }, ["QuarterstaffImplicitRunicWard1"] = { affix = "", "+(30-50) to maximum Runic Ward", statOrder = { 890 }, level = 1, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(30-50) to maximum Runic Ward" }, } }, - ["BowImplicitLocalChanceToChain1"] = { affix = "", "(25-35)% chance to Chain an additional time", statOrder = { 7603 }, level = 1, group = "LocalAdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1028592286] = { "(25-35)% chance to Chain an additional time" }, } }, - ["BowImplicitAdditionalArrows1"] = { affix = "", "+50% Surpassing chance to fire an additional Arrow", statOrder = { 5513 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+50% Surpassing chance to fire an additional Arrow" }, } }, - ["BowImplicitProjectileAttackRange1"] = { affix = "", "50% reduced Projectile Range", statOrder = { 9539 }, level = 1, group = "LocalIncreasedProjectileAttackRange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3398402065] = { "50% reduced Projectile Range" }, } }, + ["BowImplicitLocalChanceToChain1"] = { affix = "", "(25-35)% chance to Chain an additional time", statOrder = { 7599 }, level = 1, group = "LocalAdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1028592286] = { "(25-35)% chance to Chain an additional time" }, } }, + ["BowImplicitAdditionalArrows1"] = { affix = "", "+50% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+50% Surpassing chance to fire an additional Arrow" }, } }, + ["BowImplicitProjectileAttackRange1"] = { affix = "", "50% reduced Projectile Range", statOrder = { 9530 }, level = 1, group = "LocalIncreasedProjectileAttackRange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3398402065] = { "50% reduced Projectile Range" }, } }, ["CrossbowImplicitBoltSpeed1"] = { affix = "", "(20-30)% increased Bolt Speed", statOrder = { 1553 }, level = 1, group = "BoltSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1803308202] = { "(20-30)% increased Bolt Speed" }, } }, ["CrossbowImplicitAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 988 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["CrossbowImplicitGrenadeProjectiles1"] = { affix = "", "Grenade Skills Fire an additional Projectile", statOrder = { 6945 }, level = 1, group = "GrenadeProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, + ["CrossbowImplicitGrenadeProjectiles1"] = { affix = "", "Grenade Skills Fire an additional Projectile", statOrder = { 6941 }, level = 1, group = "GrenadeProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, ["CrossbowImplicitChanceToPierce1"] = { affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "(20-30)% chance to Pierce an Enemy" }, } }, - ["CrossbowImplicitAdditionalBallistaTotem1"] = { affix = "", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4175 }, level = 1, group = "AdditionalBallistaTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, - ["CannonBowImplicitCannotUseAmmoSkills1"] = { affix = "", "Cannot load or fire Ammunition", statOrder = { 7649 }, level = 1, group = "CannotUseAmmoSkillsGrantsAlternateDefaultAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3663551379] = { "Cannot load or fire Ammunition" }, } }, + ["CrossbowImplicitAdditionalBallistaTotem1"] = { affix = "", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4172 }, level = 1, group = "AdditionalBallistaTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, + ["CannonBowImplicitCannotUseAmmoSkills1"] = { affix = "", "Cannot load or fire Ammunition", statOrder = { 7645 }, level = 1, group = "CannotUseAmmoSkillsGrantsAlternateDefaultAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3663551379] = { "Cannot load or fire Ammunition" }, } }, ["TrapImplicitCooldownRecovery1"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3150 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3417757416] = { "(20-30)% increased Cooldown Recovery Rate for throwing Traps" }, } }, ["BucklerImplicitStunThreshold1"] = { affix = "", "+16 to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+16 to Stun Threshold" }, } }, ["BootsImplicitMovementSpeedVerisium1"] = { affix = "", "5% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, @@ -224,8 +224,8 @@ return { ["UniqueJewelRadiusDamageAsCold"] = { affix = "", "Gain (2-4)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 2, tradeHashes = { [833138896] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Cold Damage" }, } }, ["UniqueJewelRadiusDamageAsLightning"] = { affix = "", "Gain (2-4)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 2, tradeHashes = { [852470634] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Lightning Damage" }, } }, ["UniqueJewelRadiusDamageAsChaos"] = { affix = "", "Gain (2-4)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 2, tradeHashes = { [2603051299] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueJewelRadiusGrantStatsFromNonNotables"] = { affix = "", "Grants all bonuses of Unallocated Small Passive Skills in Radius", statOrder = { 7757 }, level = 1, group = "GrantsStatsFromNonNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [737702863] = { "Grants all bonuses of Unallocated Small Passive Skills in Radius" }, } }, - ["UniqueJewelRadiusAllocatedNonNotablesGrantNothing"] = { affix = "", "Allocated Small Passive Skills in Radius grant nothing", statOrder = { 7750 }, level = 1, group = "AllocatedNonNotablesGrantNothing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [325204898] = { "Allocated Small Passive Skills in Radius grant nothing" }, } }, + ["UniqueJewelRadiusGrantStatsFromNonNotables"] = { affix = "", "Grants all bonuses of Unallocated Small Passive Skills in Radius", statOrder = { 7753 }, level = 1, group = "GrantsStatsFromNonNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [737702863] = { "Grants all bonuses of Unallocated Small Passive Skills in Radius" }, } }, + ["UniqueJewelRadiusAllocatedNonNotablesGrantNothing"] = { affix = "", "Allocated Small Passive Skills in Radius grant nothing", statOrder = { 7746 }, level = 1, group = "AllocatedNonNotablesGrantNothing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [325204898] = { "Allocated Small Passive Skills in Radius grant nothing" }, } }, ["UniqueStrength1"] = { affix = "", "+(30-50) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, ["UniqueStrength2"] = { affix = "", "+(10-20) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, ["UniqueStrength3"] = { affix = "", "+(10-15) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, @@ -372,8 +372,7 @@ return { ["UniqueIntelligence47"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, ["UniqueIntelligence48"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, ["UniqueIntelligence49"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["UniqueIntelligence50"] = { affix = "", "+(25-35) to Intelligence", statOrder = { 994 }, level = 69, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(25-35) to Intelligence" }, } }, - ["UniqueIntelligence51"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 994 }, level = 69, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, + ["UniqueIntelligence50"] = { affix = "", "+(25-35) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(25-35) to Intelligence" }, } }, ["UniqueStrengthAndIntelligence1"] = { affix = "", "+(10-20) to Strength and Intelligence", statOrder = { 996 }, level = 1, group = "StrengthAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(10-20) to Strength and Intelligence" }, } }, ["UniqueStrengthAndIntelligence2"] = { affix = "", "+(20-30) to Strength and Intelligence", statOrder = { 996 }, level = 1, group = "StrengthAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(20-30) to Strength and Intelligence" }, } }, ["UniqueStrengthAndIntelligence3"] = { affix = "", "+(15-25) to Strength and Intelligence", statOrder = { 996 }, level = 1, group = "StrengthAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(15-25) to Strength and Intelligence" }, } }, @@ -488,7 +487,7 @@ return { ["UniqueLightningResist16"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, ["UniqueLightningResist17"] = { affix = "", "+(-30-30)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-30-30)% to Lightning Resistance" }, } }, ["UniqueLightningResist18"] = { affix = "", "+(-40-40)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-40-40)% to Lightning Resistance" }, } }, - ["UniqueLightningResist19"] = { affix = "", "+(50-100)% to Lightning Resistance", statOrder = { 1023 }, level = 69, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(50-100)% to Lightning Resistance" }, } }, + ["UniqueLightningResist19"] = { affix = "", "+(50-100)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(50-100)% to Lightning Resistance" }, } }, ["UniqueLightningResist20"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, ["UniqueLightningResist21"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, ["UniqueLightningResist22"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, @@ -622,8 +621,7 @@ return { ["UniqueIncreasedLife57"] = { affix = "", "+(70-120) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-120) to maximum Life" }, } }, ["UniqueIncreasedLife58"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, ["UniqueIncreasedLife59"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-120) to maximum Life" }, } }, - ["UniqueIncreasedLife62"] = { affix = "", "+(75-125) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(75-125) to maximum Life" }, } }, - ["UniqueChanceToAvoidProjectiles1"] = { affix = "", "33% chance to avoid Projectiles", statOrder = { 4654 }, level = 1, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3452269808] = { "33% chance to avoid Projectiles" }, } }, + ["UniqueChanceToAvoidProjectiles1"] = { affix = "", "33% chance to avoid Projectiles", statOrder = { 4651 }, level = 1, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3452269808] = { "33% chance to avoid Projectiles" }, } }, ["UniqueMaximumLifeIncrease1"] = { affix = "", "(20-30)% reduced maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(20-30)% reduced maximum Life" }, } }, ["UniqueMaximumLifeIncrease2"] = { affix = "", "50% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "50% increased maximum Life" }, } }, ["UniqueMaximumLifeIncrease3"] = { affix = "", "20% reduced maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "20% reduced maximum Life" }, } }, @@ -867,7 +865,7 @@ return { ["UniqueLocalIncreasedArmourAndEvasion32"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-400)% increased Armour and Evasion" }, } }, ["UniqueLocalIncreasedArmourAndEvasion33"] = { affix = "", "(150-250)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-250)% increased Armour and Evasion" }, } }, ["UniqueLocalIncreasedArmourAndEvasion34"] = { affix = "", "(120-180)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-180)% increased Armour and Evasion" }, } }, - ["UniqueConvertAllArmourToEvasion1"] = { affix = "", "Convert All Armour to Evasion Rating", statOrder = { 10669 }, level = 1, group = "ConvertArmourToEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3351912431] = { "Convert All Armour to Evasion Rating" }, } }, + ["UniqueConvertAllArmourToEvasion1"] = { affix = "", "Convert All Armour to Evasion Rating", statOrder = { 10659 }, level = 1, group = "ConvertArmourToEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3351912431] = { "Convert All Armour to Evasion Rating" }, } }, ["UniqueLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(30-60)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(30-60)% increased Armour and Energy Shield" }, } }, ["UniqueLocalIncreasedArmourAndEnergyShield2"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(30-50)% increased Armour and Energy Shield" }, } }, ["UniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(30-50)% increased Armour and Energy Shield" }, } }, @@ -897,7 +895,6 @@ return { ["UniqueLocalIncreasedArmourAndEnergyShield27"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, ["UniqueLocalIncreasedArmourAndEnergyShield28"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, ["UniqueLocalIncreasedArmourAndEnergyShield29"] = { affix = "", "(200-300)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-300)% increased Armour and Energy Shield" }, } }, - ["UniqueLocalIncreasedArmourAndEnergyShield30"] = { affix = "", "(200-300)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-300)% increased Armour and Energy Shield" }, } }, ["UniqueLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(30-50)% increased Evasion and Energy Shield" }, } }, ["UniqueLocalIncreasedEvasionAndEnergyShield2"] = { affix = "", "(30-60)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(30-60)% increased Evasion and Energy Shield" }, } }, ["UniqueLocalIncreasedEvasionAndEnergyShield3"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, @@ -977,15 +974,15 @@ return { ["UniqueMovementVelocity27"] = { affix = "", "30% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, ["UniqueMovementVelocity28"] = { affix = "", "15% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, ["UniqueMovementVelocity29"] = { affix = "", "30% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["UniqueCannotSprint1"] = { affix = "", "You cannot Sprint", statOrder = { 5315 }, level = 1, group = "CannotSprint", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1536107934] = { "You cannot Sprint" }, } }, - ["UniqueAttackerTakesDamage1"] = { affix = "", "(4-5) to (8-10) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(4-5) to (8-10) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage2"] = { affix = "", "(3-5) to (6-10) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(3-5) to (6-10) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage3"] = { affix = "", "(15-20) to (25-30) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(15-20) to (25-30) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage4"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage5"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage6"] = { affix = "", "(25-30) to (35-40) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(25-30) to (35-40) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage7"] = { affix = "", "(24-35) to (36-53) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (36-53) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage8"] = { affix = "", "(20-31) to (32-49) Physical Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(20-31) to (32-49) Physical Thorns damage" }, } }, + ["UniqueCannotSprint1"] = { affix = "", "You cannot Sprint", statOrder = { 5311 }, level = 1, group = "CannotSprint", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1536107934] = { "You cannot Sprint" }, } }, + ["UniqueAttackerTakesDamage1"] = { affix = "", "(4-5) to (8-10) Physical Thorns damage", statOrder = { 10252 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(4-5) to (8-10) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage2"] = { affix = "", "(3-5) to (6-10) Physical Thorns damage", statOrder = { 10252 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(3-5) to (6-10) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage3"] = { affix = "", "(15-20) to (25-30) Physical Thorns damage", statOrder = { 10252 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(15-20) to (25-30) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage4"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 10252 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage5"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 10252 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage6"] = { affix = "", "(25-30) to (35-40) Physical Thorns damage", statOrder = { 10252 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(25-30) to (35-40) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage7"] = { affix = "", "(24-35) to (36-53) Physical Thorns damage", statOrder = { 10252 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (36-53) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage8"] = { affix = "", "(20-31) to (32-49) Physical Thorns damage", statOrder = { 10252 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(20-31) to (32-49) Physical Thorns damage" }, } }, ["UniqueAddedPhysicalDamage1"] = { affix = "", "Adds (1-4) to (8-12) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-4) to (8-12) Physical Damage to Attacks" }, } }, ["UniqueAddedPhysicalDamage1BigRange"] = { affix = "", "Adds (0-5) to (6-18) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (0-5) to (6-18) Physical Damage to Attacks" }, } }, ["UniqueAddedPhysicalDamage2"] = { affix = "", "Adds (3-5) to (8-10) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (8-10) Physical Damage to Attacks" }, } }, @@ -1120,7 +1117,7 @@ return { ["UniqueGlobalLightningGemLevel2"] = { affix = "", "+(2-4) to Level of all Lightning Skills", statOrder = { 962 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+(2-4) to Level of all Lightning Skills" }, } }, ["UniqueGlobalElementalGemLevel1"] = { affix = "", "+(2-4) to Level of all Elemental Skills", statOrder = { 957 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2901213448] = { "+(2-4) to Level of all Elemental Skills" }, } }, ["UniqueGlobalMinionSpellSkillGemLevel1"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, - ["UniqueGlobalMinionSpellSkillGemLevel2"] = { affix = "", "+1 to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, + ["UniqueGlobalMinionSpellSkillGemLevel2"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(2-3) to Level of all Minion Skills" }, } }, ["UniqueGlobalMinionSpellSkillGemLevel3"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(2-3) to Level of all Minion Skills" }, } }, ["UniqueGlobalCurseGemLevel1"] = { affix = "", "+(1-2) to Level of all Curse Skills", statOrder = { 971 }, level = 1, group = "GlobalCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [805298720] = { "+(1-2) to Level of all Curse Skills" }, } }, ["UniqueGlobalIncreaseMeleeSkillGemLevel1"] = { affix = "", "+(2-3) to Level of all Melee Skills", statOrder = { 966 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+(2-3) to Level of all Melee Skills" }, } }, @@ -1277,7 +1274,7 @@ return { ["UniqueIncreasedCastSpeed15"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, ["UniqueIncreasedCastSpeed16"] = { affix = "", "(10-20)% reduced Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% reduced Cast Speed" }, } }, ["UniqueIncreasedCastSpeed17"] = { affix = "", "(15-30)% increased Cast Speed", statOrder = { 987 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-30)% increased Cast Speed" }, } }, - ["UniqueIncreasedCastSpeed18"] = { affix = "", "(10-20)% reduced Cast Speed", statOrder = { 987 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% reduced Cast Speed" }, } }, + ["UniqueIncreasedCastSpeed18"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 987 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, ["UniqueIncreasedCastSpeed19"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 987 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, ["UniqueIncreasedCastSpeed20"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, ["UniqueIncreasedCastSpeed21"] = { affix = "", "(7-13)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-13)% increased Cast Speed" }, } }, @@ -1321,7 +1318,7 @@ return { ["UniqueCriticalStrikeChance13"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-25)% increased Critical Hit Chance" }, } }, ["UniqueCriticalStrikeChance14"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, ["UniqueCriticalStrikeChance15"] = { affix = "", "100% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "100% increased Critical Hit Chance" }, } }, - ["UniqueCriticalStrikeChance16"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 976 }, level = 69, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, + ["UniqueCriticalStrikeChance16"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Critical Hit Chance" }, } }, ["UniqueLocalCriticalStrikeChance1"] = { affix = "", "+15% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+15% to Critical Hit Chance" }, } }, ["UniqueLocalCriticalStrikeChance2"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3-5)% to Critical Hit Chance" }, } }, ["UniqueLocalCriticalStrikeChance3"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+5% to Critical Hit Chance" }, } }, @@ -1349,7 +1346,7 @@ return { ["UniqueSpellCriticalStrikeMultiplier2"] = { affix = "", "(20-30)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(20-30)% increased Critical Spell Damage Bonus" }, } }, ["UniqueNearbyAlliesCriticalMultiplier1"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Damage Bonus", statOrder = { 917 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-50)% increased Critical Damage Bonus" }, } }, ["UniqueSpellCriticalStrikeMultiplierPerSpellCritRecently1"] = { affix = "", "5% reduced Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", statOrder = { 983 }, level = 1, group = "SpellCriticalStrikeMultiplierPerSpellCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [2972244965] = { "5% reduced Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently" }, } }, - ["UniqueChanceForSpellCriticalHitsToBeLucky1"] = { affix = "", "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9993 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(15-30)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, + ["UniqueChanceForSpellCriticalHitsToBeLucky1"] = { affix = "", "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9984 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(15-30)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, ["UniqueItemFoundRarityIncrease1"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(40-50)% increased Rarity of Items found" }, } }, ["UniqueItemFoundRarityIncrease2"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, ["UniqueItemFoundRarityIncrease3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, @@ -1394,7 +1391,7 @@ return { ["UniqueLightRadius18"] = { affix = "", "20% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, ["UniqueLightRadius19"] = { affix = "", "10% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% reduced Light Radius" }, } }, ["UniqueLightRadius20"] = { affix = "", "23% reduced Light Radius", statOrder = { 1070 }, level = 82, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "23% reduced Light Radius" }, } }, - ["UniqueLightRadius21"] = { affix = "", "(30-50)% increased Light Radius", statOrder = { 1070 }, level = 69, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(30-50)% increased Light Radius" }, } }, + ["UniqueLightRadius21"] = { affix = "", "(30-50)% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(30-50)% increased Light Radius" }, } }, ["UniqueLocalBlockChance1"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, ["UniqueLocalBlockChance2"] = { affix = "", "(80-100)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(80-100)% increased Block chance" }, } }, ["UniqueLocalBlockChance3"] = { affix = "", "(15-20)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(15-20)% increased Block chance" }, } }, @@ -1430,17 +1427,17 @@ return { ["UniqueLocalIncreasedSpiritPercent3"] = { affix = "", "(25-35)% increased Spirit", statOrder = { 857 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(25-35)% increased Spirit" }, } }, ["UniqueLocalIncreasedSpiritPercent4"] = { affix = "", "(50-75)% increased Spirit", statOrder = { 857 }, level = 78, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(50-75)% increased Spirit" }, } }, ["UniqueIncreasedMaximumSpiritPercent1"] = { affix = "", "(10-15)% increased Spirit", statOrder = { 1417 }, level = 1, group = "MaximumSpiritPercentage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1416406066] = { "(10-15)% increased Spirit" }, } }, - ["UniqueSpiritReservationEfficiency1"] = { affix = "", "(30-50)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(30-50)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueSpiritReservationEfficiency1"] = { affix = "", "(30-50)% increased Spirit Reservation Efficiency", statOrder = { 4751 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(30-50)% increased Spirit Reservation Efficiency" }, } }, ["UniqueReducedBurnDuration1"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-50)% reduced Ignite Duration on you" }, } }, ["UniqueReducedBurnDuration2"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-50)% reduced Ignite Duration on you" }, } }, ["UniqueReducedShockDuration1"] = { affix = "", "(30-50)% reduced Shock duration on you", statOrder = { 1066 }, level = 1, group = "ReducedShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(30-50)% reduced Shock duration on you" }, } }, ["UniqueReducedChillDuration1"] = { affix = "", "(30-50)% reduced Chill Duration on you", statOrder = { 1064 }, level = 1, group = "ReducedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(30-50)% reduced Chill Duration on you" }, } }, ["UniqueReducedFreezeDuration1"] = { affix = "", "(30-50)% reduced Freeze Duration on you", statOrder = { 1065 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(30-50)% reduced Freeze Duration on you" }, } }, ["UniqueReducedPoisonDuration1"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1067 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(40-60)% reduced Poison Duration on you" }, } }, - ["UniqueReducedBleedDuration1"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, - ["UniqueReducedBleedDuration2"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, - ["UniqueReducedBleedDuration3"] = { affix = "", "(30-50)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-50)% reduced Duration of Bleeding on You" }, } }, - ["UniqueReducedBleedDuration4"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, + ["UniqueReducedBleedDuration1"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9795 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, + ["UniqueReducedBleedDuration2"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9795 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, + ["UniqueReducedBleedDuration3"] = { affix = "", "(30-50)% reduced Duration of Bleeding on You", statOrder = { 9795 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-50)% reduced Duration of Bleeding on You" }, } }, + ["UniqueReducedBleedDuration4"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9795 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, ["UniqueAdditionalPhysicalDamageReduction1"] = { affix = "", "15% additional Physical Damage Reduction", statOrder = { 1006 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "15% additional Physical Damage Reduction" }, } }, ["UniqueMaximumFireResist1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(3-5)% to Maximum Fire Resistance" }, } }, ["UniqueMaximumFireResist2"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to Maximum Fire Resistance" }, } }, @@ -1460,8 +1457,8 @@ return { ["UniqueArrowPierceChance1"] = { affix = "", "(15-25)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "(15-25)% chance to Pierce an Enemy" }, } }, ["UniqueAdditionalArrow1"] = { affix = "", "Bow Attacks fire 3 additional Arrows", statOrder = { 990 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 3 additional Arrows" }, } }, ["UniqueArrowsReturnAfterPiercingXTimes1"] = { affix = "", "Attack Projectiles Return if they Pierced at least (2-4) times", statOrder = { 2580 }, level = 1, group = "ArrowsReturnAfterPiercingXTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2720781168] = { "Attack Projectiles Return if they Pierced at least (2-4) times" }, } }, - ["UniqueProjectileIncreasedCriticalHitChancePerPierce1"] = { affix = "", "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced", statOrder = { 9564 }, level = 1, group = "ProjectileIncreasedCriticalHitChancePerPierce", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1163615092] = { "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced" }, } }, - ["UniqueProjectileIncreasedDamagePerPierce1"] = { affix = "", "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced", statOrder = { 9554 }, level = 1, group = "ProjectileIncreasedDamagePerPierce", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced" }, } }, + ["UniqueProjectileIncreasedCriticalHitChancePerPierce1"] = { affix = "", "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced", statOrder = { 9555 }, level = 1, group = "ProjectileIncreasedCriticalHitChancePerPierce", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1163615092] = { "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced" }, } }, + ["UniqueProjectileIncreasedDamagePerPierce1"] = { affix = "", "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced", statOrder = { 9545 }, level = 1, group = "ProjectileIncreasedDamagePerPierce", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced" }, } }, ["UniqueFlaskLifeRecoveryRate1"] = { affix = "", "(30-50)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(30-50)% increased Flask Life Recovery rate" }, } }, ["UniqueFlaskLifeRecoveryRate2"] = { affix = "", "(40-60)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(40-60)% increased Flask Life Recovery rate" }, } }, ["UniqueFlaskLifeRecoveryRate3"] = { affix = "", "(20-30)% reduced Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-30)% reduced Flask Life Recovery rate" }, } }, @@ -1473,17 +1470,17 @@ return { ["UniqueFlaskManaRecoveryRate2"] = { affix = "", "(-25-25)% reduced Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(-25-25)% reduced Flask Mana Recovery rate" }, } }, ["UniqueFlaskManaRecoveryRate3"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(20-30)% increased Flask Mana Recovery rate" }, } }, ["UniqueFlaskManaRecoveryRate4"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(20-30)% increased Flask Mana Recovery rate" }, } }, - ["UniqueIncreasedFlaskChargesGained1"] = { affix = "", "100% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "100% increased Flask Charges gained" }, } }, - ["UniqueIncreasedFlaskChargesGained2"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueIncreasedFlaskChargesGained3"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueIncreasedFlaskChargesGained4"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueReducedFlaskChargesUsed1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueIncreasedFlaskChargesGained1"] = { affix = "", "100% increased Flask Charges gained", statOrder = { 6636 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "100% increased Flask Charges gained" }, } }, + ["UniqueIncreasedFlaskChargesGained2"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6636 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueIncreasedFlaskChargesGained3"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6636 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueIncreasedFlaskChargesGained4"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6636 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueReducedFlaskChargesUsed1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6636 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, ["UniqueReducedFlaskChargesUsed2"] = { affix = "", "50% increased Flask Charges used", statOrder = { 1049 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "50% increased Flask Charges used" }, } }, ["UniqueReducedFlaskChargesUsed3"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 1049 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-15)% reduced Flask Charges used" }, } }, - ["UniqueIncreasedCharmChargesGained1"] = { affix = "", "(-20-20)% reduced Charm Charges gained", statOrder = { 5605 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(-20-20)% reduced Charm Charges gained" }, } }, - ["UniqueIncreasedCharmChargesGained2"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5605 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, - ["UniqueReducedCharmChargesUsed1"] = { affix = "", "(10-30)% increased Charm Charges used", statOrder = { 5606 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(10-30)% increased Charm Charges used" }, } }, - ["UniqueReducedCharmChargesUsed2"] = { affix = "", "(-10-10)% reduced Charm Charges used", statOrder = { 5606 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(-10-10)% reduced Charm Charges used" }, } }, + ["UniqueIncreasedCharmChargesGained1"] = { affix = "", "(-20-20)% reduced Charm Charges gained", statOrder = { 5601 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(-20-20)% reduced Charm Charges gained" }, } }, + ["UniqueIncreasedCharmChargesGained2"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5601 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, + ["UniqueReducedCharmChargesUsed1"] = { affix = "", "(10-30)% increased Charm Charges used", statOrder = { 5602 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(10-30)% increased Charm Charges used" }, } }, + ["UniqueReducedCharmChargesUsed2"] = { affix = "", "(-10-10)% reduced Charm Charges used", statOrder = { 5602 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(-10-10)% reduced Charm Charges used" }, } }, ["UniqueAdditionalCharm1"] = { affix = "", "+(0-2) Charm Slot", statOrder = { 989 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+(0-2) Charm Slot" }, } }, ["UniqueAdditionalCharm2"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 989 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+(1-2) Charm Slot" }, } }, ["UniqueAdditionalCharm3"] = { affix = "", "+2 Charm Slots", statOrder = { 989 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+2 Charm Slots" }, } }, @@ -1505,7 +1502,7 @@ return { ["UniqueLocalStunDamageIncrease1"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (30-50)% increased Stun Buildup" }, } }, ["UniqueLocalStunDamageIncrease2"] = { affix = "", "Causes (150-200)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (150-200)% increased Stun Buildup" }, } }, ["UniqueLocalStunDamageIncrease3"] = { affix = "", "Causes (40-60)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (40-60)% increased Stun Buildup" }, } }, - ["UniqueMeleeDamageAgainstStunnedEnemies1"] = { affix = "", "(35-50)% increased Melee Damage against Heavy Stunned enemies", statOrder = { 8920 }, level = 1, group = "MeleeDamageAgainstStunnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2677352961] = { "(35-50)% increased Melee Damage against Heavy Stunned enemies" }, } }, + ["UniqueMeleeDamageAgainstStunnedEnemies1"] = { affix = "", "(35-50)% increased Melee Damage against Heavy Stunned enemies", statOrder = { 8911 }, level = 1, group = "MeleeDamageAgainstStunnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2677352961] = { "(35-50)% increased Melee Damage against Heavy Stunned enemies" }, } }, ["UniqueSpellDamage1"] = { affix = "", "100% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "100% increased Spell Damage" }, } }, ["UniqueSpellDamage2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, ["UniqueSpellDamage3"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-100)% increased Spell Damage" }, } }, @@ -1522,7 +1519,7 @@ return { ["UniqueDamageTakenGainedAsLife2"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, ["UniqueDamageTakenGoesToMana1"] = { affix = "", "50% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "50% of Damage taken Recouped as Mana" }, } }, ["UniqueDamageTakenGoesToMana2"] = { affix = "", "(5-30)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(5-30)% of Damage taken Recouped as Mana" }, } }, - ["UniqueDamageGainedAsFire1"] = { affix = "", "Gain (40-60)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 69, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (40-60)% of Damage as Extra Fire Damage" }, } }, + ["UniqueDamageGainedAsFire1"] = { affix = "", "Gain (40-60)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (40-60)% of Damage as Extra Fire Damage" }, } }, ["UniqueDamageGainedAsFire2"] = { affix = "", "Gain 25% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain 25% of Damage as Extra Fire Damage" }, } }, ["UniqueDamageGainedAsFire3"] = { affix = "", "Gain (30-50)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (30-50)% of Damage as Extra Fire Damage" }, } }, ["UniqueDamageGainedAsCold1"] = { affix = "", "Gain 25% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain 25% of Damage as Extra Cold Damage" }, } }, @@ -1537,8 +1534,8 @@ return { ["UniquePresenceRadius6"] = { affix = "", "(20-40)% reduced Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(20-40)% reduced Presence Area of Effect" }, } }, ["UniqueGlobalProjectileGemLevel1"] = { affix = "", "+(1-2) to Level of all Projectile Skills", statOrder = { 968 }, level = 1, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1202301673] = { "+(1-2) to Level of all Projectile Skills" }, } }, ["UniqueGlobalMeleeGemLevel1"] = { affix = "", "+(1-2) to Level of all Melee Skills", statOrder = { 966 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+(1-2) to Level of all Melee Skills" }, } }, - ["UniqueProjectileDamageIfMeleeHitRecently1"] = { affix = "", "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9547 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["UniqueMeleeDamageIfProjectileHitRecently1"] = { affix = "", "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8914 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["UniqueProjectileDamageIfMeleeHitRecently1"] = { affix = "", "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9538 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["UniqueMeleeDamageIfProjectileHitRecently1"] = { affix = "", "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8905 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, ["UniqueCursesNeverExpire1"] = { affix = "", "Curses you inflict have infinite Duration", statOrder = { 1903 }, level = 1, group = "CursesNeverExpire", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2609822974] = { "Curses you inflict have infinite Duration" }, } }, ["UniqueCurseAreaOfEffect1"] = { affix = "", "(20-30)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(20-30)% increased Area of Effect of Curses" }, } }, ["UniqueReducedCurseEffectOnYou1"] = { affix = "", "(30-50)% reduced effect of Curses on you", statOrder = { 1911 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(30-50)% reduced effect of Curses on you" }, } }, @@ -1549,9 +1546,9 @@ return { ["UniqueMinionLife5"] = { affix = "", "Minions have 50% reduced maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 50% reduced maximum Life" }, } }, ["UniqueMinionLife6"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, ["UniqueMinionDamage1"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, - ["UniqueMinionDamage2"] = { affix = "", "Minions deal (80-120)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (80-120)% increased Damage" }, } }, + ["UniqueMinionDamage2"] = { affix = "", "Minions deal (80-100)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (80-100)% increased Damage" }, } }, ["UniqueMinionDamage3"] = { affix = "", "Minions deal (80-120)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (80-120)% increased Damage" }, } }, - ["UniqueCompanionLife1"] = { affix = "", "Companions have (30-50)% increased maximum Life", statOrder = { 5726 }, level = 1, group = "CompanionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (30-50)% increased maximum Life" }, } }, + ["UniqueCompanionLife1"] = { affix = "", "Companions have (30-50)% increased maximum Life", statOrder = { 5722 }, level = 1, group = "CompanionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (30-50)% increased maximum Life" }, } }, ["UniqueFlaskChargesAddedPercent1"] = { affix = "", "(30-40)% increased Charges gained", statOrder = { 1072 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(30-40)% increased Charges gained" }, } }, ["UniqueFlaskExtraCharges1"] = { affix = "", "(30-40)% increased Charges", statOrder = { 1075 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(30-40)% increased Charges" }, } }, ["UniqueFlaskExtraCharges2"] = { affix = "", "(50-60)% reduced Charges", statOrder = { 1075 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(50-60)% reduced Charges" }, } }, @@ -1565,144 +1562,144 @@ return { ["UniqueCharmIncreasedDuration1"] = { affix = "", "(15-25)% increased Duration", statOrder = { 928 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(15-25)% increased Duration" }, } }, ["UniqueCharmIncreasedDuration2"] = { affix = "", "(10-20)% increased Duration", statOrder = { 928 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(10-20)% increased Duration" }, } }, ["UniqueGlobalCharmIncreasedDuration1"] = { affix = "", "(10-50)% reduced Charm Effect Duration", statOrder = { 900 }, level = 1, group = "CharmDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(10-50)% reduced Charm Effect Duration" }, } }, - ["UniqueDodgeRollPhasing1"] = { affix = "", "Dodge Roll passes through Enemies", statOrder = { 6202 }, level = 1, group = "DodgeRollPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1298316550] = { "Dodge Roll passes through Enemies" }, } }, + ["UniqueDodgeRollPhasing1"] = { affix = "", "Dodge Roll passes through Enemies", statOrder = { 6198 }, level = 1, group = "DodgeRollPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1298316550] = { "Dodge Roll passes through Enemies" }, } }, ["UniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 2% of maximum Life on Kill" }, } }, ["UniqueMaximumLifeOnKillPercent2"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 1% of maximum Life on Kill" }, } }, ["UniqueMaximumLifeOnKillPercent3"] = { affix = "", "Recover (2-4)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (2-4)% of maximum Life on Kill" }, } }, ["UniqueMaximumManaOnKillPercent1"] = { affix = "", "Lose 1% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Lose 1% of maximum Mana on Kill" }, } }, - ["UniqueAttackerTakesFireDamage1"] = { affix = "", "25 to 35 Fire Thorns damage", statOrder = { 10259 }, level = 1, group = "ThornsFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1993950627] = { "25 to 35 Fire Thorns damage" }, } }, - ["UniqueAttackerTakesColdDamage1"] = { affix = "", "25 to 35 Cold Thorns damage", statOrder = { 10258 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "25 to 35 Cold Thorns damage" }, } }, + ["UniqueAttackerTakesFireDamage1"] = { affix = "", "25 to 35 Fire Thorns damage", statOrder = { 10250 }, level = 1, group = "ThornsFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1993950627] = { "25 to 35 Fire Thorns damage" }, } }, + ["UniqueAttackerTakesColdDamage1"] = { affix = "", "25 to 35 Cold Thorns damage", statOrder = { 10249 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "25 to 35 Cold Thorns damage" }, } }, ["UniquePhysicalDamageTakenAsFire1"] = { affix = "", "50% of Physical Damage taken as Fire Damage", statOrder = { 2200 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "50% of Physical Damage taken as Fire Damage" }, } }, - ["UniqueAllAttributesPerLevel1"] = { affix = "", "-1 to all Attributes per Level", statOrder = { 7606 }, level = 1, group = "LocalAllAttributesPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2333085568] = { "-1 to all Attributes per Level" }, } }, + ["UniqueAllAttributesPerLevel1"] = { affix = "", "-1 to all Attributes per Level", statOrder = { 7602 }, level = 1, group = "LocalAllAttributesPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2333085568] = { "-1 to all Attributes per Level" }, } }, ["UniqueLocalNoWeaponPhysicalDamage1"] = { affix = "", "No Physical Damage", statOrder = { 830 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, ["UniqueLocalNoWeaponPhysicalDamage2"] = { affix = "", "No Physical Damage", statOrder = { 830 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, ["UniqueLocalNoWeaponPhysicalDamage3"] = { affix = "", "No Physical Damage", statOrder = { 830 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, ["UniqueLocalNoWeaponPhysicalDamage4"] = { affix = "", "No Physical Damage", statOrder = { 830 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, - ["UniqueLocalFreezeOnFullLife1"] = { affix = "", "Freezes Enemies that are on Full Life", statOrder = { 7613 }, level = 1, group = "LocalFreezeOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2260055669] = { "Freezes Enemies that are on Full Life" }, } }, - ["UniqueAttackDamageOnLowLife1"] = { affix = "", "100% increased Attack Damage while on Low Life", statOrder = { 4530 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4246007234] = { "100% increased Attack Damage while on Low Life" }, } }, - ["UniqueAttackDamageNotOnLowMana1"] = { affix = "", "100% increased Attack Damage while not on Low Mana", statOrder = { 4534 }, level = 1, group = "AttackDamageNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2462683918] = { "100% increased Attack Damage while not on Low Mana" }, } }, - ["UniqueQuiverModifierEffect1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9605 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200678966] = { "(150-250)% increased bonuses gained from Equipped Quiver" }, } }, - ["UniqueDrainManaHealLife1"] = { affix = "", "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life", statOrder = { 10668, 10668.1 }, level = 1, group = "DrainManaHealLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894895028] = { "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life" }, } }, + ["UniqueLocalFreezeOnFullLife1"] = { affix = "", "Freezes Enemies that are on Full Life", statOrder = { 7609 }, level = 1, group = "LocalFreezeOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2260055669] = { "Freezes Enemies that are on Full Life" }, } }, + ["UniqueAttackDamageOnLowLife1"] = { affix = "", "100% increased Attack Damage while on Low Life", statOrder = { 4527 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4246007234] = { "100% increased Attack Damage while on Low Life" }, } }, + ["UniqueAttackDamageNotOnLowMana1"] = { affix = "", "100% increased Attack Damage while not on Low Mana", statOrder = { 4531 }, level = 1, group = "AttackDamageNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2462683918] = { "100% increased Attack Damage while not on Low Mana" }, } }, + ["UniqueQuiverModifierEffect1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9596 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200678966] = { "(150-250)% increased bonuses gained from Equipped Quiver" }, } }, + ["UniqueDrainManaHealLife1"] = { affix = "", "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life", statOrder = { 10658, 10658.1 }, level = 1, group = "DrainManaHealLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894895028] = { "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life" }, } }, ["UniqueBurningGroundWhileMovingMaximumLife1"] = { affix = "", "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life", statOrder = { 3980 }, level = 1, group = "BurningGroundWhileMovingMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2356156926] = { "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life" }, } }, ["UniqueShockedGroundWhileMoving1"] = { affix = "", "Drop Shocked Ground while moving, lasting 8 seconds", statOrder = { 3981 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [65133983] = { "Drop Shocked Ground while moving, lasting 8 seconds" }, } }, ["UniqueCannotBePoisoned1"] = { affix = "", "Cannot be Poisoned", statOrder = { 3073 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["UniqueDoubleIgniteChance1"] = { affix = "", "Flammability Magnitude is doubled", statOrder = { 5546 }, level = 1, group = "DoubleIgniteChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1540254896] = { "Flammability Magnitude is doubled" }, } }, - ["UniqueRemoveSpirit1"] = { affix = "", "You have no Spirit", statOrder = { 10060 }, level = 1, group = "RemoveSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3148264775] = { "You have no Spirit" }, } }, + ["UniqueDoubleIgniteChance1"] = { affix = "", "Flammability Magnitude is doubled", statOrder = { 5542 }, level = 1, group = "DoubleIgniteChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1540254896] = { "Flammability Magnitude is doubled" }, } }, + ["UniqueRemoveSpirit1"] = { affix = "", "You have no Spirit", statOrder = { 10051 }, level = 1, group = "RemoveSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3148264775] = { "You have no Spirit" }, } }, ["UniqueBlockChanceIncrease1"] = { affix = "", "25% increased Block chance", statOrder = { 1133 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4147897060] = { "25% increased Block chance" }, } }, ["UniqueBlockChanceIncrease2"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 1133 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4147897060] = { "(10-15)% increased Block chance" }, } }, ["UniqueMaximumBlockChance1"] = { affix = "", "+(5-10)% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "+(5-10)% to maximum Block chance" }, } }, ["UniqueMaximumBlockChance2"] = { affix = "", "-(20-10)% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "-(20-10)% to maximum Block chance" }, } }, - ["UniqueLeechLifeOnSpellCast1"] = { affix = "", "Leeches 1% of maximum Life when you Cast a Spell", statOrder = { 7459 }, level = 1, group = "LeechLifeOnSpellCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335699483] = { "Leeches 1% of maximum Life when you Cast a Spell" }, } }, + ["UniqueLeechLifeOnSpellCast1"] = { affix = "", "Leeches 1% of maximum Life when you Cast a Spell", statOrder = { 7455 }, level = 1, group = "LeechLifeOnSpellCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335699483] = { "Leeches 1% of maximum Life when you Cast a Spell" }, } }, ["UniqueArrowSpeed1"] = { affix = "", "(50-100)% increased Arrow Speed", statOrder = { 1552 }, level = 1, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1207554355] = { "(50-100)% increased Arrow Speed" }, } }, ["UniqueWeaponDamageFinalPercent1"] = { affix = "", "40% less Attack Damage", statOrder = { 2240 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [412462523] = { "40% less Attack Damage" }, } }, - ["UniqueEnergyShieldRechargeOnKill1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6449 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1618482990] = { "20% chance for Energy Shield Recharge to start when you Kill an Enemy" }, } }, + ["UniqueEnergyShieldRechargeOnKill1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6445 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1618482990] = { "20% chance for Energy Shield Recharge to start when you Kill an Enemy" }, } }, ["UniqueCausesBleeding1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2261 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2091621414] = { "Causes Bleeding on Hit" }, } }, - ["UniqueLocalPoisonOnHit1"] = { affix = "", "Always Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "Always Poison on Hit with this weapon" }, } }, + ["UniqueLocalPoisonOnHit1"] = { affix = "", "Always Poison on Hit with this weapon", statOrder = { 7809 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "Always Poison on Hit with this weapon" }, } }, ["UniqueAdditionalCurseOnEnemies1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1909 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, ["UniqueCursesSpreadOnKill1"] = { affix = "", "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", statOrder = { 2684 }, level = 1, group = "CursesSpreadOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies" }, } }, - ["UniqueGainDarkWhispers1"] = { affix = "", "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", statOrder = { 6773 }, level = 1, group = "UniqueDarkWhispers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482970488] = { "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence" }, } }, - ["UniqueHitDamageAgainstEnemiesInPresence1"] = { affix = "", "(20-40)% increased Damage with Hits against targets in your Presence", statOrder = { 7186 }, level = 1, group = "HitDamageAgainstEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4015438188] = { "(20-40)% increased Damage with Hits against targets in your Presence" }, } }, - ["UniqueBeltFlaskRecoveryRate1"] = { affix = "", "(30-40)% increased Life and Mana Recovery from Flasks", statOrder = { 6644 }, level = 1, group = "BeltFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [2310741722] = { "(30-40)% increased Life and Mana Recovery from Flasks" }, } }, - ["UniqueLowLifeThreshold1"] = { affix = "", "You are considered on Low Life while at 75% of maximum Life or below instead", statOrder = { 7943 }, level = 1, group = "LowLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [356835700] = { "You are considered on Low Life while at 75% of maximum Life or below instead" }, } }, - ["UniqueLoseLifeOnSkillUse1"] = { affix = "", "Lose 5 Life when you use a Skill", statOrder = { 7940 }, level = 1, group = "LoseLifeOnKillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1902409192] = { "Lose 5 Life when you use a Skill" }, } }, - ["UniqueChanceToAvoidDeath1"] = { affix = "", "50% chance to Avoid Death from Hits", statOrder = { 5485 }, level = 1, group = "ChanceToAvoidDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1689729380] = { "50% chance to Avoid Death from Hits" }, } }, - ["UniqueLowLifeOnManaThreshold1"] = { affix = "", "You count as on Low Life while at 35% of maximum Mana or below", statOrder = { 10432 }, level = 1, group = "LowLifeOnManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3154256486] = { "You count as on Low Life while at 35% of maximum Mana or below" }, } }, - ["UniqueLowManaOnLifeThreshold1"] = { affix = "", "You count as on Low Mana while at 35% of maximum Life or below", statOrder = { 10433 }, level = 1, group = "LowManaOnLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1143240184] = { "You count as on Low Mana while at 35% of maximum Life or below" }, } }, + ["UniqueGainDarkWhispers1"] = { affix = "", "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", statOrder = { 6769 }, level = 1, group = "UniqueDarkWhispers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482970488] = { "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence" }, } }, + ["UniqueHitDamageAgainstEnemiesInPresence1"] = { affix = "", "(20-40)% increased Damage with Hits against targets in your Presence", statOrder = { 7182 }, level = 1, group = "HitDamageAgainstEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4015438188] = { "(20-40)% increased Damage with Hits against targets in your Presence" }, } }, + ["UniqueBeltFlaskRecoveryRate1"] = { affix = "", "(30-40)% increased Life and Mana Recovery from Flasks", statOrder = { 6640 }, level = 1, group = "BeltFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [2310741722] = { "(30-40)% increased Life and Mana Recovery from Flasks" }, } }, + ["UniqueLowLifeThreshold1"] = { affix = "", "You are considered on Low Life while at 75% of maximum Life or below instead", statOrder = { 7939 }, level = 1, group = "LowLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [356835700] = { "You are considered on Low Life while at 75% of maximum Life or below instead" }, } }, + ["UniqueLoseLifeOnSkillUse1"] = { affix = "", "Lose 5 Life when you use a Skill", statOrder = { 7936 }, level = 1, group = "LoseLifeOnKillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1902409192] = { "Lose 5 Life when you use a Skill" }, } }, + ["UniqueChanceToAvoidDeath1"] = { affix = "", "50% chance to Avoid Death from Hits", statOrder = { 5481 }, level = 1, group = "ChanceToAvoidDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1689729380] = { "50% chance to Avoid Death from Hits" }, } }, + ["UniqueLowLifeOnManaThreshold1"] = { affix = "", "You count as on Low Life while at 35% of maximum Mana or below", statOrder = { 10422 }, level = 1, group = "LowLifeOnManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3154256486] = { "You count as on Low Life while at 35% of maximum Mana or below" }, } }, + ["UniqueLowManaOnLifeThreshold1"] = { affix = "", "You count as on Low Mana while at 35% of maximum Life or below", statOrder = { 10423 }, level = 1, group = "LowManaOnLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1143240184] = { "You count as on Low Mana while at 35% of maximum Life or below" }, } }, ["UniqueArmourAppliesToElementalDamage1"] = { affix = "", "+(100-150)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(100-150)% of Armour also applies to Elemental Damage" }, } }, ["UniqueNoExtraBleedDamageWhileMoving1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra damage", statOrder = { 2911 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4112450013] = { "Moving while Bleeding doesn't cause you to take extra damage" }, } }, ["UniqueGainRareMonsterModsOnKill1"] = { affix = "", "When you kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2572 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2913235441] = { "When you kill a Rare monster, you gain its Modifiers for 60 seconds" }, } }, - ["UniqueGainAModifierFromEachEnemyInPresenceOnShapeshift1"] = { affix = "", "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift", statOrder = { 6729, 6729.1, 6729.2 }, level = 1, group = "ShapeshiftCopyModsInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [885925163] = { "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift" }, } }, - ["UniquePoisonOnBlock1"] = { affix = "", "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage", statOrder = { 9489 }, level = 1, group = "PoisonDamageBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4195198267] = { "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage" }, } }, - ["UniqueDoubleAccuracyRating1"] = { affix = "", "Accuracy Rating is Doubled", statOrder = { 4141 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2161347476] = { "Accuracy Rating is Doubled" }, } }, - ["UniqueWeaponDamagePerStrength1"] = { affix = "", "10% increased Weapon Damage per 10 Strength", statOrder = { 10534 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "10% increased Weapon Damage per 10 Strength" }, } }, - ["UniqueAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4573 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, - ["UniqueAttackAreaOfEffectPerIntelligence1"] = { affix = "", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4494 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "1% increased Area of Effect for Attacks per 10 Intelligence" }, } }, + ["UniqueGainAModifierFromEachEnemyInPresenceOnShapeshift1"] = { affix = "", "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift", statOrder = { 6725, 6725.1, 6725.2 }, level = 1, group = "ShapeshiftCopyModsInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [885925163] = { "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift" }, } }, + ["UniquePoisonOnBlock1"] = { affix = "", "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage", statOrder = { 9480 }, level = 1, group = "PoisonDamageBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4195198267] = { "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage" }, } }, + ["UniqueDoubleAccuracyRating1"] = { affix = "", "Accuracy Rating is Doubled", statOrder = { 4138 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2161347476] = { "Accuracy Rating is Doubled" }, } }, + ["UniqueWeaponDamagePerStrength1"] = { affix = "", "10% increased Weapon Damage per 10 Strength", statOrder = { 10524 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "10% increased Weapon Damage per 10 Strength" }, } }, + ["UniqueAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4570 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, + ["UniqueAttackAreaOfEffectPerIntelligence1"] = { affix = "", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4491 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "1% increased Area of Effect for Attacks per 10 Intelligence" }, } }, ["UniqueAdditionalGemQuality1"] = { affix = "", "+(2-5)% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(2-5)% to Quality of all Skills" }, } }, ["UniqueAdditionalGemQuality1BigRange"] = { affix = "", "+(0-7)% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(0-7)% to Quality of all Skills" }, } }, ["UniqueMaximumResistancesOverride1"] = { affix = "", "Your Maximum Resistances are (75-80)%", statOrder = { 1008 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "elemental_resistance", "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (75-80)%" }, } }, ["UniqueMaximumResistancesOverride1BigRange"] = { affix = "", "Your Maximum Resistances are (50-82)%", statOrder = { 1008 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "elemental_resistance", "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (50-82)%" }, } }, - ["UniqueLoreweaveBlackheart1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5559 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["UniqueLoreweaveBlackheart1BigRange"] = { affix = "", "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5559 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["UniqueLoreweaveBlackheart2"] = { affix = "", "+(10-20)% of Armour also applies to Chaos Damage", statOrder = { 4645 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(10-20)% of Armour also applies to Chaos Damage" }, } }, - ["UniqueLoreweaveBlackheart2BigRange"] = { affix = "", "+(0-30)% of Armour also applies to Chaos Damage", statOrder = { 4645 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(0-30)% of Armour also applies to Chaos Damage" }, } }, - ["UniqueLoreweaveIcefang1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4281 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1375667591] = { "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude" }, } }, - ["UniqueLoreweaveIcefang2"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4279 }, level = 1, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1291285202] = { "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you" }, } }, - ["UniqueLoreweaveVenopuncture1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4280 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1717295693] = { "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude" }, } }, - ["UniqueLoreweaveVenopuncture2"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4278 }, level = 1, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2420248029] = { "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you" }, } }, - ["UniqueLoreweavePrizedPain1"] = { affix = "", "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10265 }, level = 1, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, - ["UniqueLoreweavePrizedPain1BigRange"] = { affix = "", "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10265 }, level = 1, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, + ["UniqueLoreweaveBlackheart1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5555 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["UniqueLoreweaveBlackheart1BigRange"] = { affix = "", "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5555 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["UniqueLoreweaveBlackheart2"] = { affix = "", "+(10-20)% of Armour also applies to Chaos Damage", statOrder = { 4642 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(10-20)% of Armour also applies to Chaos Damage" }, } }, + ["UniqueLoreweaveBlackheart2BigRange"] = { affix = "", "+(0-30)% of Armour also applies to Chaos Damage", statOrder = { 4642 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(0-30)% of Armour also applies to Chaos Damage" }, } }, + ["UniqueLoreweaveIcefang1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4278 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1375667591] = { "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude" }, } }, + ["UniqueLoreweaveIcefang2"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4276 }, level = 1, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1291285202] = { "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you" }, } }, + ["UniqueLoreweaveVenopuncture1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4277 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1717295693] = { "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude" }, } }, + ["UniqueLoreweaveVenopuncture2"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4275 }, level = 1, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2420248029] = { "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you" }, } }, + ["UniqueLoreweavePrizedPain1"] = { affix = "", "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10256 }, level = 1, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, + ["UniqueLoreweavePrizedPain1BigRange"] = { affix = "", "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10256 }, level = 1, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, ["UniqueLoreweaveDoedres1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1909 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, ["UniqueLoreweaveCracklecreep1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1947 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, ["UniqueLoreweaveBlisteringBond1"] = { affix = "", "You take Fire Damage instead of Physical Damage from Bleeding", statOrder = { 2238 }, level = 1, group = "SelfBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2022332470] = { "You take Fire Damage instead of Physical Damage from Bleeding" }, } }, - ["UniqueLoreweaveBlisteringBond2"] = { affix = "", "Bleeding you inflict deals Fire Damage instead of Physical Damage", statOrder = { 4807 }, level = 1, group = "InflictBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1016759424] = { "Bleeding you inflict deals Fire Damage instead of Physical Damage" }, } }, + ["UniqueLoreweaveBlisteringBond2"] = { affix = "", "Bleeding you inflict deals Fire Damage instead of Physical Damage", statOrder = { 4803 }, level = 1, group = "InflictBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1016759424] = { "Bleeding you inflict deals Fire Damage instead of Physical Damage" }, } }, ["UniqueLoreweaveBlisteringBond3"] = { affix = "", "Fire Damage also Contributes to Bleeding Magnitude", statOrder = { 2633 }, level = 1, group = "FireDamageAlsoContributesToBleed", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1221641885] = { "Fire Damage also Contributes to Bleeding Magnitude" }, } }, - ["UniqueLoreweavePolcirkeln1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5657 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, - ["UniqueLoreweaveGlowswarm1"] = { affix = "", "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", statOrder = { 10436 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds" }, } }, - ["UniqueLoreweaveGlowswarm1BigRange"] = { affix = "", "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds", statOrder = { 10436 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds" }, } }, + ["UniqueLoreweavePolcirkeln1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5653 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, + ["UniqueLoreweaveGlowswarm1"] = { affix = "", "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", statOrder = { 10426 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds" }, } }, + ["UniqueLoreweaveGlowswarm1BigRange"] = { affix = "", "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds", statOrder = { 10426 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds" }, } }, ["UniqueLoreweaveDreamFragments1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1593 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, ["UniqueLoreweaveWhisperBrotherhood1"] = { affix = "", "100% of Cold Damage Converted to Lightning Damage", statOrder = { 1716 }, level = 1, group = "ColdDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1686824704] = { "100% of Cold Damage Converted to Lightning Damage" }, } }, ["UniqueLoreweaveCallBrotherhood1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1713 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, - ["UniqueLoreweaveSeedOfCataclysm1"] = { affix = "", "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9993 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(15-30)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, - ["UniqueLoreweaveSeedOfCataclysm1BigRange"] = { affix = "", "(0-60)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9993 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(0-60)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, + ["UniqueLoreweaveSeedOfCataclysm1"] = { affix = "", "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9984 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(15-30)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, + ["UniqueLoreweaveSeedOfCataclysm1BigRange"] = { affix = "", "(0-60)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9984 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(0-60)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, ["UniqueLoreweaveMingsHeart1"] = { affix = "", "Gain (10-15)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3398787959] = { "Gain (10-15)% of Damage as Extra Chaos Damage" }, } }, ["UniqueLoreweaveMingsHeart1BigRange"] = { affix = "", "Gain (0-25)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3398787959] = { "Gain (0-25)% of Damage as Extra Chaos Damage" }, } }, ["UniqueLoreweaveBlackflameIgniteDealsChaosDamageInstead1"] = { affix = "", "Ignite you inflict deals Chaos Damage instead of Fire Damage", statOrder = { 1076 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [983582600] = { "Ignite you inflict deals Chaos Damage instead of Fire Damage" }, } }, - ["UniqueLoreweaveBlackflameWitherNeverExpiresOnIgnitedEnemies1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6396 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, + ["UniqueLoreweaveBlackflameWitherNeverExpiresOnIgnitedEnemies1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6392 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, ["UniqueLoreweaveBlackflameWitherAlsoIncreasesFireDamage1"] = { affix = "", "Withered you inflict also increases Fire Damage taken", statOrder = { 4095 }, level = 1, group = "WitherInflictedAlsoIncreasesFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos" }, tradeHashes = { [1910297038] = { "Withered you inflict also increases Fire Damage taken" }, } }, - ["UniqueLoreweaveOriginalSin1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 9272 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, + ["UniqueLoreweaveOriginalSin1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 9263 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, ["UniqueLoreweaveDeathRush1"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2417 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 4 seconds on Kill" }, } }, - ["UniqueLoreweaveVigilantView1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 6407 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868746097] = { "Enemies have an Accuracy Penalty against you based on Distance" }, } }, + ["UniqueLoreweaveVigilantView1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 6403 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868746097] = { "Enemies have an Accuracy Penalty against you based on Distance" }, } }, ["UniqueLoreweaveThiefsTorment1"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1912 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "50% reduced Duration of Curses on you" }, } }, ["UniqueLoreweaveThiefsTorment1BigRange"] = { affix = "", "(-100-100)% reduced Duration of Curses on you", statOrder = { 1912 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "(-100-100)% reduced Duration of Curses on you" }, } }, - ["UniqueLoreweaveEvergrasping1"] = { affix = "", "Allies in your Presence Gain (8-15)% of Damage as Extra Chaos Damage", statOrder = { 4288 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (8-15)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueLoreweaveEvergrasping1BigRange"] = { affix = "", "Allies in your Presence Gain (1-25)% of Damage as Extra Chaos Damage", statOrder = { 4288 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (1-25)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueLoreweaveSnakepit1"] = { affix = "", "Projectiles from Spells Fork", statOrder = { 9567 }, level = 1, group = "SpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1199718219] = { "Projectiles from Spells Fork" }, } }, - ["UniqueLoreweaveSnakepit2"] = { affix = "", "Projectiles from Spells Chain +1 times", statOrder = { 9321 }, level = 1, group = "SpellProjectilesChainXTimes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1517628125] = { "Projectiles from Spells Chain +1 times" }, } }, - ["UniqueLoreweaveSnakepit3"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9566 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, + ["UniqueLoreweaveEvergrasping1"] = { affix = "", "Allies in your Presence Gain (8-15)% of Damage as Extra Chaos Damage", statOrder = { 4285 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (8-15)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueLoreweaveEvergrasping1BigRange"] = { affix = "", "Allies in your Presence Gain (1-25)% of Damage as Extra Chaos Damage", statOrder = { 4285 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (1-25)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueLoreweaveSnakepit1"] = { affix = "", "Projectiles from Spells Fork", statOrder = { 9558 }, level = 1, group = "SpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1199718219] = { "Projectiles from Spells Fork" }, } }, + ["UniqueLoreweaveSnakepit2"] = { affix = "", "Projectiles from Spells Chain +1 times", statOrder = { 9312 }, level = 1, group = "SpellProjectilesChainXTimes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1517628125] = { "Projectiles from Spells Chain +1 times" }, } }, + ["UniqueLoreweaveSnakepit3"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9557 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, ["UniqueLoreweaveHeartbound1"] = { affix = "", "(200-300) Physical Damage taken on Minion Death", statOrder = { 2762 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "(200-300) Physical Damage taken on Minion Death" }, } }, ["UniqueLoreweaveHeartbound1BigRange"] = { affix = "", "(1-1000) Physical Damage taken on Minion Death", statOrder = { 2762 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "(1-1000) Physical Damage taken on Minion Death" }, } }, - ["UniqueLoreweaveHeartbound2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-15)% faster" }, } }, - ["UniqueLoreweaveHeartbound2BigRange"] = { affix = "", "Minions Revive (-25-25)% slower", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (-25-25)% slower" }, } }, - ["UniqueLoreweaveGiftsAbove1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6895 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1736538865] = { "You have Consecrated Ground around you while stationary" }, } }, - ["UniqueLoreweavePerandusSeal1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["UniqueLoreweavePerandusSeal1BigRange"] = { affix = "", "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies" }, } }, - ["UniqueLoreweaveLevinstone1"] = { affix = "", "Lightning Skills Chain +1 times", statOrder = { 7565 }, level = 1, group = "LightningSpellAdditionalChain", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [4123841473] = { "Lightning Skills Chain +1 times" }, } }, - ["UniqueLoreweaveBurrower1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 6345 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Unlucky" }, } }, + ["UniqueLoreweaveHeartbound2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 9076 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-15)% faster" }, } }, + ["UniqueLoreweaveHeartbound2BigRange"] = { affix = "", "Minions Revive (-25-25)% slower", statOrder = { 9076 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (-25-25)% slower" }, } }, + ["UniqueLoreweaveGiftsAbove1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6891 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1736538865] = { "You have Consecrated Ground around you while stationary" }, } }, + ["UniqueLoreweavePerandusSeal1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6913 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueLoreweavePerandusSeal1BigRange"] = { affix = "", "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6913 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueLoreweaveLevinstone1"] = { affix = "", "Lightning Skills Chain +1 times", statOrder = { 7561 }, level = 1, group = "LightningSpellAdditionalChain", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [4123841473] = { "Lightning Skills Chain +1 times" }, } }, + ["UniqueLoreweaveBurrower1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 6341 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Unlucky" }, } }, ["UniqueLoreweaveAndvarius1"] = { affix = "", "(50-70)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 942, 942.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(50-70)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, ["UniqueLoreweaveAndvarius1CombinedWithBaseGoldRing"] = { affix = "", "(56-85)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 942, 942.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(56-85)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, ["UniqueLoreweaveAndvarius1BigRange"] = { affix = "", "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 942, 942.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, ["UniqueLoreweaveAndvarius1CombinedWithBaseGoldRingBigRange"] = { affix = "", "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 942, 942.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, - ["UniqueLoreweaveBurstingDecay1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4464 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to 3% of maximum Life" }, } }, - ["UniqueLoreweaveBurstingDecay1BigRange"] = { affix = "", "Attacks have added Physical damage equal to (0-5)% of maximum Life", statOrder = { 4464 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to (0-5)% of maximum Life" }, } }, - ["UniqueLoreweaveKulemak1"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4127 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646093132] = { "Inflict Abyssal Wasting on Hit" }, } }, - ["UniqueLoreweaveKulemak2"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6745 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, - ["UniqueLoreweaveKulemak3"] = { affix = "", "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9686 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence" }, } }, - ["UniqueLoreweaveKulemak3BigRange"] = { affix = "", "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9686 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence" }, } }, - ["UniqueLoreweaveKulemak4"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9688 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence" }, } }, - ["UniqueLoreweaveKulemak4BigRange"] = { affix = "", "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9688 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence" }, } }, - ["UniqueLoreweaveKulemak5"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, - ["UniqueLoreweaveKulemak5BigRange"] = { affix = "", "(0-20)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(0-20)% increased Spirit Reservation Efficiency" }, } }, - ["UniqueLoreweaveKulemak6"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6824 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, } }, - ["UniqueLoreweaveKulemak7"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 10057 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(20-25) to Spirit while you have at least 200 Strength" }, } }, - ["UniqueLoreweaveKulemak7BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Strength", statOrder = { 10057 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(0-40) to Spirit while you have at least 200 Strength" }, } }, - ["UniqueLoreweaveKulemak8"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 10056 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(20-25) to Spirit while you have at least 200 Intelligence" }, } }, - ["UniqueLoreweaveKulemak8BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Intelligence", statOrder = { 10056 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(0-40) to Spirit while you have at least 200 Intelligence" }, } }, - ["UniqueLoreweaveKulemak9"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 10055 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(20-25) to Spirit while you have at least 200 Dexterity" }, } }, - ["UniqueLoreweaveKulemak9BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Dexterity", statOrder = { 10055 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(0-40) to Spirit while you have at least 200 Dexterity" }, } }, - ["UniqueLoreweaveKulemak10"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-16)% chance to Chain an additional time from terrain" }, } }, - ["UniqueLoreweaveKulemak10BigRange"] = { affix = "", "Projectiles have (0-30)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (0-30)% chance to Chain an additional time from terrain" }, } }, - ["UniqueLoreweaveKulemak11"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10575 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate" }, } }, - ["UniqueLoreweaveKulemak11BigRange"] = { affix = "", "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate", statOrder = { 10575 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate" }, } }, - ["UniqueLoreweaveKulemak12"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 10574 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(17-23)% to Chaos Resistance" }, } }, - ["UniqueLoreweaveKulemak12BigRange"] = { affix = "", "You and Allies in your Presence have +(1-37)% to Chaos Resistance", statOrder = { 10574 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(1-37)% to Chaos Resistance" }, } }, - ["UniqueLoreweaveKulemak13"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 10573 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, } }, - ["UniqueLoreweaveKulemak13BigRange"] = { affix = "", "You and Allies in your Presence have (0-25)% increased Cast Speed", statOrder = { 10573 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (0-25)% increased Cast Speed" }, } }, - ["UniqueLoreweaveKulemak14"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 10572 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, - ["UniqueLoreweaveKulemak14BigRange"] = { affix = "", "You and Allies in your Presence have (0-20)% increased Attack Speed", statOrder = { 10572 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (0-20)% increased Attack Speed" }, } }, - ["UniqueLoreweaveKulemak15"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 10570 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (20-28)% increased Accuracy Rating" }, } }, - ["UniqueLoreweaveKulemak15BigRange"] = { affix = "", "You and Allies in your Presence have (0-50)% increased Accuracy Rating", statOrder = { 10570 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (0-50)% increased Accuracy Rating" }, } }, + ["UniqueLoreweaveBurstingDecay1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4461 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to 3% of maximum Life" }, } }, + ["UniqueLoreweaveBurstingDecay1BigRange"] = { affix = "", "Attacks have added Physical damage equal to (0-5)% of maximum Life", statOrder = { 4461 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to (0-5)% of maximum Life" }, } }, + ["UniqueLoreweaveKulemak1"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4124 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646093132] = { "Inflict Abyssal Wasting on Hit" }, } }, + ["UniqueLoreweaveKulemak2"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6741 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, + ["UniqueLoreweaveKulemak3"] = { affix = "", "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9677 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence" }, } }, + ["UniqueLoreweaveKulemak3BigRange"] = { affix = "", "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9677 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence" }, } }, + ["UniqueLoreweaveKulemak4"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9679 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence" }, } }, + ["UniqueLoreweaveKulemak4BigRange"] = { affix = "", "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9679 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence" }, } }, + ["UniqueLoreweaveKulemak5"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 4751 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueLoreweaveKulemak5BigRange"] = { affix = "", "(0-20)% increased Spirit Reservation Efficiency", statOrder = { 4751 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(0-20)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueLoreweaveKulemak6"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6820 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, } }, + ["UniqueLoreweaveKulemak7"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 10048 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(20-25) to Spirit while you have at least 200 Strength" }, } }, + ["UniqueLoreweaveKulemak7BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Strength", statOrder = { 10048 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(0-40) to Spirit while you have at least 200 Strength" }, } }, + ["UniqueLoreweaveKulemak8"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 10047 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(20-25) to Spirit while you have at least 200 Intelligence" }, } }, + ["UniqueLoreweaveKulemak8BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Intelligence", statOrder = { 10047 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(0-40) to Spirit while you have at least 200 Intelligence" }, } }, + ["UniqueLoreweaveKulemak9"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 10046 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(20-25) to Spirit while you have at least 200 Dexterity" }, } }, + ["UniqueLoreweaveKulemak9BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Dexterity", statOrder = { 10046 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(0-40) to Spirit while you have at least 200 Dexterity" }, } }, + ["UniqueLoreweaveKulemak10"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 9534 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-16)% chance to Chain an additional time from terrain" }, } }, + ["UniqueLoreweaveKulemak10BigRange"] = { affix = "", "Projectiles have (0-30)% chance to Chain an additional time from terrain", statOrder = { 9534 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (0-30)% chance to Chain an additional time from terrain" }, } }, + ["UniqueLoreweaveKulemak11"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10565 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate" }, } }, + ["UniqueLoreweaveKulemak11BigRange"] = { affix = "", "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate", statOrder = { 10565 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate" }, } }, + ["UniqueLoreweaveKulemak12"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 10564 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(17-23)% to Chaos Resistance" }, } }, + ["UniqueLoreweaveKulemak12BigRange"] = { affix = "", "You and Allies in your Presence have +(1-37)% to Chaos Resistance", statOrder = { 10564 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(1-37)% to Chaos Resistance" }, } }, + ["UniqueLoreweaveKulemak13"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 10563 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, } }, + ["UniqueLoreweaveKulemak13BigRange"] = { affix = "", "You and Allies in your Presence have (0-25)% increased Cast Speed", statOrder = { 10563 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (0-25)% increased Cast Speed" }, } }, + ["UniqueLoreweaveKulemak14"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 10562 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, + ["UniqueLoreweaveKulemak14BigRange"] = { affix = "", "You and Allies in your Presence have (0-20)% increased Attack Speed", statOrder = { 10562 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (0-20)% increased Attack Speed" }, } }, + ["UniqueLoreweaveKulemak15"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 10560 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (20-28)% increased Accuracy Rating" }, } }, + ["UniqueLoreweaveKulemak15BigRange"] = { affix = "", "You and Allies in your Presence have (0-50)% increased Accuracy Rating", statOrder = { 10560 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (0-50)% increased Accuracy Rating" }, } }, ["UniqueLoreweaveVeilpiercer1"] = { affix = "", "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", statOrder = { 2684 }, level = 1, group = "CursesSpreadOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies" }, } }, - ["UniqueLoreweaveVeilpiercer2"] = { affix = "", "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", statOrder = { 6773 }, level = 1, group = "UniqueDarkWhispers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482970488] = { "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence" }, } }, + ["UniqueLoreweaveVeilpiercer2"] = { affix = "", "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", statOrder = { 6769 }, level = 1, group = "UniqueDarkWhispers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482970488] = { "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence" }, } }, ["UniqueLoreweaveVeilpiercer3"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2379 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, ["UniqueLoreweaveSekhemasResolveFire1"] = { affix = "", "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", statOrder = { 1022 }, level = 1, group = "UniqueSekhemaFireRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [2381897042] = { "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier" }, } }, ["UniqueLoreweaveSekhemasResolveFire1BigRange"] = { affix = "", "+(-15-15)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", statOrder = { 1022 }, level = 1, group = "UniqueSekhemaFireRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [2381897042] = { "+(-15-15)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier" }, } }, @@ -1713,80 +1710,80 @@ return { ["UniqueLoreweaveSekhemasResolveRuby1"] = { affix = "", "You can only Socket 1 Ruby Jewel in this item", statOrder = { 76 }, level = 1, group = "LoreweaveJewelRestrictionRuby", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [853326030] = { "You can only Socket 1 Ruby Jewel in this item" }, } }, ["UniqueLoreweaveSekhemasResolveEmerald1"] = { affix = "", "You can only Socket 1 Emerald Jewel in this item", statOrder = { 76 }, level = 1, group = "LoreweaveJewelRestrictionEmerald", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [853326030] = { "You can only Socket 1 Emerald Jewel in this item" }, } }, ["UniqueLoreweaveSekhemasResolveSapphire1"] = { affix = "", "You can only Socket 1 Sapphire Jewel in this item", statOrder = { 76 }, level = 1, group = "LoreweaveJewelRestrictionSapphire", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [853326030] = { "You can only Socket 1 Sapphire Jewel in this item" }, } }, - ["UniqueLoreweaveBereksGripShockedGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground", statOrder = { 10543, 10543.1 }, level = 1, group = "WindSkillsBoostedByShockedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground" }, } }, - ["UniqueLoreweaveBereksPassChilledGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground", statOrder = { 10543, 10543.1 }, level = 1, group = "WindSkillsBoostedByChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground" }, } }, - ["UniqueLoreweaveBereksRespiteIgnitedGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground", statOrder = { 10543, 10543.1 }, level = 1, group = "WindSkillsBoostedByIgnitedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground" }, } }, - ["UniqueLoreweaveTheTamingElementalGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground", statOrder = { 10542, 10543, 10543.1 }, level = 1, group = "WindSkillsBoostedByElementalGrounds", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground" }, [2070837434] = { "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces" }, } }, - ["UniqueExtraChaosDamagePerUndeadMinion1"] = { affix = "", "Gain 5% of Damage as Chaos Damage per Undead Minion", statOrder = { 9239 }, level = 1, group = "ExtraChaosDamagePerUndeadMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [997343726] = { "Gain 5% of Damage as Chaos Damage per Undead Minion" }, } }, - ["UniqueBaseBlockDamageTaken1"] = { affix = "", "You take (25-40)% of damage from Blocked Hits", statOrder = { 4663 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take (25-40)% of damage from Blocked Hits" }, } }, - ["UniqueBaseBlockDamageTaken2"] = { affix = "", "You take 50% of damage from Blocked Hits", statOrder = { 4663 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take 50% of damage from Blocked Hits" }, } }, - ["UniqueBaseBlockDamageTaken3"] = { affix = "", "You take (0-20)% of damage from Blocked Hits", statOrder = { 4663 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take (0-20)% of damage from Blocked Hits" }, } }, - ["UniqueCullingStrikeOnBlock1"] = { affix = "", "Enemies are Culled on Block", statOrder = { 5910 }, level = 1, group = "CullingStrikeOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [381470861] = { "Enemies are Culled on Block" }, } }, - ["UniqueBlockPercentWithFocus1"] = { affix = "", "+(15-25)% to Block Chance while holding a Focus", statOrder = { 4177 }, level = 1, group = "BlockPercentWithFocus", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3122852693] = { "+(15-25)% to Block Chance while holding a Focus" }, } }, - ["UniqueOneHandMaceSkillsUsableUnarmed1"] = { affix = "", "Can Attack as though using a One Handed Mace while both of your hand slots are empty", "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage", statOrder = { 10398, 10398.1 }, level = 1, group = "FacebreakerUseMaceSkillsUnarmed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [627896047] = { "Can Attack as though using a One Handed Mace while both of your hand slots are empty", "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage" }, } }, + ["UniqueLoreweaveBereksGripShockedGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground", statOrder = { 10533, 10533.1 }, level = 1, group = "WindSkillsBoostedByShockedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground" }, } }, + ["UniqueLoreweaveBereksPassChilledGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground", statOrder = { 10533, 10533.1 }, level = 1, group = "WindSkillsBoostedByChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground" }, } }, + ["UniqueLoreweaveBereksRespiteIgnitedGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground", statOrder = { 10533, 10533.1 }, level = 1, group = "WindSkillsBoostedByIgnitedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground" }, } }, + ["UniqueLoreweaveTheTamingElementalGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground", statOrder = { 10532, 10533, 10533.1 }, level = 1, group = "WindSkillsBoostedByElementalGrounds", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground" }, [2070837434] = { "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces" }, } }, + ["UniqueExtraChaosDamagePerUndeadMinion1"] = { affix = "", "Gain 5% of Damage as Chaos Damage per Undead Minion", statOrder = { 9230 }, level = 1, group = "ExtraChaosDamagePerUndeadMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [997343726] = { "Gain 5% of Damage as Chaos Damage per Undead Minion" }, } }, + ["UniqueBaseBlockDamageTaken1"] = { affix = "", "You take (25-40)% of damage from Blocked Hits", statOrder = { 4660 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take (25-40)% of damage from Blocked Hits" }, } }, + ["UniqueBaseBlockDamageTaken2"] = { affix = "", "You take 50% of damage from Blocked Hits", statOrder = { 4660 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take 50% of damage from Blocked Hits" }, } }, + ["UniqueBaseBlockDamageTaken3"] = { affix = "", "You take (0-20)% of damage from Blocked Hits", statOrder = { 4660 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take (0-20)% of damage from Blocked Hits" }, } }, + ["UniqueCullingStrikeOnBlock1"] = { affix = "", "Enemies are Culled on Block", statOrder = { 5906 }, level = 1, group = "CullingStrikeOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [381470861] = { "Enemies are Culled on Block" }, } }, + ["UniqueBlockPercentWithFocus1"] = { affix = "", "+(15-25)% to Block Chance while holding a Focus", statOrder = { 4174 }, level = 1, group = "BlockPercentWithFocus", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3122852693] = { "+(15-25)% to Block Chance while holding a Focus" }, } }, + ["UniqueOneHandMaceSkillsUsableUnarmed1"] = { affix = "", "Can Attack as though using a One Handed Mace while both of your hand slots are empty", "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage", statOrder = { 10389, 10389.1 }, level = 1, group = "FacebreakerUseMaceSkillsUnarmed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [627896047] = { "Can Attack as though using a One Handed Mace while both of your hand slots are empty", "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage" }, } }, ["UniqueUnarmedAttackDamagePerXStrength1"] = { affix = "", "1% more Unarmed Damage per 5 Strength", statOrder = { 2188 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3452816629] = { "1% more Unarmed Damage per 5 Strength" }, } }, ["UniqueBaseDamageOverrideForMaceAttacks1"] = { affix = "", "Has 8 to 12 Physical damage, +3 to +4 per Boss's Face Broken", statOrder = { 829 }, level = 1, group = "FacebreakerBaseUnarmedDamageOverride", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1955786041] = { "Has 8 to 12 Physical damage, +3 to +4 per Boss's Face Broken" }, } }, - ["UniqueGainArmourEqualToStrength1"] = { affix = "", "+1 to Armour per Strength", statOrder = { 6764 }, level = 1, group = "FacebreakerGainArmourFromStrength", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1291132817] = { "+1 to Armour per Strength" }, } }, - ["UniqueGainRageWhenHit1"] = { affix = "", "Gain 5 Rage when Hit by an Enemy", statOrder = { 6875 }, level = 1, group = "GainRageWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292710273] = { "Gain 5 Rage when Hit by an Enemy" }, } }, - ["UniqueGainRageWhenCrit1"] = { affix = "", "Gain 10 Rage when Critically Hit by an Enemy", statOrder = { 6876 }, level = 1, group = "GainRageWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1466716929] = { "Gain 10 Rage when Critically Hit by an Enemy" }, } }, + ["UniqueGainArmourEqualToStrength1"] = { affix = "", "+1 to Armour per Strength", statOrder = { 6760 }, level = 1, group = "FacebreakerGainArmourFromStrength", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1291132817] = { "+1 to Armour per Strength" }, } }, + ["UniqueGainRageWhenHit1"] = { affix = "", "Gain 5 Rage when Hit by an Enemy", statOrder = { 6871 }, level = 1, group = "GainRageWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292710273] = { "Gain 5 Rage when Hit by an Enemy" }, } }, + ["UniqueGainRageWhenCrit1"] = { affix = "", "Gain 10 Rage when Critically Hit by an Enemy", statOrder = { 6872 }, level = 1, group = "GainRageWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1466716929] = { "Gain 10 Rage when Critically Hit by an Enemy" }, } }, ["UniqueIgniteDuration1"] = { affix = "", "(60-75)% reduced Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(60-75)% reduced Ignite Duration on Enemies" }, } }, ["UniqueIgniteEffect1"] = { affix = "", "(80-100)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(80-100)% increased Ignite Magnitude" }, } }, ["UniqueIgniteEffect2"] = { affix = "", "100% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "100% increased Ignite Magnitude" }, } }, ["UniqueIgniteEffect3"] = { affix = "", "(10-20)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(10-20)% increased Ignite Magnitude" }, } }, - ["UniqueCanBeInstilled"] = { affix = "", "Raven-Touched", statOrder = { 10757 }, level = 1, group = "CanBeInstilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3198163869] = { "Raven-Touched" }, } }, + ["UniqueCanBeInstilled"] = { affix = "", "Raven-Touched", statOrder = { 10747 }, level = 1, group = "CanBeInstilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3198163869] = { "Raven-Touched" }, } }, ["UniqueEnemiesIgniteChaosDamage1"] = { affix = "", "Ignite you inflict deals Chaos Damage instead of Fire Damage", statOrder = { 1076 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [983582600] = { "Ignite you inflict deals Chaos Damage instead of Fire Damage" }, } }, - ["UniqueWitherNeverExpiresOnIgnitedEnemies1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6396 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, + ["UniqueWitherNeverExpiresOnIgnitedEnemies1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6392 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, ["UniqueWitherInflictedAlsoIncreasesFireDamageTaken1"] = { affix = "", "Withered you inflict also increases Fire Damage taken", statOrder = { 4095 }, level = 1, group = "WitherInflictedAlsoIncreasesFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos" }, tradeHashes = { [1910297038] = { "Withered you inflict also increases Fire Damage taken" }, } }, - ["UniqueLocalWeaponRangeIncrease1"] = { affix = "", "20% increased Melee Strike Range with this weapon", statOrder = { 7600 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "20% increased Melee Strike Range with this weapon" }, } }, - ["UniqueDamageBlockedRecoupedAsMana1"] = { affix = "", "Damage Blocked is Recouped as Mana", statOrder = { 5964 }, level = 1, group = "DamageBlockedRecoupedAsMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2875218423] = { "Damage Blocked is Recouped as Mana" }, } }, + ["UniqueLocalWeaponRangeIncrease1"] = { affix = "", "20% increased Melee Strike Range with this weapon", statOrder = { 7596 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "20% increased Melee Strike Range with this weapon" }, } }, + ["UniqueDamageBlockedRecoupedAsMana1"] = { affix = "", "Damage Blocked is Recouped as Mana", statOrder = { 5960 }, level = 1, group = "DamageBlockedRecoupedAsMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2875218423] = { "Damage Blocked is Recouped as Mana" }, } }, ["UniqueAllDamage1"] = { affix = "", "25% reduced Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "25% reduced Damage" }, } }, ["UniqueAllDamage2"] = { affix = "", "(30-50)% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(30-50)% increased Damage" }, } }, ["UniqueTakeNoExtraDamageFromCriticalStrikes1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3931 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Hits" }, } }, - ["UniqueLifeFlaskNoRecovery1"] = { affix = "", "Flasks do not recover Life", statOrder = { 4710 }, level = 1, group = "LifeFlaskNoRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [265717301] = { "Flasks do not recover Life" }, } }, - ["UniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 9361 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259470957] = { "On-Kill Effects happen twice" }, } }, + ["UniqueLifeFlaskNoRecovery1"] = { affix = "", "Flasks do not recover Life", statOrder = { 4706 }, level = 1, group = "LifeFlaskNoRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [265717301] = { "Flasks do not recover Life" }, } }, + ["UniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 9352 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259470957] = { "On-Kill Effects happen twice" }, } }, ["UniqueGlobalSkillGemLevel1"] = { affix = "", "+1 to Level of all Skills", statOrder = { 949 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, - ["UniqueReceiveBleedingWhenHit1"] = { affix = "", "25% chance to be inflicted with Bleeding when Hit", statOrder = { 9654 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "25% chance to be inflicted with Bleeding when Hit" }, } }, + ["UniqueReceiveBleedingWhenHit1"] = { affix = "", "25% chance to be inflicted with Bleeding when Hit", statOrder = { 9645 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "25% chance to be inflicted with Bleeding when Hit" }, } }, ["UniqueCannotBeChilledOrFrozen1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1593 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, - ["UniqueConsumeCorpseRecoverLife1"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life", statOrder = { 5764 }, level = 1, group = "ConsumeCorpseRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3764198549] = { "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life" }, } }, - ["UniqueSmokeCloudWhenStationary1"] = { affix = "", "You have a Smoke Cloud around you while stationary", statOrder = { 9945 }, level = 1, group = "SmokeCloudWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592455368] = { "You have a Smoke Cloud around you while stationary" }, } }, - ["UniqueGlobalEvasionOnFullLife1"] = { affix = "", "100% increased Evasion Rating when on Full Life", statOrder = { 6509 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "100% increased Evasion Rating when on Full Life" }, } }, + ["UniqueConsumeCorpseRecoverLife1"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life", statOrder = { 5760 }, level = 1, group = "ConsumeCorpseRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3764198549] = { "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life" }, } }, + ["UniqueSmokeCloudWhenStationary1"] = { affix = "", "You have a Smoke Cloud around you while stationary", statOrder = { 9936 }, level = 1, group = "SmokeCloudWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592455368] = { "You have a Smoke Cloud around you while stationary" }, } }, + ["UniqueGlobalEvasionOnFullLife1"] = { affix = "", "100% increased Evasion Rating when on Full Life", statOrder = { 6505 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "100% increased Evasion Rating when on Full Life" }, } }, ["UniqueMovementVelocityOnFullLife1"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1555 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "10% increased Movement Speed when on Full Life" }, } }, - ["UniqueLocalAllDamageCanElectrocute1"] = { affix = "", "All damage with this Weapon causes Electrocution buildup", statOrder = { 7609 }, level = 1, group = "LocalAllDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1910743684] = { "All damage with this Weapon causes Electrocution buildup" }, } }, - ["UniqueLocalAllDamageCanFreeze1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Freeze Buildup", statOrder = { 7610 }, level = 1, group = "LocalAllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3761294489] = { "All Damage from Hits with this Weapon Contributes to Freeze Buildup" }, } }, - ["UniqueLocalAllDamageCanChill1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Chill Magnitude", statOrder = { 7608 }, level = 1, group = "LocalAllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156230257] = { "All Damage from Hits with this Weapon Contributes to Chill Magnitude" }, } }, - ["UniqueLocalCullingStrikeFrozenEnemies1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 7651 }, level = 1, group = "LocalCullingStrikeFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158324489] = { "Culling Strike against Frozen Enemies" }, } }, + ["UniqueLocalAllDamageCanElectrocute1"] = { affix = "", "All damage with this Weapon causes Electrocution buildup", statOrder = { 7605 }, level = 1, group = "LocalAllDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1910743684] = { "All damage with this Weapon causes Electrocution buildup" }, } }, + ["UniqueLocalAllDamageCanFreeze1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Freeze Buildup", statOrder = { 7606 }, level = 1, group = "LocalAllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3761294489] = { "All Damage from Hits with this Weapon Contributes to Freeze Buildup" }, } }, + ["UniqueLocalAllDamageCanChill1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Chill Magnitude", statOrder = { 7604 }, level = 1, group = "LocalAllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156230257] = { "All Damage from Hits with this Weapon Contributes to Chill Magnitude" }, } }, + ["UniqueLocalCullingStrikeFrozenEnemies1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 7647 }, level = 1, group = "LocalCullingStrikeFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158324489] = { "Culling Strike against Frozen Enemies" }, } }, ["UniqueFrozenMonstersTakeIncreasedDamage1"] = { affix = "", "Enemies Frozen by you take 100% increased Damage", statOrder = { 2244 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [849085925] = { "Enemies Frozen by you take 100% increased Damage" }, } }, - ["UniqueLifeConvertedToEnergyShield1"] = { affix = "", "35% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "35% of Maximum Life Converted to Energy Shield" }, } }, + ["UniqueLifeConvertedToEnergyShield1"] = { affix = "", "35% of Maximum Life Converted to Energy Shield", statOrder = { 8875 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "35% of Maximum Life Converted to Energy Shield" }, } }, ["UniqueReducedDamageIfNotHitRecently1"] = { affix = "", "20% less Damage taken if you have not been Hit Recently", statOrder = { 3839 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [67637087] = { "20% less Damage taken if you have not been Hit Recently" }, } }, ["UniqueIncreasedEvasionIfHitRecently1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 3840 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1073310669] = { "100% increased Evasion Rating if you have been Hit Recently" }, } }, - ["UniqueUndeadMinionReservation1"] = { affix = "", "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions", statOrder = { 10385 }, level = 1, group = "UndeadMinionReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308632835] = { "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions" }, } }, + ["UniqueUndeadMinionReservation1"] = { affix = "", "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions", statOrder = { 10376 }, level = 1, group = "UndeadMinionReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308632835] = { "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions" }, } }, ["UniqueItemRarityOnLowLife1"] = { affix = "", "50% increased Rarity of Items found when on Low Life", statOrder = { 1467 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2929867083] = { "50% increased Rarity of Items found when on Low Life" }, } }, ["UniqueChillImmunityWhenChilled1"] = { affix = "", "You cannot be Chilled for 6 seconds after being Chilled", statOrder = { 2651 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2306924373] = { "You cannot be Chilled for 6 seconds after being Chilled" }, } }, ["UniqueFreezeImmunityWhenFrozen1"] = { affix = "", "You cannot be Frozen for 6 seconds after being Frozen", statOrder = { 2653 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3612464552] = { "You cannot be Frozen for 6 seconds after being Frozen" }, } }, ["UniqueIgniteImmunityWhenIgnited1"] = { affix = "", "You cannot be Ignited for 6 seconds after being Ignited", statOrder = { 2654 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [947072590] = { "You cannot be Ignited for 6 seconds after being Ignited" }, } }, ["UniqueShockImmunityWhenShocked1"] = { affix = "", "You cannot be Shocked for 6 seconds after being Shocked", statOrder = { 2655 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [215346464] = { "You cannot be Shocked for 6 seconds after being Shocked" }, } }, - ["UniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5942 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4275855121] = { "Curses you inflict are reflected back to you" }, } }, + ["UniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5938 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4275855121] = { "Curses you inflict are reflected back to you" }, } }, ["UniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% reduced Attack and Cast Speed" }, } }, ["UniqueIncreasedSkillSpeed1"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(10-15)% increased Skill Speed" }, } }, ["UniqueIncreasedSkillSpeed2"] = { affix = "", "10% reduced Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "10% reduced Skill Speed" }, } }, ["UniqueIncreasedSkillSpeed3"] = { affix = "", "(5-10)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(5-10)% increased Skill Speed" }, } }, ["UniqueIncreasedSkillSpeed4"] = { affix = "", "(15-30)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(15-30)% increased Skill Speed" }, } }, ["UniqueIncreasedSkillSpeed5"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(10-15)% increased Skill Speed" }, } }, - ["UniqueShareChargesWithAllies1"] = { affix = "", "Share Charges with Allies in your Presence", statOrder = { 9823 }, level = 1, group = "ShareChargesWithAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2535267021] = { "Share Charges with Allies in your Presence" }, } }, - ["UniqueOverrideWeaponBaseCritical1"] = { affix = "", "Base Critical Hit Chance for Attacks with Weapons is 7%", statOrder = { 9376 }, level = 1, group = "OverrideWeaponBaseCritical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2635559734] = { "Base Critical Hit Chance for Attacks with Weapons is 7%" }, } }, - ["UniqueEnemiesKilledCountAsYours1"] = { affix = "", "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 943, 943.1, 6095 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602191394] = { "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, [1576794517] = { "Enemies in your Presence killed by anyone count as being killed by you instead" }, } }, + ["UniqueShareChargesWithAllies1"] = { affix = "", "Share Charges with Allies in your Presence", statOrder = { 9814 }, level = 1, group = "ShareChargesWithAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2535267021] = { "Share Charges with Allies in your Presence" }, } }, + ["UniqueOverrideWeaponBaseCritical1"] = { affix = "", "Base Critical Hit Chance for Attacks with Weapons is 7%", statOrder = { 9367 }, level = 1, group = "OverrideWeaponBaseCritical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2635559734] = { "Base Critical Hit Chance for Attacks with Weapons is 7%" }, } }, + ["UniqueEnemiesKilledCountAsYours1"] = { affix = "", "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 943, 943.1, 6091 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602191394] = { "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, [1576794517] = { "Enemies in your Presence killed by anyone count as being killed by you instead" }, } }, ["UniqueOtherModifiersToRarityDoNotApply1"] = { affix = "", "(15-20)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 943, 943.1 }, level = 1, group = "GraveBindRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1602191394] = { "(15-20)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, - ["UniqueAllDamageCanPoison1"] = { affix = "", "All Damage from Hits Contributes to Poison Magnitude", statOrder = { 4272 }, level = 1, group = "AllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4012215578] = { "All Damage from Hits Contributes to Poison Magnitude" }, } }, - ["UniqueFreezeDamageMaximumMana1"] = { affix = "", "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana", statOrder = { 4169 }, level = 1, group = "FreezeDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1435496528] = { "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana" }, } }, + ["UniqueAllDamageCanPoison1"] = { affix = "", "All Damage from Hits Contributes to Poison Magnitude", statOrder = { 4269 }, level = 1, group = "AllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4012215578] = { "All Damage from Hits Contributes to Poison Magnitude" }, } }, + ["UniqueFreezeDamageMaximumMana1"] = { affix = "", "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana", statOrder = { 4166 }, level = 1, group = "FreezeDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1435496528] = { "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana" }, } }, ["UniqueBlockPercent1"] = { affix = "", "+10% to Block chance", statOrder = { 1123 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+10% to Block chance" }, } }, ["UniqueBlockPercent2"] = { affix = "", "+(15-25)% to Block chance", statOrder = { 1123 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(15-25)% to Block chance" }, } }, ["UniqueBlockPercent3"] = { affix = "", "+12% to Block chance", statOrder = { 1123 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+12% to Block chance" }, } }, ["UniqueRangedAttackDamageTaken1"] = { affix = "", "-10 Physical damage taken from Projectile Attacks", statOrder = { 1971 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3612407781] = { "-10 Physical damage taken from Projectile Attacks" }, } }, - ["UniqueChillEffect1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5647 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, + ["UniqueChillEffect1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5643 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, ["UniqueManaCostReduction1"] = { affix = "", "20% reduced Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "20% reduced Mana Cost of Skills" }, } }, ["UniqueManaCostReduction2"] = { affix = "", "10% increased Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "10% increased Mana Cost of Skills" }, } }, - ["UniqueLightningDamageCanElectrocute1"] = { affix = "", "Lightning damage from Hits Contributes to Electrocution Buildup", statOrder = { 4714 }, level = 1, group = "LightningDamageElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1017648537] = { "Lightning damage from Hits Contributes to Electrocution Buildup" }, } }, - ["UniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 10117 }, level = 1, group = "StrengthSatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2230687504] = { "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" }, } }, + ["UniqueLightningDamageCanElectrocute1"] = { affix = "", "Lightning damage from Hits Contributes to Electrocution Buildup", statOrder = { 4710 }, level = 1, group = "LightningDamageElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1017648537] = { "Lightning damage from Hits Contributes to Electrocution Buildup" }, } }, + ["UniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 10108 }, level = 1, group = "StrengthSatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2230687504] = { "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" }, } }, ["UniqueAreaOfEffect1"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1630 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(10-20)% increased Area of Effect" }, } }, ["UniqueAreaOfEffect2"] = { affix = "", "(8-15)% increased Area of Effect", statOrder = { 1630 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(8-15)% increased Area of Effect" }, } }, ["UniquePercentageStrength1"] = { affix = "", "(5-15)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } }, @@ -1796,37 +1793,37 @@ return { ["UniquePercentageIntelligence1"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-15)% increased Intelligence" }, } }, ["UniquePercentageIntelligence2"] = { affix = "", "10% reduced Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "10% reduced Intelligence" }, } }, ["UniquePercentageIntelligence3"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-10)% increased Intelligence" }, } }, - ["UniqueReducedIgniteEffectOnSelf1"] = { affix = "", "(35-50)% reduced Magnitude of Ignite on you", statOrder = { 7261 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(35-50)% reduced Magnitude of Ignite on you" }, } }, + ["UniqueReducedIgniteEffectOnSelf1"] = { affix = "", "(35-50)% reduced Magnitude of Ignite on you", statOrder = { 7257 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(35-50)% reduced Magnitude of Ignite on you" }, } }, ["UniqueReducedChillEffectOnSelf1"] = { affix = "", "(35-50)% reduced Effect of Chill on you", statOrder = { 1495 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(35-50)% reduced Effect of Chill on you" }, } }, - ["UniqueReducedShockEffectOnSelf1"] = { affix = "", "(35-50)% reduced effect of Shock on you", statOrder = { 9859 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(35-50)% reduced effect of Shock on you" }, } }, - ["UniqueThornsOnAnyHit1"] = { affix = "", "Thorns can Retaliate against all Hits", statOrder = { 10263 }, level = 1, group = "ThornsOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3414243317] = { "Thorns can Retaliate against all Hits" }, } }, - ["UniqueTriggerDecomposeOnStep1"] = { affix = "", "Trigger Decompose every 1.2 metres travelled", statOrder = { 7687 }, level = 1, group = "CorpsewadeGrantsTriggeredCorpseCloud", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3371943724] = { "Trigger Decompose every 1.2 metres travelled" }, } }, - ["UniqueInflictGruelingMadnessOnHit1"] = { affix = "", "Hits with this Weapon inflict (2-5) Gruelling Madness", statOrder = { 7738 }, level = 1, group = "InflictGruelingMadnessOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2526112819] = { "Hits with this Weapon inflict (2-5) Gruelling Madness" }, } }, - ["UniqueEnemiesInPresenceGainPowerPerGruelingMadness1"] = { affix = "", "Enemies in your Presence have additional Power equal to their Gruelling Madness", statOrder = { 9132 }, level = 1, group = "UniqueEnemiesInPresenceGainPowerPerGruelingMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1827379101] = { "Enemies in your Presence have additional Power equal to their Gruelling Madness" }, } }, - ["UniqueCrystalLifePerColdResistance"] = { affix = "", "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have", statOrder = { 7239 }, level = 69, group = "IceCrystalMaximumLifePerColdResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [740421489] = { "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have" }, } }, - ["UniqueGainFearIncarnateOnCulling1"] = { affix = "", "Gain 1 Fear Incarnate when you Cull a target", statOrder = { 6932 }, level = 1, group = "GainFearIncarnate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3775736880] = { "Gain 1 Fear Incarnate when you Cull a target" }, } }, - ["UniqueGainFinalityForXSecondsPerComboLostUsingSkills1"] = { affix = "", "Gain Finality for 0.5 seconds per Combo expended when using Skills", statOrder = { 6785 }, level = 1, group = "GainFinalityForXSecondsPerComboLostBySkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4010198893] = { "Gain Finality for 0.5 seconds per Combo expended when using Skills" }, } }, - ["UniqueGainXGuardPerComboLostUsingSkills1"] = { affix = "", "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills", statOrder = { 10400 }, level = 1, group = "GainXGuardPerComboLostUsingSkills1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2443032293] = { "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills" }, } }, + ["UniqueReducedShockEffectOnSelf1"] = { affix = "", "(35-50)% reduced effect of Shock on you", statOrder = { 9850 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(35-50)% reduced effect of Shock on you" }, } }, + ["UniqueThornsOnAnyHit1"] = { affix = "", "Thorns can Retaliate against all Hits", statOrder = { 10254 }, level = 1, group = "ThornsOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3414243317] = { "Thorns can Retaliate against all Hits" }, } }, + ["UniqueTriggerDecomposeOnStep1"] = { affix = "", "Trigger Decompose every 1.2 metres travelled", statOrder = { 7683 }, level = 1, group = "CorpsewadeGrantsTriggeredCorpseCloud", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3371943724] = { "Trigger Decompose every 1.2 metres travelled" }, } }, + ["UniqueInflictGruelingMadnessOnHit1"] = { affix = "", "Hits with this Weapon inflict (2-5) Gruelling Madness", statOrder = { 7734 }, level = 1, group = "InflictGruelingMadnessOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2526112819] = { "Hits with this Weapon inflict (2-5) Gruelling Madness" }, } }, + ["UniqueEnemiesInPresenceGainPowerPerGruelingMadness1"] = { affix = "", "Enemies in your Presence have additional Power equal to their Gruelling Madness", statOrder = { 9123 }, level = 1, group = "UniqueEnemiesInPresenceGainPowerPerGruelingMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1827379101] = { "Enemies in your Presence have additional Power equal to their Gruelling Madness" }, } }, + ["UniqueCrystalLifePerColdResistance"] = { affix = "", "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have", statOrder = { 7235 }, level = 1, group = "IceCrystalMaximumLifePerColdResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [740421489] = { "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have" }, } }, + ["UniqueGainFearIncarnateOnCulling1"] = { affix = "", "Gain 1 Fear Incarnate when you Cull a target", statOrder = { 6928 }, level = 1, group = "GainFearIncarnate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3775736880] = { "Gain 1 Fear Incarnate when you Cull a target" }, } }, + ["UniqueGainFinalityForXSecondsPerComboLostUsingSkills1"] = { affix = "", "Gain Finality for 0.5 seconds per Combo expended when using Skills", statOrder = { 6781 }, level = 1, group = "GainFinalityForXSecondsPerComboLostBySkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4010198893] = { "Gain Finality for 0.5 seconds per Combo expended when using Skills" }, } }, + ["UniqueGainXGuardPerComboLostUsingSkills1"] = { affix = "", "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills", statOrder = { 10391 }, level = 1, group = "GainXGuardPerComboLostUsingSkills1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2443032293] = { "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills" }, } }, ["UniqueMinionChanceToApplyGruelingMadness1"] = { affix = "", "Minions have (10-20)% chance to inflict Gruelling Madness on Hit", statOrder = { 2901 }, level = 1, group = "MinionChanceToApplyGruelingMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1486714289] = { "Minions have (10-20)% chance to inflict Gruelling Madness on Hit" }, } }, - ["UniqueEnemiesInPresenceGainGruelingMadness1"] = { affix = "", "Enemies in your Presence gain 1 Gruelling Madness each second", statOrder = { 6360 }, level = 1, group = "EnemiesInPresenceGainGruelingMadnessEachSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3628041050] = { "Enemies in your Presence gain 1 Gruelling Madness each second" }, } }, + ["UniqueEnemiesInPresenceGainGruelingMadness1"] = { affix = "", "Enemies in your Presence gain 1 Gruelling Madness each second", statOrder = { 6356 }, level = 1, group = "EnemiesInPresenceGainGruelingMadnessEachSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3628041050] = { "Enemies in your Presence gain 1 Gruelling Madness each second" }, } }, ["UniqueDeflectChanceLuckyOnLowLife1"] = { affix = "", "Chance to Deflect is Lucky while on Low Life", statOrder = { 1031 }, level = 1, group = "DeflectChanceLuckyOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1675120891] = { "Chance to Deflect is Lucky while on Low Life" }, } }, - ["UniqueCurseMagnitudeIsZero1"] = { affix = "", "Magnitudes of Curses you inflict are zero", statOrder = { 5670 }, level = 1, group = "UniqueCurseMagnitudeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2939415499] = { "Magnitudes of Curses you inflict are zero" }, } }, - ["UniqueCursesIgnoreLimit1"] = { affix = "", "Curses you inflict ignore Curse limit", statOrder = { 5931 }, level = 1, group = "CurseIgnoresCurseLimit", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1793470535] = { "Curses you inflict ignore Curse limit" }, } }, - ["UniqueSpellDamageAsExtraChaosPerCurse1"] = { affix = "", "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target", statOrder = { 9306 }, level = 1, group = "SpellDamageAsExtraChaosPerCurse", weightKey = { }, weightVal = { }, modTags = { "chaos", "caster" }, tradeHashes = { [2653175601] = { "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target" }, } }, - ["UniqueSpellDamageAsExtraPhysicalPerCurse1"] = { affix = "", "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target", statOrder = { 9307 }, level = 1, group = "SpellDamageAsExtraPhysicalPerCurse", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [1548338404] = { "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target" }, } }, - ["UniqueDivineFragments1"] = { affix = "", "Create a Fragment of Divinity in your Presence every 4 seconds", statOrder = { 8033 }, level = 1, group = "DivineFragments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [891466814] = { "Create a Fragment of Divinity in your Presence every 4 seconds" }, } }, - ["UniqueLifeLeechAlsoBasedOnLightningDamage1"] = { affix = "", "Life Leech recovers based on your Lightning damage as well as Physical damage", statOrder = { 7451 }, level = 1, group = "LifeLeechAlsoBasedOnLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [1092555766] = { "Life Leech recovers based on your Lightning damage as well as Physical damage" }, } }, - ["UniqueMaceSkillFireDamageConvertedToCold1"] = { affix = "", "Convert 100% of Fire Damage with Mace Skills to Cold Damage", statOrder = { 10415 }, level = 1, group = "UniqueVerisiumMaceSkillFireDamageConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [1683568809] = { "Convert 100% of Fire Damage with Mace Skills to Cold Damage" }, } }, - ["UniqueLocalAttacksHaveAddedColdDamageFromPercentMaxMana1"] = { affix = "", "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana", statOrder = { 7626 }, level = 1, group = "WeaponAddedColdDamagePerMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [566086661] = { "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana" }, } }, + ["UniqueCurseMagnitudeIsZero1"] = { affix = "", "Magnitudes of Curses you inflict are zero", statOrder = { 5666 }, level = 1, group = "UniqueCurseMagnitudeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2939415499] = { "Magnitudes of Curses you inflict are zero" }, } }, + ["UniqueCursesIgnoreLimit1"] = { affix = "", "Curses you inflict ignore Curse limit", statOrder = { 5927 }, level = 1, group = "CurseIgnoresCurseLimit", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1793470535] = { "Curses you inflict ignore Curse limit" }, } }, + ["UniqueSpellDamageAsExtraChaosPerCurse1"] = { affix = "", "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target", statOrder = { 9297 }, level = 1, group = "SpellDamageAsExtraChaosPerCurse", weightKey = { }, weightVal = { }, modTags = { "chaos", "caster" }, tradeHashes = { [2653175601] = { "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target" }, } }, + ["UniqueSpellDamageAsExtraPhysicalPerCurse1"] = { affix = "", "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target", statOrder = { 9298 }, level = 1, group = "SpellDamageAsExtraPhysicalPerCurse", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [1548338404] = { "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target" }, } }, + ["UniqueDivineFragments1"] = { affix = "", "Create a Fragment of Divinity in your Presence every 4 seconds", statOrder = { 8029 }, level = 1, group = "DivineFragments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [891466814] = { "Create a Fragment of Divinity in your Presence every 4 seconds" }, } }, + ["UniqueLifeLeechAlsoBasedOnLightningDamage1"] = { affix = "", "Life Leech recovers based on your Lightning damage as well as Physical damage", statOrder = { 7447 }, level = 1, group = "LifeLeechAlsoBasedOnLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [1092555766] = { "Life Leech recovers based on your Lightning damage as well as Physical damage" }, } }, + ["UniqueMaceSkillFireDamageConvertedToCold1"] = { affix = "", "Convert 100% of Fire Damage with Mace Skills to Cold Damage", statOrder = { 10406 }, level = 1, group = "UniqueVerisiumMaceSkillFireDamageConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [1683568809] = { "Convert 100% of Fire Damage with Mace Skills to Cold Damage" }, } }, + ["UniqueLocalAttacksHaveAddedColdDamageFromPercentMaxMana1"] = { affix = "", "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana", statOrder = { 7622 }, level = 1, group = "WeaponAddedColdDamagePerMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [566086661] = { "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana" }, } }, ["UniqueElementalDamageFromHitsContributesToCoreEleAilments1"] = { affix = "", "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance", statOrder = { 2626 }, level = 1, group = "ElementalDamageContributesToCoreEleAilments", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2678924815] = { "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance" }, } }, ["UniquePhysicalDamageFromHitsContributesToChillAndFreeze1"] = { affix = "", "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", statOrder = { 2641 }, level = 1, group = "PhysicalDamageFromHitsContributesToChillAndFreeze", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [905072977] = { "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup" }, } }, - ["UniqueHauntedByTheWendigo1"] = { affix = "", "The Bodach haunts your Presence", statOrder = { 10670 }, level = 1, group = "UniqueHauntedByTheWendigo", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3783473032] = { "The Bodach haunts your Presence" }, } }, - ["UniqueBlindEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 6355 }, level = 1, group = "UniqueBlindEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2080373320] = { "Enemies in your Presence are Blinded" }, } }, - ["UniqueBlasphemyHasNoReservation1"] = { affix = "", "DNT-UNUSED Blasphemy has no Reservation", statOrder = { 4802 }, level = 1, group = "BlasphemyHasNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3289261284] = { "DNT-UNUSED Blasphemy has no Reservation" }, } }, - ["UniqueSpearsInflictBloodstoneLanceOnHit1"] = { affix = "", "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", statOrder = { 9966 }, level = 1, group = "InflictBloodstoneLanceOnHit", weightKey = { }, weightVal = { }, modTags = { "unmutatable" }, tradeHashes = { [4106787208] = { "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target" }, } }, - ["UniqueSpellsThatCostLifeGainDamageAsExtraPhys1"] = { affix = "", "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage", statOrder = { 10039 }, level = 1, group = "SpellsWhichCostLifeGainDamageAsExtraPhys", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "physical_damage", "damage", "physical", "caster" }, tradeHashes = { [1088082880] = { "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage" }, } }, + ["UniqueHauntedByTheWendigo1"] = { affix = "", "The Bodach haunts your Presence", statOrder = { 10660 }, level = 1, group = "UniqueHauntedByTheWendigo", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3783473032] = { "The Bodach haunts your Presence" }, } }, + ["UniqueBlindEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 6351 }, level = 1, group = "UniqueBlindEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2080373320] = { "Enemies in your Presence are Blinded" }, } }, + ["UniqueBlasphemyHasNoReservation1"] = { affix = "", "DNT-UNUSED Blasphemy has no Reservation", statOrder = { 4798 }, level = 1, group = "BlasphemyHasNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3289261284] = { "DNT-UNUSED Blasphemy has no Reservation" }, } }, + ["UniqueSpearsInflictBloodstoneLanceOnHit1"] = { affix = "", "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", statOrder = { 9957 }, level = 1, group = "InflictBloodstoneLanceOnHit", weightKey = { }, weightVal = { }, modTags = { "unmutatable" }, tradeHashes = { [4106787208] = { "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target" }, } }, + ["UniqueSpellsThatCostLifeGainDamageAsExtraPhys1"] = { affix = "", "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage", statOrder = { 10030 }, level = 1, group = "SpellsWhichCostLifeGainDamageAsExtraPhys", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "physical_damage", "damage", "physical", "caster" }, tradeHashes = { [1088082880] = { "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage" }, } }, ["UniqueGlobalCorruptedSpellSkillLevel1"] = { affix = "", "+(3-5) to Level of all Corrupted Spell Skill Gems", statOrder = { 952 }, level = 1, group = "GlobalCorruptedSpellSkillLevel1", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2061237517] = { "+(3-5) to Level of all Corrupted Spell Skill Gems" }, } }, - ["UniqueOverkillDamagePhysical1"] = { affix = "", "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed", statOrder = { 9374 }, level = 1, group = "OverkillDamagePhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301852600] = { "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed" }, } }, + ["UniqueOverkillDamagePhysical1"] = { affix = "", "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed", statOrder = { 9365 }, level = 1, group = "OverkillDamagePhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301852600] = { "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed" }, } }, ["UniqueMaximumEnduranceCharges1"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, ["UniqueMaximumFrenzyCharges1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, ["UniqueMaximumPowerCharges1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, @@ -1838,38 +1835,38 @@ return { ["UniqueBaseChanceToPoison2"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(20-30)% chance to Poison on Hit" }, } }, ["UniqueBaseChanceToPoison3"] = { affix = "", "(10-20)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(10-20)% chance to Poison on Hit" }, } }, ["UniqueBaseChanceToPoison4"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(20-30)% chance to Poison on Hit" }, } }, - ["UniqueChanceToPoisonOnSpellHit1"] = { affix = "", "100% chance to Poison on Hit with Spell Damage", statOrder = { 10037 }, level = 1, group = "ChanceToPoisonWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1493211587] = { "100% chance to Poison on Hit with Spell Damage" }, } }, - ["UniquePoisonStackCount1"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 9327 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, - ["UniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9791 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [613752285] = { "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell" }, } }, + ["UniqueChanceToPoisonOnSpellHit1"] = { affix = "", "100% chance to Poison on Hit with Spell Damage", statOrder = { 10028 }, level = 1, group = "ChanceToPoisonWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1493211587] = { "100% chance to Poison on Hit with Spell Damage" }, } }, + ["UniquePoisonStackCount1"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 9318 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, + ["UniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9782 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [613752285] = { "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell" }, } }, ["UniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1775 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["UniqueDecimatingStrike1"] = { affix = "", "Decimating Strike", statOrder = { 6100 }, level = 1, group = "DecimatingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3872034802] = { "Decimating Strike" }, } }, + ["UniqueDecimatingStrike1"] = { affix = "", "Decimating Strike", statOrder = { 6096 }, level = 1, group = "DecimatingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3872034802] = { "Decimating Strike" }, } }, ["UniqueCannotBeIgnited1"] = { affix = "", "Cannot be Ignited", statOrder = { 1595 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, ["UniquePhysicalAttackDamageTaken1"] = { affix = "", "-10 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-10 Physical Damage taken from Attack Hits" }, } }, ["UniquePhysicalAttackDamageTaken2"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-4 Physical Damage taken from Attack Hits" }, } }, ["UniqueNoManaPerIntelligence1"] = { affix = "", "Gain no inherent bonus from Intelligence", statOrder = { 1762 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4187571952] = { "Gain no inherent bonus from Intelligence" }, } }, ["UniqueNoLifeRegeneration1"] = { affix = "", "You have no Life Regeneration", statOrder = { 2020 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [854225133] = { "You have no Life Regeneration" }, } }, - ["UniqueFragileRegrowth1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.5% of maximum Life Regenerated per second per Fragile Regrowth", "10% increased Mana Regeneration Rate per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 4059, 4060, 4061, 4062, 6870 }, level = 1, group = "FragileRegrowth", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [344174146] = { "10% increased Mana Regeneration Rate per Fragile Regrowth" }, [1173537953] = { "Maximum 10 Fragile Regrowth" }, [3841984913] = { "Gain 1 Fragile Regrowth each second" }, [1306791873] = { "Lose all Fragile Regrowth when Hit" }, [3175722882] = { "0.5% of maximum Life Regenerated per second per Fragile Regrowth" }, } }, + ["UniqueFragileRegrowth1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.5% of maximum Life Regenerated per second per Fragile Regrowth", "10% increased Mana Regeneration Rate per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 4059, 4060, 4061, 4062, 6866 }, level = 1, group = "FragileRegrowth", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [344174146] = { "10% increased Mana Regeneration Rate per Fragile Regrowth" }, [1173537953] = { "Maximum 10 Fragile Regrowth" }, [3841984913] = { "Gain 1 Fragile Regrowth each second" }, [1306791873] = { "Lose all Fragile Regrowth when Hit" }, [3175722882] = { "0.5% of maximum Life Regenerated per second per Fragile Regrowth" }, } }, ["UniqueEnergyShieldDelay1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, ["UniqueEnergyShieldDelay2"] = { affix = "", "30% slower start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "30% slower start of Energy Shield Recharge" }, } }, ["UniqueEnergyShieldDelay3"] = { affix = "", "100% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "100% faster start of Energy Shield Recharge" }, } }, ["UniqueEnergyShieldDelay4"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "80% faster start of Energy Shield Recharge" }, } }, ["UniqueEnergyShieldDelay5"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, - ["UniqueReverseChill1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5646 }, level = 1, group = "ReverseChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2955966707] = { "The Effect of Chill on you is reversed" }, } }, + ["UniqueReverseChill1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5642 }, level = 1, group = "ReverseChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2955966707] = { "The Effect of Chill on you is reversed" }, } }, ["UniquePhysicalDamageTakenPercentToReflect1"] = { affix = "", "250% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2241 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1092987622] = { "250% of Melee Physical Damage taken reflected to Attacker" }, } }, - ["UniquePhysicalDamagePreventedRecoup1"] = { affix = "", "50% of Physical Damage prevented Recouped as Life", statOrder = { 9451 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [1374654984] = { "50% of Physical Damage prevented Recouped as Life" }, } }, + ["UniquePhysicalDamagePreventedRecoup1"] = { affix = "", "50% of Physical Damage prevented Recouped as Life", statOrder = { 9442 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [1374654984] = { "50% of Physical Damage prevented Recouped as Life" }, } }, ["UniqueRechargeNotInterruptedRecently1"] = { affix = "", "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", statOrder = { 3422 }, level = 1, group = "RechargeNotInterruptedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1419390131] = { "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently" }, } }, - ["UniqueMinionReviveSpeed1"] = { affix = "", "Minions Revive 50% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% faster" }, } }, - ["UniqueMinionReviveSpeed2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-15)% faster" }, } }, - ["UniqueMinionReviveSpeed3"] = { affix = "", "Minions Revive 50% slower", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% slower" }, } }, + ["UniqueMinionReviveSpeed1"] = { affix = "", "Minions Revive 50% faster", statOrder = { 9076 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% faster" }, } }, + ["UniqueMinionReviveSpeed2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 9076 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-15)% faster" }, } }, + ["UniqueMinionReviveSpeed3"] = { affix = "", "Minions Revive 50% slower", statOrder = { 9076 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% slower" }, } }, ["UniqueMinionLifeGainAsEnergyShield1"] = { affix = "", "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 1437 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "minion" }, tradeHashes = { [943702197] = { "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield" }, } }, ["UniqueCannotBeShocked1"] = { affix = "", "Cannot be Shocked", statOrder = { 1597 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, - ["UniqueFlaskChanceToNotConsume1"] = { affix = "", "50% less Flask Charges used", statOrder = { 7231 }, level = 1, group = "HuskOfDreamsFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3749630567] = { "50% less Flask Charges used" }, } }, - ["UniqueLifeRegenerationFromLifeFlaskRecovery1"] = { affix = "", "Cannot use Life Flasks", "Non-Unique Life Flasks apply their Effects constantly", "Recovery from Life Flasks cannot be Instant", "Recovery from your Life Flasks cannot be applied to anything other than you", statOrder = { 9310, 9310.1, 9310.2, 9310.3 }, level = 1, group = "HuskOfDreamsLifeRegenFromFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen" }, tradeHashes = { [1580426064] = { "Cannot use Life Flasks", "Non-Unique Life Flasks apply their Effects constantly", "Recovery from Life Flasks cannot be Instant", "Recovery from your Life Flasks cannot be applied to anything other than you" }, } }, - ["UniqueLifeFlaskRecoveryAmount1"] = { affix = "", "(40-60)% less Life Flask Recovery", statOrder = { 10392 }, level = 1, group = "HuskOfDreamsLifeFlaskRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972661424] = { "(40-60)% less Life Flask Recovery" }, } }, - ["UniqueRemnantsAffectAlliesInPresence1"] = { affix = "", "Remnants you create affect Allies in your Presence as well as you when collected", statOrder = { 9741 }, level = 1, group = "RemnantsAlsoAffectAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [315717203] = { "Remnants you create affect Allies in your Presence as well as you when collected" }, } }, - ["UniqueRemnantSkillSpiritReservationEfficiency1"] = { affix = "", "(80-100)% increased Reservation Efficiency of Remnant Skills", statOrder = { 9769 }, level = 1, group = "RemnantSkillSpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1350127730] = { "(80-100)% increased Reservation Efficiency of Remnant Skills" }, } }, + ["UniqueFlaskChanceToNotConsume1"] = { affix = "", "50% less Flask Charges used", statOrder = { 7227 }, level = 1, group = "HuskOfDreamsFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3749630567] = { "50% less Flask Charges used" }, } }, + ["UniqueLifeRegenerationFromLifeFlaskRecovery1"] = { affix = "", "Cannot use Life Flasks", "Non-Unique Life Flasks apply their Effects constantly", "Recovery from Life Flasks cannot be Instant", "Recovery from your Life Flasks cannot be applied to anything other than you", statOrder = { 9301, 9301.1, 9301.2, 9301.3 }, level = 1, group = "HuskOfDreamsLifeRegenFromFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen" }, tradeHashes = { [1580426064] = { "Cannot use Life Flasks", "Non-Unique Life Flasks apply their Effects constantly", "Recovery from Life Flasks cannot be Instant", "Recovery from your Life Flasks cannot be applied to anything other than you" }, } }, + ["UniqueLifeFlaskRecoveryAmount1"] = { affix = "", "(40-60)% less Life Flask Recovery", statOrder = { 10383 }, level = 1, group = "HuskOfDreamsLifeFlaskRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972661424] = { "(40-60)% less Life Flask Recovery" }, } }, + ["UniqueRemnantsAffectAlliesInPresence1"] = { affix = "", "Remnants you create affect Allies in your Presence as well as you when collected", statOrder = { 9732 }, level = 1, group = "RemnantsAlsoAffectAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [315717203] = { "Remnants you create affect Allies in your Presence as well as you when collected" }, } }, + ["UniqueRemnantSkillSpiritReservationEfficiency1"] = { affix = "", "(80-100)% increased Reservation Efficiency of Remnant Skills", statOrder = { 9760 }, level = 1, group = "RemnantSkillSpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1350127730] = { "(80-100)% increased Reservation Efficiency of Remnant Skills" }, } }, ["UniqueSetElementalResistances1"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2591 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1776968075] = { "You have no Elemental Resistances" }, } }, - ["UniquePoisonOnCrit1"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 9502 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, + ["UniquePoisonOnCrit1"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 9493 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, ["UniqueDuplicatesRingStats1"] = { affix = "", "Reflects opposite Ring", statOrder = { 2607 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746505085] = { "Reflects opposite Ring" }, } }, ["UniqueLifeLeechAmount1"] = { affix = "", "(100-200)% increased amount of Life Leeched", statOrder = { 1895 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(100-200)% increased amount of Life Leeched" }, } }, ["UniquePhysicalMinimumDamageModifier1"] = { affix = "", "(30-40)% less minimum Physical Attack Damage", statOrder = { 1158 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2423248184] = { "(30-40)% less minimum Physical Attack Damage" }, } }, @@ -1878,191 +1875,191 @@ return { ["UniqueGlobalItemAttributeRequirements2"] = { affix = "", "Equipment and Skill Gems have 25% increased Attribute Requirements", statOrder = { 2335 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 25% increased Attribute Requirements" }, } }, ["UniqueGlobalGemAttributeRequirements1"] = { affix = "", "Skill Gems have no Attribute Requirements", statOrder = { 2332 }, level = 1, group = "GlobalNoGemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4245256219] = { "Skill Gems have no Attribute Requirements" }, } }, ["UniqueGlobalEquipmentAttributeRequirements1"] = { affix = "", "Equipment has no Attribute Requirements", statOrder = { 2331 }, level = 1, group = "GlobalNoEquipmentAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2480151124] = { "Equipment has no Attribute Requirements" }, } }, - ["UniqueEnemiesBlockedAreIntimidated1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 9428 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate enemies on Block" }, } }, - ["UniqueEnemiesBlockedAreIntimidatedDuration1"] = { affix = "", "Intimidate Enemies on Block for 8 seconds", statOrder = { 7379 }, level = 1, group = "EnemiesBlockedAreIntimidatedDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3703496511] = { "Intimidate Enemies on Block for 8 seconds" }, } }, + ["UniqueEnemiesBlockedAreIntimidated1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 9419 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate enemies on Block" }, } }, + ["UniqueEnemiesBlockedAreIntimidatedDuration1"] = { affix = "", "Intimidate Enemies on Block for 8 seconds", statOrder = { 7375 }, level = 1, group = "EnemiesBlockedAreIntimidatedDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3703496511] = { "Intimidate Enemies on Block for 8 seconds" }, } }, ["UniqueHasOnslaught1"] = { affix = "", "Onslaught", statOrder = { 3278 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1520059289] = { "Onslaught" }, } }, - ["UniqueChanceToIntimidateOnHit1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5559 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["UniqueChanceToIntimidateOnHit1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5555 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, ["UniqueExperienceIncrease1"] = { affix = "", "5% increased Experience gain", statOrder = { 1471 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, ["UniquePowerChargeOnCritChance1"] = { affix = "", "25% chance to gain a Power Charge on Critical Hit", statOrder = { 1585 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "25% chance to gain a Power Charge on Critical Hit" }, } }, ["UniqueIncreasedStrengthRequirements1"] = { affix = "", "50% increased Strength Requirement", statOrder = { 828 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "50% increased Strength Requirement" }, } }, - ["UniqueRechargeOnManaFlask1"] = { affix = "", "Energy Shield Recharge starts when you use a Mana Flask", statOrder = { 10081 }, level = 1, group = "RechargeOnManaFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2402413437] = { "Energy Shield Recharge starts when you use a Mana Flask" }, } }, + ["UniqueRechargeOnManaFlask1"] = { affix = "", "Energy Shield Recharge starts when you use a Mana Flask", statOrder = { 10072 }, level = 1, group = "RechargeOnManaFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2402413437] = { "Energy Shield Recharge starts when you use a Mana Flask" }, } }, ["UniqueAlwaysDrinkingFlask1"] = { affix = "", "This Flask cannot be Used but applies its Effect constantly", statOrder = { 617 }, level = 62, group = "FlaskAlwaysDrinking", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2980117882] = { "This Flask cannot be Used but applies its Effect constantly" }, } }, ["UniqueCannotDrinkFlaskManually1"] = { affix = "", "Cannot be Used manually", statOrder = { 684 }, level = 1, group = "CannotDrinkFlask", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1237409891] = { "Cannot be Used manually" }, } }, ["UniqueFlaskUsedOnPerfectTiming1"] = { affix = "", "Used when you release a skill with Perfect Timing", statOrder = { 705 }, level = 1, group = "FlaskUseOnPerfectTiming", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3832076641] = { "Used when you release a skill with Perfect Timing" }, } }, ["UniquePerfectTimingWindowDuringFlaskEffect1"] = { affix = "", "Skills have (80-120)% longer Perfect Timing window during effect", statOrder = { 748 }, level = 1, group = "PerfectTimingWindowDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3982604001] = { "Skills have (80-120)% longer Perfect Timing window during effect" }, } }, - ["UniqueLosePercentLifeWhileNoRunicWardDuringEffect1"] = { affix = "", "Lose 5% Life per second while you have no Runic Ward during Effect", statOrder = { 7839 }, level = 1, group = "LosePercentLifeWhileNoRunicWardDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "runic_ward", "life" }, tradeHashes = { [1147913864] = { "Lose 5% Life per second while you have no Runic Ward during Effect" }, } }, - ["UniqueManaFlaskRecoveryCanOverflowManaDuringEffect1"] = { affix = "", "Mana Recovery from Flasks can Overflow maximum Mana during Effect", statOrder = { 7841 }, level = 1, group = "ManaFlaskRecoveryCanOverflowManaDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4100842845] = { "Mana Recovery from Flasks can Overflow maximum Mana during Effect" }, } }, - ["UniqueAilmentChanceRecieved1"] = { affix = "", "(80-100)% increased Chance to be afflicted by Ailments when Hit", statOrder = { 5487 }, level = 1, group = "AilmentChanceRecieved", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [892489594] = { "(80-100)% increased Chance to be afflicted by Ailments when Hit" }, } }, - ["UniqueMovementVelocityWithAilment1"] = { affix = "", "25% increased Movement Speed while affected by an Ailment", statOrder = { 9148 }, level = 1, group = "MovementVelocityWithAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [610276769] = { "25% increased Movement Speed while affected by an Ailment" }, } }, + ["UniqueLosePercentLifeWhileNoRunicWardDuringEffect1"] = { affix = "", "Lose 5% Life per second while you have no Runic Ward during Effect", statOrder = { 7835 }, level = 1, group = "LosePercentLifeWhileNoRunicWardDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "runic_ward", "life" }, tradeHashes = { [1147913864] = { "Lose 5% Life per second while you have no Runic Ward during Effect" }, } }, + ["UniqueManaFlaskRecoveryCanOverflowManaDuringEffect1"] = { affix = "", "Mana Recovery from Flasks can Overflow maximum Mana during Effect", statOrder = { 7837 }, level = 1, group = "ManaFlaskRecoveryCanOverflowManaDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4100842845] = { "Mana Recovery from Flasks can Overflow maximum Mana during Effect" }, } }, + ["UniqueAilmentChanceRecieved1"] = { affix = "", "(80-100)% increased Chance to be afflicted by Ailments when Hit", statOrder = { 5483 }, level = 1, group = "AilmentChanceRecieved", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [892489594] = { "(80-100)% increased Chance to be afflicted by Ailments when Hit" }, } }, + ["UniqueMovementVelocityWithAilment1"] = { affix = "", "25% increased Movement Speed while affected by an Ailment", statOrder = { 9139 }, level = 1, group = "MovementVelocityWithAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [610276769] = { "25% increased Movement Speed while affected by an Ailment" }, } }, ["UniqueMinionCausticCloudOnDeath1"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3136 }, level = 1, group = "MinionCausticCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "minion_damage", "damage", "chaos", "minion" }, tradeHashes = { [688802590] = { "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second" }, } }, - ["UniqueLocalDoubleStunDamage1"] = { affix = "", "Causes Double Stun Buildup", statOrder = { 7695 }, level = 1, group = "LocalDoubleStunDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [769129523] = { "Causes Double Stun Buildup" }, } }, - ["UniqueLocalBreakArmourOnHit1"] = { affix = "", "Hits Break (30-50) Armour", statOrder = { 7616 }, level = 1, group = "LocalBreakArmourOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289086688] = { "Hits Break (30-50) Armour" }, } }, - ["UniqueBreakArmourWithPhysicalSpells1"] = { affix = "", "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt", statOrder = { 4412 }, level = 1, group = "PhysicalSpellArmourBreak", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [2795257911] = { "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt" }, } }, - ["UniqueLocalFireExposureOnArmourBreak1"] = { affix = "", "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", statOrder = { 7618 }, level = 1, group = "LocalFireExposureOnArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [359380213] = { "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour" }, } }, + ["UniqueLocalDoubleStunDamage1"] = { affix = "", "Causes Double Stun Buildup", statOrder = { 7691 }, level = 1, group = "LocalDoubleStunDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [769129523] = { "Causes Double Stun Buildup" }, } }, + ["UniqueLocalBreakArmourOnHit1"] = { affix = "", "Hits Break (30-50) Armour", statOrder = { 7612 }, level = 1, group = "LocalBreakArmourOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289086688] = { "Hits Break (30-50) Armour" }, } }, + ["UniqueBreakArmourWithPhysicalSpells1"] = { affix = "", "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt", statOrder = { 4409 }, level = 1, group = "PhysicalSpellArmourBreak", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [2795257911] = { "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt" }, } }, + ["UniqueLocalFireExposureOnArmourBreak1"] = { affix = "", "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", statOrder = { 7614 }, level = 1, group = "LocalFireExposureOnArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [359380213] = { "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour" }, } }, ["UniqueIncreasedStunThreshold1"] = { affix = "", "20% reduced Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, } }, - ["UniqueDoubleStunThresholdWhileActiveBlock1"] = { affix = "", "Double Stun Threshold while Shield is Raised", statOrder = { 7828 }, level = 1, group = "DoubleStunThresholdWhileActiveBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686997387] = { "Double Stun Threshold while Shield is Raised" }, } }, - ["UniqueRageOnHit1"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6873 }, level = 1, group = "RageOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["UniqueIncreasedStunThresholdPerRage1"] = { affix = "", "Every Rage also grants 1% increased Stun Threshold", statOrder = { 10656 }, level = 1, group = "IncreasedStunThresholdPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [352044736] = { "Every Rage also grants 1% increased Stun Threshold" }, } }, - ["UniqueIncreasedArmourPerRage1"] = { affix = "", "Every Rage also grants 1% increased Armour", statOrder = { 10644 }, level = 1, group = "IncreasedArmourPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995914769] = { "Every Rage also grants 1% increased Armour" }, } }, - ["UniqueLifeRecoupPerRage1"] = { affix = "", "Every 5 Rage also grants 5% of Damage taken Recouped as Life", statOrder = { 10562 }, level = 1, group = "LifeRecoupPerRage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1895552497] = { "Every 5 Rage also grants 5% of Damage taken Recouped as Life" }, } }, - ["UniquePhysicalDamagePin1"] = { affix = "", "Physical Damage is Pinning", statOrder = { 4735 }, level = 1, group = "PhysicalDamagePin", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2041668411] = { "Physical Damage is Pinning" }, } }, + ["UniqueDoubleStunThresholdWhileActiveBlock1"] = { affix = "", "Double Stun Threshold while Shield is Raised", statOrder = { 7824 }, level = 1, group = "DoubleStunThresholdWhileActiveBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686997387] = { "Double Stun Threshold while Shield is Raised" }, } }, + ["UniqueRageOnHit1"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6869 }, level = 1, group = "RageOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, + ["UniqueIncreasedStunThresholdPerRage1"] = { affix = "", "Every Rage also grants 1% increased Stun Threshold", statOrder = { 10646 }, level = 1, group = "IncreasedStunThresholdPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [352044736] = { "Every Rage also grants 1% increased Stun Threshold" }, } }, + ["UniqueIncreasedArmourPerRage1"] = { affix = "", "Every Rage also grants 1% increased Armour", statOrder = { 10634 }, level = 1, group = "IncreasedArmourPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995914769] = { "Every Rage also grants 1% increased Armour" }, } }, + ["UniqueLifeRecoupPerRage1"] = { affix = "", "Every 5 Rage also grants 5% of Damage taken Recouped as Life", statOrder = { 10552 }, level = 1, group = "LifeRecoupPerRage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1895552497] = { "Every 5 Rage also grants 5% of Damage taken Recouped as Life" }, } }, + ["UniquePhysicalDamagePin1"] = { affix = "", "Physical Damage is Pinning", statOrder = { 4731 }, level = 1, group = "PhysicalDamagePin", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2041668411] = { "Physical Damage is Pinning" }, } }, ["UniqueLocalPhysicalDamageAddedAsEachElement1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3908 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, - ["UniqueBlockChanceToAllies1"] = { affix = "", "Allies in your Presence have Block Chance equal to yours", statOrder = { 9375 }, level = 1, group = "BlockChanceToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1361645249] = { "Allies in your Presence have Block Chance equal to yours" }, } }, - ["UniqueNoMovementPenaltyRaisedShield1"] = { affix = "", "No Movement Speed Penalty while Shield is Raised", statOrder = { 9214 }, level = 1, group = "NoMovementPenaltyRaisedShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [585231074] = { "No Movement Speed Penalty while Shield is Raised" }, } }, - ["UniqueLocalMaimOnCrit1"] = { affix = "", "Maim on Critical Hit", statOrder = { 7614 }, level = 1, group = "LocalMaimOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2895144208] = { "Maim on Critical Hit" }, } }, - ["UniqueAlwaysCritHeavyStun1"] = { affix = "", "Always deals Critical Hits against Heavy Stunned Enemies", statOrder = { 7612 }, level = 1, group = "AlwaysCritHeavyStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214130968] = { "Always deals Critical Hits against Heavy Stunned Enemies" }, } }, + ["UniqueBlockChanceToAllies1"] = { affix = "", "Allies in your Presence have Block Chance equal to yours", statOrder = { 9366 }, level = 1, group = "BlockChanceToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1361645249] = { "Allies in your Presence have Block Chance equal to yours" }, } }, + ["UniqueNoMovementPenaltyRaisedShield1"] = { affix = "", "No Movement Speed Penalty while Shield is Raised", statOrder = { 9205 }, level = 1, group = "NoMovementPenaltyRaisedShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [585231074] = { "No Movement Speed Penalty while Shield is Raised" }, } }, + ["UniqueLocalMaimOnCrit1"] = { affix = "", "Maim on Critical Hit", statOrder = { 7610 }, level = 1, group = "LocalMaimOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2895144208] = { "Maim on Critical Hit" }, } }, + ["UniqueAlwaysCritHeavyStun1"] = { affix = "", "Always deals Critical Hits against Heavy Stunned Enemies", statOrder = { 7608 }, level = 1, group = "AlwaysCritHeavyStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214130968] = { "Always deals Critical Hits against Heavy Stunned Enemies" }, } }, ["UniqueBaseLifeRegenToAllies1"] = { affix = "", "50% of your Base Life Regeneration is granted to Allies in your Presence", statOrder = { 924 }, level = 82, group = "BaseLifeRegenToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4287671144] = { "50% of your Base Life Regeneration is granted to Allies in your Presence" }, } }, - ["UniqueManaScarificeToAllies1"] = { affix = "", "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana", statOrder = { 10389, 10389.1 }, level = 1, group = "ManaScarificeToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [603021645] = { "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana" }, } }, + ["UniqueManaScarificeToAllies1"] = { affix = "", "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana", statOrder = { 10380, 10380.1 }, level = 1, group = "ManaScarificeToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [603021645] = { "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana" }, } }, ["UniqueCannotBlock1"] = { affix = "", "Cannot Block", statOrder = { 2977 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1465760952] = { "Cannot Block" }, } }, - ["UniqueMaximumBlockToMaximumResistances1"] = { affix = "", "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", statOrder = { 8845 }, level = 1, group = "MaximumBlockToMaximumResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679696791] = { "Modifiers to Maximum Block Chance instead apply to Maximum Resistances" }, } }, - ["UniqueDisableShieldSkills1"] = { affix = "", "Cannot use Shield Skills", statOrder = { 10625 }, level = 1, group = "DisableShieldSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [65135897] = { "Cannot use Shield Skills" }, } }, - ["UniqueFullManaThreshold1"] = { affix = "", "You count as on Full Mana while at 90% of maximum Mana or above", statOrder = { 6698 }, level = 1, group = "FullManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [423304126] = { "You count as on Full Mana while at 90% of maximum Mana or above" }, } }, - ["UniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% increased Attack Speed while on Full Mana", statOrder = { 4559 }, level = 1, group = "IncreasedAttackSpeedFullMana", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4145314483] = { "25% increased Attack Speed while on Full Mana" }, } }, + ["UniqueMaximumBlockToMaximumResistances1"] = { affix = "", "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", statOrder = { 8836 }, level = 1, group = "MaximumBlockToMaximumResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679696791] = { "Modifiers to Maximum Block Chance instead apply to Maximum Resistances" }, } }, + ["UniqueDisableShieldSkills1"] = { affix = "", "Cannot use Shield Skills", statOrder = { 10615 }, level = 1, group = "DisableShieldSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [65135897] = { "Cannot use Shield Skills" }, } }, + ["UniqueFullManaThreshold1"] = { affix = "", "You count as on Full Mana while at 90% of maximum Mana or above", statOrder = { 6694 }, level = 1, group = "FullManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [423304126] = { "You count as on Full Mana while at 90% of maximum Mana or above" }, } }, + ["UniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% increased Attack Speed while on Full Mana", statOrder = { 4556 }, level = 1, group = "IncreasedAttackSpeedFullMana", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4145314483] = { "25% increased Attack Speed while on Full Mana" }, } }, ["UniqueFireShocks1"] = { affix = "", "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", statOrder = { 2610 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [2949096603] = { "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes" }, } }, ["UniqueColdIgnites1"] = { affix = "", "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", statOrder = { 2611 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1261612903] = { "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup" }, } }, ["UniqueLightningFreezes1"] = { affix = "", "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", statOrder = { 2612 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1011772129] = { "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance" }, } }, - ["UniqueLifeCostAsManaCost1"] = { affix = "", "Skills Gain 100% of Mana Cost as Extra Life Cost", statOrder = { 4746 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills Gain 100% of Mana Cost as Extra Life Cost" }, } }, - ["UniqueLifeCostAsManaCost2"] = { affix = "", "Skills Gain 10% of Mana Cost as Extra Life Cost", statOrder = { 4746 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills Gain 10% of Mana Cost as Extra Life Cost" }, } }, - ["UniqueSpellDamageLifeLeech1"] = { affix = "", "10% of Spell Damage Leeched as Life", statOrder = { 4711 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [782941180] = { "10% of Spell Damage Leeched as Life" }, } }, + ["UniqueLifeCostAsManaCost1"] = { affix = "", "Skills Gain 100% of Mana Cost as Extra Life Cost", statOrder = { 4742 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills Gain 100% of Mana Cost as Extra Life Cost" }, } }, + ["UniqueLifeCostAsManaCost2"] = { affix = "", "Skills Gain 10% of Mana Cost as Extra Life Cost", statOrder = { 4742 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills Gain 10% of Mana Cost as Extra Life Cost" }, } }, + ["UniqueSpellDamageLifeLeech1"] = { affix = "", "10% of Spell Damage Leeched as Life", statOrder = { 4707 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [782941180] = { "10% of Spell Damage Leeched as Life" }, } }, ["UniqueFireDamageTakenAsPhysical1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2217 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "100% of Fire Damage from Hits taken as Physical Damage" }, } }, ["UniqueLightningDamageTakenAsCold1"] = { affix = "", "(10-20)% of Lightning damage taken as Cold damage", statOrder = { 2229 }, level = 1, group = "LightningHitAndDoTDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3198708642] = { "(10-20)% of Lightning damage taken as Cold damage" }, } }, ["UniqueFireDamageTakenAsCold1"] = { affix = "", "(10-20)% of Fire damage taken as Cold damage", statOrder = { 2224 }, level = 1, group = "FireHitAndDoTDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108426433] = { "(10-20)% of Fire damage taken as Cold damage" }, } }, - ["UniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Your Critical Damage Bonus is 250%", statOrder = { 5870 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2516303866] = { "Your Critical Damage Bonus is 250%" }, } }, - ["UniqueCriticalStrikesCannotBeRerolled1"] = { affix = "", "Your Critical Hit Chance cannot be Rerolled", statOrder = { 5838 }, level = 1, group = "CriticalStrikesCannotBeRerolled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4159551976] = { "Your Critical Hit Chance cannot be Rerolled" }, } }, - ["UniqueIgniteEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage", statOrder = { 7259 }, level = 1, group = "IgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1433051415] = { "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage" }, } }, + ["UniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Your Critical Damage Bonus is 250%", statOrder = { 5866 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2516303866] = { "Your Critical Damage Bonus is 250%" }, } }, + ["UniqueCriticalStrikesCannotBeRerolled1"] = { affix = "", "Your Critical Hit Chance cannot be Rerolled", statOrder = { 5834 }, level = 1, group = "CriticalStrikesCannotBeRerolled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4159551976] = { "Your Critical Hit Chance cannot be Rerolled" }, } }, + ["UniqueIgniteEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage", statOrder = { 7255 }, level = 1, group = "IgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1433051415] = { "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage" }, } }, ["UniqueAttackerTakesLightningDamage1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 1933 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1243237244] = { "Reflects 1 to 250 Lightning Damage to Melee Attackers" }, } }, ["UniqueDamageCannotBypassEnergyShield1"] = { affix = "", "Damage cannot bypass Energy Shield", statOrder = { 1460 }, level = 1, group = "DamageCannotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [93764325] = { "Damage cannot bypass Energy Shield" }, } }, - ["UniqueBleedsAlwaysAggravated1"] = { affix = "", "Bleeding you inflict is Aggravated", statOrder = { 4247 }, level = 1, group = "BleedsAlwaysAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [841429130] = { "Bleeding you inflict is Aggravated" }, } }, - ["UniqueSlowPotency1"] = { affix = "", "50% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "50% reduced Slowing Potency of Debuffs on You" }, } }, - ["UniqueHinderEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Hindered", statOrder = { 4695 }, level = 1, group = "HinderEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2890401248] = { "Enemies in your Presence are Hindered" }, } }, - ["UniqueGainDruidicProwessOnSpendingXRage1"] = { affix = "", "Gain 1 Druidic Prowess for every 20 total Rage spent", statOrder = { 6774 }, level = 1, group = "GainDruidicProwessOnSpendingXRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1273508088] = { "Gain 1 Druidic Prowess for every 20 total Rage spent" }, } }, - ["UniqueGlobalChanceToBleed1"] = { affix = "", "50% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "50% chance to inflict Bleeding on Hit" }, } }, - ["UniqueGlobalChanceToBleed2"] = { affix = "", "(10-20)% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "(10-20)% chance to inflict Bleeding on Hit" }, } }, - ["UniqueGlobalChanceToBleed3"] = { affix = "", "25% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "25% chance to inflict Bleeding on Hit" }, } }, - ["UniqueAggravateBleedOnCrit1"] = { affix = "", "Aggravate Bleeding on targets you Critically Hit with Attacks", statOrder = { 4239 }, level = 1, group = "AggravateBleedOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2438634449] = { "Aggravate Bleeding on targets you Critically Hit with Attacks" }, } }, - ["UniqueLifeLeechToAllies1"] = { affix = "", "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life", statOrder = { 7462 }, level = 1, group = "LifeLeechToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605721598] = { "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life" }, } }, - ["UniqueRandomMovementVelocityOnHit1"] = { affix = "", "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again", statOrder = { 8907 }, level = 1, group = "RandomMovementVelocityOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [796381300] = { "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again" }, } }, - ["UniqueProjectilesSplitCount1"] = { affix = "", "Projectiles Split towards +2 targets", statOrder = { 9560 }, level = 1, group = "ProjectilesSplitCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3464380325] = { "Projectiles Split towards +2 targets" }, } }, + ["UniqueBleedsAlwaysAggravated1"] = { affix = "", "Bleeding you inflict is Aggravated", statOrder = { 4244 }, level = 1, group = "BleedsAlwaysAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [841429130] = { "Bleeding you inflict is Aggravated" }, } }, + ["UniqueSlowPotency1"] = { affix = "", "50% reduced Slowing Potency of Debuffs on You", statOrder = { 4743 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "50% reduced Slowing Potency of Debuffs on You" }, } }, + ["UniqueHinderEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Hindered", statOrder = { 4691 }, level = 1, group = "HinderEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2890401248] = { "Enemies in your Presence are Hindered" }, } }, + ["UniqueGainDruidicProwessOnSpendingXRage1"] = { affix = "", "Gain 1 Druidic Prowess for every 20 total Rage spent", statOrder = { 6770 }, level = 1, group = "GainDruidicProwessOnSpendingXRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1273508088] = { "Gain 1 Druidic Prowess for every 20 total Rage spent" }, } }, + ["UniqueGlobalChanceToBleed1"] = { affix = "", "50% chance to inflict Bleeding on Hit", statOrder = { 4668 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "50% chance to inflict Bleeding on Hit" }, } }, + ["UniqueGlobalChanceToBleed2"] = { affix = "", "(10-20)% chance to inflict Bleeding on Hit", statOrder = { 4668 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "(10-20)% chance to inflict Bleeding on Hit" }, } }, + ["UniqueGlobalChanceToBleed3"] = { affix = "", "25% chance to inflict Bleeding on Hit", statOrder = { 4668 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "25% chance to inflict Bleeding on Hit" }, } }, + ["UniqueAggravateBleedOnCrit1"] = { affix = "", "Aggravate Bleeding on targets you Critically Hit with Attacks", statOrder = { 4236 }, level = 1, group = "AggravateBleedOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2438634449] = { "Aggravate Bleeding on targets you Critically Hit with Attacks" }, } }, + ["UniqueLifeLeechToAllies1"] = { affix = "", "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life", statOrder = { 7458 }, level = 1, group = "LifeLeechToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605721598] = { "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life" }, } }, + ["UniqueRandomMovementVelocityOnHit1"] = { affix = "", "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again", statOrder = { 8898 }, level = 1, group = "RandomMovementVelocityOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [796381300] = { "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again" }, } }, + ["UniqueProjectilesSplitCount1"] = { affix = "", "Projectiles Split towards +2 targets", statOrder = { 9551 }, level = 1, group = "ProjectilesSplitCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3464380325] = { "Projectiles Split towards +2 targets" }, } }, ["UniquePowerChargeOnHit1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1589 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1453197917] = { "20% chance to gain a Power Charge on Hit" }, } }, ["UniqueLosePowerChargesOnMaxCharges1"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3284 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching maximum Power Charges" }, } }, ["UniqueShockOnMaxPowerCharges1"] = { affix = "", "Shocks you when you reach maximum Power Charges", statOrder = { 3285 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4256314560] = { "Shocks you when you reach maximum Power Charges" }, } }, - ["UniqueMinionAddedColdDamageMaximumLife1"] = { affix = "", "Minions deal 5% of your Life as additional Cold Damage with Attacks", statOrder = { 9001 }, level = 1, group = "MinionAddedColdDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1403346025] = { "Minions deal 5% of your Life as additional Cold Damage with Attacks" }, } }, + ["UniqueMinionAddedColdDamageMaximumLife1"] = { affix = "", "Minions deal 5% of your Life as additional Cold Damage with Attacks", statOrder = { 8992 }, level = 1, group = "MinionAddedColdDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1403346025] = { "Minions deal 5% of your Life as additional Cold Damage with Attacks" }, } }, ["UniqueStatLifeReservation1"] = { affix = "", "Reserves 15% of Life", statOrder = { 2191 }, level = 1, group = "StatLifeReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2685246061] = { "Reserves 15% of Life" }, } }, ["UniqueElementalDamageTakenAsChaos1"] = { affix = "", "20% of Elemental damage from Hits taken as Chaos damage", statOrder = { 2215 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [1175213674] = { "20% of Elemental damage from Hits taken as Chaos damage" }, } }, ["UniqueChanceToBePoisoned1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 3074 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4250009622] = { "+25% chance to be Poisoned" }, } }, ["UniqueEnduranceChargeDuration1"] = { affix = "", "25% reduced Endurance Charge Duration", statOrder = { 1864 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "25% reduced Endurance Charge Duration" }, } }, - ["UniqueLifeGainedOnEnduranceChargeConsumed1"] = { affix = "", "Recover 5% of maximum Life for each Endurance Charge consumed", statOrder = { 9666 }, level = 1, group = "LifeGainedOnEnduranceChargeConsumed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [939832726] = { "Recover 5% of maximum Life for each Endurance Charge consumed" }, } }, - ["UniqueCullingStrikeThreshold1"] = { affix = "", "100% increased Culling Strike Threshold", statOrder = { 5914 }, level = 1, group = "CullingStrikeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3563080185] = { "100% increased Culling Strike Threshold" }, } }, - ["UniqueNoSlowPotency1"] = { affix = "", "Your speed is unaffected by Slows", statOrder = { 9937 }, level = 1, group = "NoSlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50721145] = { "Your speed is unaffected by Slows" }, } }, + ["UniqueLifeGainedOnEnduranceChargeConsumed1"] = { affix = "", "Recover 5% of maximum Life for each Endurance Charge consumed", statOrder = { 9657 }, level = 1, group = "LifeGainedOnEnduranceChargeConsumed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [939832726] = { "Recover 5% of maximum Life for each Endurance Charge consumed" }, } }, + ["UniqueCullingStrikeThreshold1"] = { affix = "", "100% increased Culling Strike Threshold", statOrder = { 5910 }, level = 1, group = "CullingStrikeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3563080185] = { "100% increased Culling Strike Threshold" }, } }, + ["UniqueNoSlowPotency1"] = { affix = "", "Your speed is unaffected by Slows", statOrder = { 9928 }, level = 1, group = "NoSlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50721145] = { "Your speed is unaffected by Slows" }, } }, ["UniqueLifeRegenerationPercent1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, ["UniqueLifeRegenerationPercentOnLowLife1"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1692 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 3% of maximum Life per second while on Low Life" }, } }, ["UniqueFireResistOnLowLife1"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1015 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [38301299] = { "+25% to Fire Resistance while on Low Life" }, } }, - ["UniqueSpellDamagePerSpirit1"] = { affix = "", "(8-12)% increased Spell Damage per 10 Spirit", statOrder = { 10018 }, level = 1, group = "SpellDamagePerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2412053423] = { "(8-12)% increased Spell Damage per 10 Spirit" }, } }, - ["UniqueFlaskLifeRecoveryEnergyShield1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield", statOrder = { 7473 }, level = 1, group = "FlaskLifeRecoveryEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2812872407] = { "Life Recovery from Flasks also applies to Energy Shield" }, } }, + ["UniqueSpellDamagePerSpirit1"] = { affix = "", "(8-12)% increased Spell Damage per 10 Spirit", statOrder = { 10009 }, level = 1, group = "SpellDamagePerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2412053423] = { "(8-12)% increased Spell Damage per 10 Spirit" }, } }, + ["UniqueFlaskLifeRecoveryEnergyShield1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield", statOrder = { 7469 }, level = 1, group = "FlaskLifeRecoveryEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2812872407] = { "Life Recovery from Flasks also applies to Energy Shield" }, } }, ["UniqueDamageRemovedFromManaBeforeLife1"] = { affix = "", "50% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "50% of Damage is taken from Mana before Life" }, } }, ["UniqueDamageRemovedFromManaBeforeLife2"] = { affix = "", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, ["UniqueDamageRemovedFromManaBeforeLife3"] = { affix = "", "100% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "100% of Damage is taken from Mana before Life" }, } }, ["UniqueUnaffectedByCurses1"] = { affix = "", "Unaffected by Curses", statOrder = { 2259 }, level = 1, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3809896400] = { "Unaffected by Curses" }, } }, ["UniqueReflectCurses1"] = { affix = "", "Curse Reflection", statOrder = { 2257 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1731672673] = { "Curse Reflection" }, } }, - ["UniqueChilledWhileBleeding1"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4278 }, level = 45, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2420248029] = { "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you" }, } }, - ["UniqueChilledWhilePoisoned1"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4279 }, level = 45, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1291285202] = { "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you" }, } }, - ["UniqueNonChilledEnemiesBleedAndChill1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4280 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1717295693] = { "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude" }, } }, - ["UniqueNonChilledEnemiesPoisonAndChill1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4281 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1375667591] = { "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude" }, } }, - ["UniqueArmourAppliesToLightningDamage1"] = { affix = "", "+100% of Armour also applies to Lightning Damage", statOrder = { 4650 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental", "lightning" }, tradeHashes = { [2134207902] = { "+100% of Armour also applies to Lightning Damage" }, } }, - ["UniqueLightningResistNoReduction1"] = { affix = "", "Lightning Resistance does not affect Lightning damage taken", statOrder = { 7563 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [3999959974] = { "Lightning Resistance does not affect Lightning damage taken" }, } }, - ["UniqueNearbyEnemyLightningResistanceEqual1"] = { affix = "", "Enemies in your Presence have Lightning Resistance equal to yours", statOrder = { 6366 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1546580830] = { "Enemies in your Presence have Lightning Resistance equal to yours" }, } }, + ["UniqueChilledWhileBleeding1"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4275 }, level = 45, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2420248029] = { "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you" }, } }, + ["UniqueChilledWhilePoisoned1"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4276 }, level = 45, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1291285202] = { "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you" }, } }, + ["UniqueNonChilledEnemiesBleedAndChill1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4277 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1717295693] = { "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude" }, } }, + ["UniqueNonChilledEnemiesPoisonAndChill1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4278 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1375667591] = { "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude" }, } }, + ["UniqueArmourAppliesToLightningDamage1"] = { affix = "", "+100% of Armour also applies to Lightning Damage", statOrder = { 4647 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental", "lightning" }, tradeHashes = { [2134207902] = { "+100% of Armour also applies to Lightning Damage" }, } }, + ["UniqueLightningResistNoReduction1"] = { affix = "", "Lightning Resistance does not affect Lightning damage taken", statOrder = { 7559 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [3999959974] = { "Lightning Resistance does not affect Lightning damage taken" }, } }, + ["UniqueNearbyEnemyLightningResistanceEqual1"] = { affix = "", "Enemies in your Presence have Lightning Resistance equal to yours", statOrder = { 6362 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1546580830] = { "Enemies in your Presence have Lightning Resistance equal to yours" }, } }, ["UniquePhysicalDamageTakenAsLightningPercent1"] = { affix = "", "(30-50)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2201 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(30-50)% of Physical damage from Hits taken as Lightning damage" }, } }, - ["UniqueMaximumBlockChanceIfNotBlockedRecently1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 8834 }, level = 1, group = "MaximumBlockChanceIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2584264074] = { "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently" }, } }, - ["UniqueInstantLifeFlaskRecovery1"] = { affix = "", "Life Recovery from Flasks is instant", statOrder = { 7437 }, level = 1, group = "InstantLifeFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [720388959] = { "Life Recovery from Flasks is instant" }, } }, - ["UniqueLifeLeechOvercapLife1"] = { affix = "", "Life Leech can Overflow Maximum Life", statOrder = { 7454 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, - ["UniqueLifeFlasksOvercapLife1"] = { affix = "", "Life Recovery from Flasks can Overflow Maximum Life", statOrder = { 7436 }, level = 75, group = "LifeFlasksOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1245896889] = { "Life Recovery from Flasks can Overflow Maximum Life" }, } }, - ["UniqueHasSoulEater1"] = { affix = "", "Soul Eater", statOrder = { 10399 }, level = 1, group = "HasSoulEater", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404607671] = { "Soul Eater" }, } }, - ["UniqueDoublePresenceRadius1"] = { affix = "", "Presence Radius is doubled", statOrder = { 10397 }, level = 1, group = "DoublePresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1810907437] = { "Presence Radius is doubled" }, } }, - ["UniqueLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain 0.25 charges per Second", statOrder = { 6892 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain 0.25 charges per Second" }, } }, - ["UniqueLifeFlaskChargeGeneration2"] = { affix = "", "Life Flasks gain (0.17-0.25) charges per Second", statOrder = { 6892 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.17-0.25) charges per Second" }, } }, - ["UniqueManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain 0.25 charges per Second", statOrder = { 6893 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain 0.25 charges per Second" }, } }, - ["UniqueManaFlaskChargeGeneration2"] = { affix = "", "Mana Flasks gain (0.17-0.25) charges per Second", statOrder = { 6893 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.17-0.25) charges per Second" }, } }, - ["UniqueManaFlaskChargeGeneration3"] = { affix = "", "Mana Flasks gain (0.1-0.25) charges per Second", statOrder = { 6893 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.25) charges per Second" }, } }, - ["UniqueGuardFromManaFlask1"] = { affix = "", "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", statOrder = { 10436 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds" }, } }, - ["UniqueGuardFromMissingEnergyShieldOnDodge1"] = { affix = "", "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll", statOrder = { 6805 }, level = 1, group = "GuardOnDodgeFromMissingEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [469006068] = { "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll" }, } }, - ["UniqueMaximumGuardBasedOnEnergyShield1"] = { affix = "", "Maximum amount of Guard is based on maximum Energy Shield instead", statOrder = { 8874 }, level = 1, group = "MaximumGuardInsteadBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1338406168] = { "Maximum amount of Guard is based on maximum Energy Shield instead" }, } }, - ["UniqueDivineFlight1"] = { affix = "", "Divine Flight", statOrder = { 10754 }, level = 1, group = "DivineFlight", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2971398565] = { "Divine Flight" }, } }, - ["UniqueCharmChargeGeneration1"] = { affix = "", "Charms gain 1 charge per Second", statOrder = { 6889 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain 1 charge per Second" }, } }, - ["UniqueChaosResistanceIsZero1"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10650 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, - ["UniqueChaosResistanceIsZero2"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10650 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, + ["UniqueMaximumBlockChanceIfNotBlockedRecently1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 8825 }, level = 1, group = "MaximumBlockChanceIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2584264074] = { "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently" }, } }, + ["UniqueInstantLifeFlaskRecovery1"] = { affix = "", "Life Recovery from Flasks is instant", statOrder = { 7433 }, level = 1, group = "InstantLifeFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [720388959] = { "Life Recovery from Flasks is instant" }, } }, + ["UniqueLifeLeechOvercapLife1"] = { affix = "", "Life Leech can Overflow Maximum Life", statOrder = { 7450 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, + ["UniqueLifeFlasksOvercapLife1"] = { affix = "", "Life Recovery from Flasks can Overflow Maximum Life", statOrder = { 7432 }, level = 75, group = "LifeFlasksOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1245896889] = { "Life Recovery from Flasks can Overflow Maximum Life" }, } }, + ["UniqueHasSoulEater1"] = { affix = "", "Soul Eater", statOrder = { 10390 }, level = 1, group = "HasSoulEater", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404607671] = { "Soul Eater" }, } }, + ["UniqueDoublePresenceRadius1"] = { affix = "", "Presence Radius is doubled", statOrder = { 10388 }, level = 1, group = "DoublePresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1810907437] = { "Presence Radius is doubled" }, } }, + ["UniqueLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain 0.25 charges per Second", statOrder = { 6888 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain 0.25 charges per Second" }, } }, + ["UniqueLifeFlaskChargeGeneration2"] = { affix = "", "Life Flasks gain (0.17-0.25) charges per Second", statOrder = { 6888 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.17-0.25) charges per Second" }, } }, + ["UniqueManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain 0.25 charges per Second", statOrder = { 6889 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain 0.25 charges per Second" }, } }, + ["UniqueManaFlaskChargeGeneration2"] = { affix = "", "Mana Flasks gain (0.17-0.25) charges per Second", statOrder = { 6889 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.17-0.25) charges per Second" }, } }, + ["UniqueManaFlaskChargeGeneration3"] = { affix = "", "Mana Flasks gain (0.1-0.25) charges per Second", statOrder = { 6889 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.25) charges per Second" }, } }, + ["UniqueGuardFromManaFlask1"] = { affix = "", "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", statOrder = { 10426 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds" }, } }, + ["UniqueGuardFromMissingEnergyShieldOnDodge1"] = { affix = "", "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll", statOrder = { 6801 }, level = 1, group = "GuardOnDodgeFromMissingEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [469006068] = { "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll" }, } }, + ["UniqueMaximumGuardBasedOnEnergyShield1"] = { affix = "", "Maximum amount of Guard is based on maximum Energy Shield instead", statOrder = { 8865 }, level = 1, group = "MaximumGuardInsteadBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1338406168] = { "Maximum amount of Guard is based on maximum Energy Shield instead" }, } }, + ["UniqueDivineFlight1"] = { affix = "", "Divine Flight", statOrder = { 10744 }, level = 1, group = "DivineFlight", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2971398565] = { "Divine Flight" }, } }, + ["UniqueCharmChargeGeneration1"] = { affix = "", "Charms gain 1 charge per Second", statOrder = { 6885 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain 1 charge per Second" }, } }, + ["UniqueChaosResistanceIsZero1"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10640 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, + ["UniqueChaosResistanceIsZero2"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10640 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, ["UniqueRecoverLifePercentOnBlock1"] = { affix = "", "Recover 4% of maximum Life when you Block", statOrder = { 2792 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [2442647190] = { "Recover 4% of maximum Life when you Block" }, } }, - ["UniqueIntimidateOnCurse1"] = { affix = "", "Enemies you Curse are Intimidated", statOrder = { 6389 }, level = 1, group = "IntimidateOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [147006673] = { "Enemies you Curse are Intimidated" }, } }, + ["UniqueIntimidateOnCurse1"] = { affix = "", "Enemies you Curse are Intimidated", statOrder = { 6385 }, level = 1, group = "IntimidateOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [147006673] = { "Enemies you Curse are Intimidated" }, } }, ["UniqueSelfStatusAilmentDuration1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1622 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "50% increased Elemental Ailment Duration on you" }, } }, - ["UniqueCurseNoActivationDelay1"] = { affix = "", "Curses have no Activation Delay", statOrder = { 10420 }, level = 1, group = "CurseNoActivationDelay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3751072557] = { "Curses have no Activation Delay" }, } }, - ["UniqueSetMovementVelocityPerEvasion1"] = { affix = "", "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply", statOrder = { 9152, 9152.1 }, level = 1, group = "SetMovementVelocityPerEvasion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3881997959] = { "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply" }, } }, - ["UniqueInstantLifeFlaskOnLowLife1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 7438 }, level = 1, group = "InstantLifeFlaskOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200347828] = { "Life Flasks used while on Low Life apply Recovery Instantly" }, } }, - ["UniqueInstantManaFlaskOnLowMana1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 7980 }, level = 1, group = "InstantManaFlaskOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1839832419] = { "Mana Flasks used while on Low Mana apply Recovery Instantly" }, } }, + ["UniqueCurseNoActivationDelay1"] = { affix = "", "Curses have no Activation Delay", statOrder = { 10410 }, level = 1, group = "CurseNoActivationDelay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3751072557] = { "Curses have no Activation Delay" }, } }, + ["UniqueSetMovementVelocityPerEvasion1"] = { affix = "", "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply", statOrder = { 9143, 9143.1 }, level = 1, group = "SetMovementVelocityPerEvasion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3881997959] = { "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply" }, } }, + ["UniqueInstantLifeFlaskOnLowLife1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 7434 }, level = 1, group = "InstantLifeFlaskOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200347828] = { "Life Flasks used while on Low Life apply Recovery Instantly" }, } }, + ["UniqueInstantManaFlaskOnLowMana1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 7976 }, level = 1, group = "InstantManaFlaskOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1839832419] = { "Mana Flasks used while on Low Mana apply Recovery Instantly" }, } }, ["UniqueDamageAddedAsFireAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "DamageAddedAsFireAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (5-10)% of Damage as Extra Fire Damage" }, } }, ["UniqueDamageAddedAsColdAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "DamageAddedAsColdAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (5-10)% of Damage as Extra Cold Damage" }, } }, ["UniqueDamageAddedAsChaos1"] = { affix = "", "Gain (30-40)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3398787959] = { "Gain (30-40)% of Damage as Extra Chaos Damage" }, } }, ["UniquePhysicalDamageAddedAsChaosAttacks1"] = { affix = "", "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage", statOrder = { 1290 }, level = 1, group = "PhysicalDamageAddedAsChaosAttacks", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "attack" }, tradeHashes = { [261503687] = { "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage" }, } }, - ["UniqueEnemiesChilledIncreasedDamageTaken1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 6338 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, + ["UniqueEnemiesChilledIncreasedDamageTaken1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 6334 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, ["UniqueSelfPhysicalDamageOnMinionDeath1"] = { affix = "", "300 Physical Damage taken on Minion Death", statOrder = { 2762 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "300 Physical Damage taken on Minion Death" }, } }, ["UniqueOnslaughtBuffOnKill1"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2417 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 4 seconds on Kill" }, } }, - ["UniqueBuildDamageAgainstRareAndUnique1"] = { affix = "", "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", statOrder = { 10396 }, level = 1, group = "BuildDamageAgainstRareAndUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4258409981] = { "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%" }, } }, - ["UniqueAlwaysPierceBurningEnemies1"] = { affix = "", "Projectiles Pierce all Ignited enemies", statOrder = { 4296 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214228141] = { "Projectiles Pierce all Ignited enemies" }, } }, + ["UniqueBuildDamageAgainstRareAndUnique1"] = { affix = "", "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", statOrder = { 10387 }, level = 1, group = "BuildDamageAgainstRareAndUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4258409981] = { "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%" }, } }, + ["UniqueAlwaysPierceBurningEnemies1"] = { affix = "", "Projectiles Pierce all Ignited enemies", statOrder = { 4293 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214228141] = { "Projectiles Pierce all Ignited enemies" }, } }, ["UniqueStunRecovery1"] = { affix = "", "200% increased Stun Recovery", statOrder = { 1060 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "200% increased Stun Recovery" }, } }, ["UniqueSpellDamageModifiersApplyToAttackDamage1"] = { affix = "", "Increases and Reductions to Spell damage also apply to Attacks", statOrder = { 2458 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3811649872] = { "Increases and Reductions to Spell damage also apply to Attacks" }, } }, - ["UniqueLifeRecharge1"] = { affix = "", "Life Recharges", statOrder = { 4713 }, level = 1, group = "LifeRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3971919056] = { "Life Recharges" }, } }, + ["UniqueLifeRecharge1"] = { affix = "", "Life Recharges", statOrder = { 4709 }, level = 1, group = "LifeRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3971919056] = { "Life Recharges" }, } }, ["UniqueIncreasedTotemLife1"] = { affix = "", "(20-30)% reduced Totem Life", statOrder = { 1533 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(20-30)% reduced Totem Life" }, } }, ["UniqueAdditionalTotems1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1978 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, ["UniqueRandomlyCursedWhenTotemsDie1"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2330 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Curse on you when your Totems die, ignoring Curse limit" }, } }, - ["UniqueWarcryCorpseExplosion1"] = { affix = "", "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", statOrder = { 5780 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [11014011] = { "Warcries Explode Corpses dealing 10% of their Life as Physical Damage" }, } }, + ["UniqueWarcryCorpseExplosion1"] = { affix = "", "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", statOrder = { 5776 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [11014011] = { "Warcries Explode Corpses dealing 10% of their Life as Physical Damage" }, } }, ["UniqueWarcrySpeed1"] = { affix = "", "(20-30)% increased Warcry Speed", statOrder = { 2989 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(20-30)% increased Warcry Speed" }, } }, - ["UniqueWarcryAreaOfEffect1"] = { affix = "", "Warcry Skills have (20-30)% increased Area of Effect", statOrder = { 10514 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (20-30)% increased Area of Effect" }, } }, + ["UniqueWarcryAreaOfEffect1"] = { affix = "", "Warcry Skills have (20-30)% increased Area of Effect", statOrder = { 10504 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (20-30)% increased Area of Effect" }, } }, ["UniqueSummonTotemCastSpeed1"] = { affix = "", "25% increased Totem Placement speed", statOrder = { 2360 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "25% increased Totem Placement speed" }, } }, ["UniqueTotemReflectFireDamage1"] = { affix = "", "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3460 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1723061251] = { "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, ["UniqueMeleeCriticalStrikeMultiplier1"] = { affix = "", "+(100-150)% to Melee Critical Damage Bonus", statOrder = { 1395 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(100-150)% to Melee Critical Damage Bonus" }, } }, ["UniquePhysicalDamageTaken1"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1966 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, ["UniqueFlatPhysicalDamageTaken1"] = { affix = "", "-30 Physical Damage taken from Hits", statOrder = { 1960 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-30 Physical Damage taken from Hits" }, } }, - ["UniqueGainRageOnManaSpent1"] = { affix = "", "Gain (5-10) Rage after Spending a total of 200 Mana", statOrder = { 6874 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3199910734] = { "Gain (5-10) Rage after Spending a total of 200 Mana" }, } }, - ["UniqueRageGrantsSpellDamage1"] = { affix = "", "Rage grants Spell damage instead of Attack damage", statOrder = { 9621 }, level = 1, group = "RageGrantsSpellDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933909365] = { "Rage grants Spell damage instead of Attack damage" }, } }, + ["UniqueGainRageOnManaSpent1"] = { affix = "", "Gain (5-10) Rage after Spending a total of 200 Mana", statOrder = { 6870 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3199910734] = { "Gain (5-10) Rage after Spending a total of 200 Mana" }, } }, + ["UniqueRageGrantsSpellDamage1"] = { affix = "", "Rage grants Spell damage instead of Attack damage", statOrder = { 9612 }, level = 1, group = "RageGrantsSpellDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933909365] = { "Rage grants Spell damage instead of Attack damage" }, } }, ["UniqueAllDefences1"] = { affix = "", "30% reduced Global Armour, Evasion and Energy Shield", statOrder = { 2588 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1177404658] = { "30% reduced Global Armour, Evasion and Energy Shield" }, } }, - ["UniqueGoldFoundIncrease1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueGoldFoundIncrease1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6913 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, ["UniqueCannotGainEnergyShield1"] = { affix = "", "Cannot have Energy Shield", statOrder = { 2844 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "unmutatable", "energy_shield" }, tradeHashes = { [410952253] = { "Cannot have Energy Shield" }, } }, - ["UniqueLifeRegenPerEnergyShield1"] = { affix = "", "Regenerate 0.05 Life per second per Maximum Energy Shield", statOrder = { 7491 }, level = 1, group = "LifeRegenPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3276271783] = { "Regenerate 0.05 Life per second per Maximum Energy Shield" }, } }, - ["UniqueGainMissingLifeBeforeHit1"] = { affix = "", "Recover (20-30)% of Missing Life before being Hit by an Enemy", statOrder = { 9117 }, level = 1, group = "GainMissingLifeBeforeHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1990472846] = { "Recover (20-30)% of Missing Life before being Hit by an Enemy" }, } }, - ["UniqueAccuracyUnaffectedDistance1"] = { affix = "", "You have no Accuracy Penalty at Distance", statOrder = { 6079 }, level = 1, group = "AccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3070990531] = { "You have no Accuracy Penalty at Distance" }, } }, - ["UniqueAccuracyOver100"] = { affix = "", "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", statOrder = { 6735, 6735.1 }, level = 1, group = "AccuracyOver100", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800049475] = { "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks" }, } }, + ["UniqueLifeRegenPerEnergyShield1"] = { affix = "", "Regenerate 0.05 Life per second per Maximum Energy Shield", statOrder = { 7487 }, level = 1, group = "LifeRegenPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3276271783] = { "Regenerate 0.05 Life per second per Maximum Energy Shield" }, } }, + ["UniqueGainMissingLifeBeforeHit1"] = { affix = "", "Recover (20-30)% of Missing Life before being Hit by an Enemy", statOrder = { 9108 }, level = 1, group = "GainMissingLifeBeforeHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1990472846] = { "Recover (20-30)% of Missing Life before being Hit by an Enemy" }, } }, + ["UniqueAccuracyUnaffectedDistance1"] = { affix = "", "You have no Accuracy Penalty at Distance", statOrder = { 6075 }, level = 1, group = "AccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3070990531] = { "You have no Accuracy Penalty at Distance" }, } }, + ["UniqueAccuracyOver100"] = { affix = "", "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", statOrder = { 6731, 6731.1 }, level = 1, group = "AccuracyOver100", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800049475] = { "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks" }, } }, ["UniqueRepeatNoEnemyInPresence"] = { affix = "", "Repeatable Attacks with this Bow Repeat +2 times if no enemies are in your Presence", statOrder = { 4092 }, level = 1, group = "UniqueRepeatNoEnemyInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2306588612] = { "Repeatable Attacks with this Bow Repeat +2 times if no enemies are in your Presence" }, } }, ["UniqueSkillEffectDuration1"] = { affix = "", "(30-50)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(30-50)% increased Skill Effect Duration" }, } }, ["UniqueSkillEffectDuration2"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, - ["UniqueGlobalCooldownRecovery1"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(30-50)% increased Cooldown Recovery Rate" }, } }, - ["UniqueGlobalCooldownRecovery2"] = { affix = "", "(20-40)% reduced Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-40)% reduced Cooldown Recovery Rate" }, } }, + ["UniqueGlobalCooldownRecovery1"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(30-50)% increased Cooldown Recovery Rate" }, } }, + ["UniqueGlobalCooldownRecovery2"] = { affix = "", "(20-40)% reduced Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-40)% reduced Cooldown Recovery Rate" }, } }, ["UniqueMinionDamageAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3977 }, level = 1, group = "MinionDamageAffectsYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1631928082] = { "Increases and Reductions to Minion Damage also affect you" }, } }, ["UniqueMinionAttackSpeedAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3428 }, level = 1, group = "MinionAttackSpeedAffectsYou", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2293111154] = { "Increases and Reductions to Minion Attack Speed also affect you" }, } }, - ["UniqueDamagePerMinion1"] = { affix = "", "(5-8)% increased Damage per Minion", statOrder = { 5952 }, level = 1, group = "DamagePerMinion", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3399499561] = { "(5-8)% increased Damage per Minion" }, } }, + ["UniqueDamagePerMinion1"] = { affix = "", "(5-8)% increased Damage per Minion", statOrder = { 5948 }, level = 1, group = "DamagePerMinion", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3399499561] = { "(5-8)% increased Damage per Minion" }, } }, ["UniqueManaRegenerationWhileStationary1"] = { affix = "", "40% increased Mana Regeneration Rate while stationary", statOrder = { 3986 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "40% increased Mana Regeneration Rate while stationary" }, } }, ["UniqueEnergyShieldAsPercentOfLife1"] = { affix = "", "Gain (10-15)% of maximum Life as Extra maximum Energy Shield", statOrder = { 1435 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1228337241] = { "Gain (10-15)% of maximum Life as Extra maximum Energy Shield" }, } }, ["UniqueDamageBypassEnergyShieldPercent1"] = { affix = "", "10% of Damage taken bypasses Energy Shield", statOrder = { 1456 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448633171] = { "10% of Damage taken bypasses Energy Shield" }, } }, - ["UniqueLoseEnergyShieldPerSecond1"] = { affix = "", "You lose 5% of maximum Energy Shield per second", statOrder = { 6432 }, level = 1, group = "LoseEnergyShieldPerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2350411833] = { "You lose 5% of maximum Energy Shield per second" }, } }, - ["UniqueLifeLeechExcessToEnergyShield1"] = { affix = "", "Excess Life Recovery from Leech is applied to Energy Shield", statOrder = { 7455 }, level = 1, group = "LifeLeechExcessToEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [999436592] = { "Excess Life Recovery from Leech is applied to Energy Shield" }, } }, - ["UniqueMinionLifeTiedToOwner1"] = { affix = "", "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life", statOrder = { 10417, 10417.1 }, level = 1, group = "MinionLifeTiedToOwner", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2247039371] = { "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life" }, } }, + ["UniqueLoseEnergyShieldPerSecond1"] = { affix = "", "You lose 5% of maximum Energy Shield per second", statOrder = { 6428 }, level = 1, group = "LoseEnergyShieldPerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2350411833] = { "You lose 5% of maximum Energy Shield per second" }, } }, + ["UniqueLifeLeechExcessToEnergyShield1"] = { affix = "", "Excess Life Recovery from Leech is applied to Energy Shield", statOrder = { 7451 }, level = 1, group = "LifeLeechExcessToEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [999436592] = { "Excess Life Recovery from Leech is applied to Energy Shield" }, } }, + ["UniqueMinionLifeTiedToOwner1"] = { affix = "", "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life", statOrder = { 10407, 10407.1 }, level = 1, group = "MinionLifeTiedToOwner", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2247039371] = { "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life" }, } }, ["UniqueRingIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1947 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, ["UniqueStaffIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1947 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, ["UniqueNoCriticalStrikeMultiplier1"] = { affix = "", "You have no Critical Damage Bonus", statOrder = { 1405 }, level = 32, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "You have no Critical Damage Bonus" }, } }, ["UniqueNoCriticalStrikeMultiplier2"] = { affix = "", "You have no Critical Damage Bonus", statOrder = { 1405 }, level = 1, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "You have no Critical Damage Bonus" }, } }, ["UniqueLocalNoCriticalStrikeMultiplier1"] = { affix = "", "Hits with this Weapon have no Critical Damage Bonus", statOrder = { 1384 }, level = 1, group = "LocalNoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "unmutatable", "damage", "critical" }, tradeHashes = { [1508661598] = { "Hits with this Weapon have no Critical Damage Bonus" }, } }, ["UniqueLocalNoCriticalStrikeMultiplier2"] = { affix = "", "Hits with this Weapon have no Critical Damage Bonus", statOrder = { 1384 }, level = 1, group = "LocalNoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "unmutatable", "damage", "critical" }, tradeHashes = { [1508661598] = { "Hits with this Weapon have no Critical Damage Bonus" }, } }, - ["UniqueGainDisorderlyConductEveryXGrenadeSkills"] = { affix = "", "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds", statOrder = { 6863, 6863.1 }, level = 1, group = "UniqueGainDisorderlyConductBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4128965096] = { "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds" }, } }, - ["UniqueThornsCriticalStrikeChance1"] = { affix = "", "+25% to Thorns Critical Hit Chance", statOrder = { 4758 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2715190555] = { "+25% to Thorns Critical Hit Chance" }, } }, - ["UniqueLocalDazeBuildup1"] = { affix = "", "Dazes on Hit", statOrder = { 7924 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "Dazes on Hit" }, } }, - ["UniqueAftershockChance1"] = { affix = "", "Slam Skills you use yourself cause an additional Aftershock", statOrder = { 10626 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2045949233] = { "Slam Skills you use yourself cause an additional Aftershock" }, } }, + ["UniqueGainDisorderlyConductEveryXGrenadeSkills"] = { affix = "", "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds", statOrder = { 6859, 6859.1 }, level = 1, group = "UniqueGainDisorderlyConductBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4128965096] = { "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds" }, } }, + ["UniqueThornsCriticalStrikeChance1"] = { affix = "", "+25% to Thorns Critical Hit Chance", statOrder = { 4754 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2715190555] = { "+25% to Thorns Critical Hit Chance" }, } }, + ["UniqueLocalDazeBuildup1"] = { affix = "", "Dazes on Hit", statOrder = { 7920 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "Dazes on Hit" }, } }, + ["UniqueAftershockChance1"] = { affix = "", "Slam Skills you use yourself cause an additional Aftershock", statOrder = { 10616 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2045949233] = { "Slam Skills you use yourself cause an additional Aftershock" }, } }, ["UniqueAncestralBoostEveryXAttacksWhileShapeshifted1"] = { affix = "", "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted", statOrder = { 2184, 2184.1 }, level = 1, group = "AncestralBoostEveryXAttacksWhileShapeshifted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2224139044] = { "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted" }, } }, - ["UniqueDoubleEnergyGain1"] = { affix = "", "Energy Generation is doubled", statOrder = { 6415 }, level = 1, group = "DoubleEnergyGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [793801176] = { "Energy Generation is doubled" }, } }, - ["UniqueSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 10038 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, + ["UniqueDoubleEnergyGain1"] = { affix = "", "Energy Generation is doubled", statOrder = { 6411 }, level = 1, group = "DoubleEnergyGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [793801176] = { "Energy Generation is doubled" }, } }, + ["UniqueSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 10029 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, ["UniqueLocalReloadSpeed1"] = { affix = "", "30% reduced Reload Speed", statOrder = { 947 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "30% reduced Reload Speed" }, } }, ["UniqueLocalReloadSpeed2"] = { affix = "", "(7-14)% increased Reload Speed", statOrder = { 947 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(7-14)% increased Reload Speed" }, } }, - ["UniqueChanceForNoBoltReload1"] = { affix = "", "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently", statOrder = { 5904, 5904.1 }, level = 1, group = "ChanceForNoBoltReload", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [842299438] = { "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently" }, } }, - ["UniqueHalvedSpiritReservation1"] = { affix = "", "Skills reserve 50% less Spirit", statOrder = { 10428 }, level = 1, group = "HalvedSpiritReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2838161567] = { "Skills reserve 50% less Spirit" }, } }, + ["UniqueChanceForNoBoltReload1"] = { affix = "", "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently", statOrder = { 5900, 5900.1 }, level = 1, group = "ChanceForNoBoltReload", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [842299438] = { "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently" }, } }, + ["UniqueHalvedSpiritReservation1"] = { affix = "", "Skills reserve 50% less Spirit", statOrder = { 10418 }, level = 1, group = "HalvedSpiritReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2838161567] = { "Skills reserve 50% less Spirit" }, } }, ["UniqueLocalCritChanceOverride1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3466 }, level = 1, group = "LocalCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3384885789] = { "This Weapon's Critical Hit Chance is 100%" }, } }, ["UniqueAdditionalAttackChain1"] = { affix = "", "Attacks Chain 2 additional times", statOrder = { 3783 }, level = 1, group = "AttackAdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain 2 additional times" }, } }, - ["UniqueLightningSpellsChain1"] = { affix = "", "Lightning Skills Chain +1 times", statOrder = { 7565 }, level = 1, group = "LightningSpellAdditionalChain", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [4123841473] = { "Lightning Skills Chain +1 times" }, } }, + ["UniqueLightningSpellsChain1"] = { affix = "", "Lightning Skills Chain +1 times", statOrder = { 7561 }, level = 1, group = "LightningSpellAdditionalChain", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [4123841473] = { "Lightning Skills Chain +1 times" }, } }, ["UniqueStrengthRequirements1"] = { affix = "", "-15 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "-15 Strength Requirement" }, } }, ["UniqueStrengthRequirements2"] = { affix = "", "+100 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, ["UniqueStrengthRequirements3"] = { affix = "", "+150 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+150 Strength Requirement" }, } }, @@ -2071,180 +2068,180 @@ return { ["UniqueDexterityRequirements1"] = { affix = "", "+50 Dexterity Requirement", statOrder = { 818 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1133453872] = { "+50 Dexterity Requirement" }, } }, ["UniqueIntelligenceRequirements1"] = { affix = "", "+100 Intelligence Requirement", statOrder = { 820 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+100 Intelligence Requirement" }, } }, ["UniqueIntelligenceRequirements2"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 820 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+200 Intelligence Requirement" }, } }, - ["UniqueChillHitsCauseShattering1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5657 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, - ["UniqueTriggerEmberFusilladeOnSpellCast1"] = { affix = "", "Trigger Ember Fusillade Skill on casting a Spell", statOrder = { 7689 }, level = 1, group = "GrantsTriggeredEmberFusillade", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [826162720] = { "Trigger Ember Fusillade Skill on casting a Spell" }, } }, - ["UniqueTriggerSparkOnKillingShockedEnemy1"] = { affix = "", "Trigger Spark Skill on killing a Shocked Enemy", statOrder = { 7692 }, level = 1, group = "GrantsTriggeredSpark", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [811217923] = { "Trigger Spark Skill on killing a Shocked Enemy" }, } }, - ["UniqueTriggerLightningBoltOnCriticalStrike1"] = { affix = "", "Trigger Lightning Bolt Skill on Critical Hit", statOrder = { 7691 }, level = 69, group = "GrantsTriggeredLightningBolt", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [704919631] = { "Trigger Lightning Bolt Skill on Critical Hit" }, } }, + ["UniqueChillHitsCauseShattering1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5653 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, + ["UniqueTriggerEmberFusilladeOnSpellCast1"] = { affix = "", "Trigger Ember Fusillade Skill on casting a Spell", statOrder = { 7685 }, level = 1, group = "GrantsTriggeredEmberFusillade", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [826162720] = { "Trigger Ember Fusillade Skill on casting a Spell" }, } }, + ["UniqueTriggerSparkOnKillingShockedEnemy1"] = { affix = "", "Trigger Spark Skill on killing a Shocked Enemy", statOrder = { 7688 }, level = 1, group = "GrantsTriggeredSpark", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [811217923] = { "Trigger Spark Skill on killing a Shocked Enemy" }, } }, + ["UniqueTriggerLightningBoltOnCriticalStrike1"] = { affix = "", "Trigger Lightning Bolt Skill on Critical Hit", statOrder = { 7687 }, level = 1, group = "GrantsTriggeredLightningBolt", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [704919631] = { "Trigger Lightning Bolt Skill on Critical Hit" }, } }, ["UniqueOnlySocketRubyJewel1"] = { affix = "", "You can only Socket Ruby Jewels in this item", statOrder = { 73 }, level = 1, group = "OnlySocketRubyJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4031148736] = { "You can only Socket Ruby Jewels in this item" }, } }, ["UniqueOnlySocketEmeraldJewel1"] = { affix = "", "You can only Socket Emerald Jewels in this item", statOrder = { 74 }, level = 1, group = "OnlySocketEmeraldJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3598729471] = { "You can only Socket Emerald Jewels in this item" }, } }, ["UniqueOnlySocketSapphireJewel1"] = { affix = "", "You can only Socket Sapphire Jewels in this item", statOrder = { 75 }, level = 1, group = "OnlySocketSapphireJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [21302430] = { "You can only Socket Sapphire Jewels in this item" }, } }, - ["UniqueFireResistanceNoPenalty1"] = { affix = "", "Fire Resistance is unaffected by Area Penalties", statOrder = { 6587 }, level = 1, group = "FireResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3247805335] = { "Fire Resistance is unaffected by Area Penalties" }, } }, - ["UniqueColdResistanceNoPenalty1"] = { affix = "", "Cold Resistance is unaffected by Area Penalties", statOrder = { 5704 }, level = 1, group = "ColdResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4207433208] = { "Cold Resistance is unaffected by Area Penalties" }, } }, - ["UniqueLightningResistanceNoPenalty1"] = { affix = "", "Lightning Resistance is unaffected by Area Penalties", statOrder = { 7562 }, level = 1, group = "LightningResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3631920880] = { "Lightning Resistance is unaffected by Area Penalties" }, } }, + ["UniqueFireResistanceNoPenalty1"] = { affix = "", "Fire Resistance is unaffected by Area Penalties", statOrder = { 6583 }, level = 1, group = "FireResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3247805335] = { "Fire Resistance is unaffected by Area Penalties" }, } }, + ["UniqueColdResistanceNoPenalty1"] = { affix = "", "Cold Resistance is unaffected by Area Penalties", statOrder = { 5700 }, level = 1, group = "ColdResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4207433208] = { "Cold Resistance is unaffected by Area Penalties" }, } }, + ["UniqueLightningResistanceNoPenalty1"] = { affix = "", "Lightning Resistance is unaffected by Area Penalties", statOrder = { 7558 }, level = 1, group = "LightningResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3631920880] = { "Lightning Resistance is unaffected by Area Penalties" }, } }, ["UniqueColdAndLightningResPerFireResItem1"] = { affix = "", "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", statOrder = { 1022 }, level = 1, group = "UniqueSekhemaFireRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [2381897042] = { "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier" }, } }, ["UniqueFireAndColdResPerLightningResItem1"] = { affix = "", "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", statOrder = { 1017 }, level = 1, group = "UniqueSekhemaLightningRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [4032948616] = { "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier" }, } }, ["UniqueFireAndLightningRestPerColdResItem1"] = { affix = "", "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", statOrder = { 1019 }, level = 1, group = "UniqueSekhemaColdRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3753008264] = { "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier" }, } }, - ["UniqueTriggerGasCloudOnMainHandHit1"] = { affix = "", "Triggers Gas Cloud on Hit", statOrder = { 7690 }, level = 1, group = "GrantsTriggeredGasCloud", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1652674074] = { "Triggers Gas Cloud on Hit" }, } }, - ["UniqueTriggerDetonationOnOffHandHit1"] = { affix = "", "Trigger Detonation on Hit", statOrder = { 7688 }, level = 1, group = "GrantsTriggeredDetonation", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1524904258] = { "Trigger Detonation on Hit" }, } }, - ["UniqueTakeFireDamageOnIgnite1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6578 }, level = 65, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, - ["UniqueDodgeRollDistance1"] = { affix = "", "+1 metre to Dodge Roll distance", statOrder = { 6200 }, level = 1, group = "DodgeRollDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258119672] = { "+1 metre to Dodge Roll distance" }, } }, - ["UniqueDodgeRollSpeed1"] = { affix = "", "(20-30)% faster Dodge Roll", statOrder = { 6203 }, level = 1, group = "DodgeRollSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [504054855] = { "(20-30)% faster Dodge Roll" }, } }, + ["UniqueTriggerGasCloudOnMainHandHit1"] = { affix = "", "Triggers Gas Cloud on Hit", statOrder = { 7686 }, level = 1, group = "GrantsTriggeredGasCloud", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1652674074] = { "Triggers Gas Cloud on Hit" }, } }, + ["UniqueTriggerDetonationOnOffHandHit1"] = { affix = "", "Trigger Detonation on Hit", statOrder = { 7684 }, level = 1, group = "GrantsTriggeredDetonation", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1524904258] = { "Trigger Detonation on Hit" }, } }, + ["UniqueTakeFireDamageOnIgnite1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6574 }, level = 65, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, + ["UniqueDodgeRollDistance1"] = { affix = "", "+1 metre to Dodge Roll distance", statOrder = { 6196 }, level = 1, group = "DodgeRollDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258119672] = { "+1 metre to Dodge Roll distance" }, } }, + ["UniqueDodgeRollSpeed1"] = { affix = "", "(20-30)% faster Dodge Roll", statOrder = { 6199 }, level = 1, group = "DodgeRollSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [504054855] = { "(20-30)% faster Dodge Roll" }, } }, ["UniqueLioneyeDodgeRoll1"] = { affix = "", "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently", "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently", statOrder = { 4090, 4091 }, level = 1, group = "DodgeRollEnhancedWithTradeOff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3350232544] = { "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently" }, [57896763] = { "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently" }, } }, - ["UniqueEvasionRatingDodgeRoll1"] = { affix = "", "50% increased Evasion Rating if you've Dodge Rolled Recently", statOrder = { 6506 }, level = 1, group = "EvasionRatingDodgeRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1040569494] = { "50% increased Evasion Rating if you've Dodge Rolled Recently" }, } }, + ["UniqueEvasionRatingDodgeRoll1"] = { affix = "", "50% increased Evasion Rating if you've Dodge Rolled Recently", statOrder = { 6502 }, level = 1, group = "EvasionRatingDodgeRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1040569494] = { "50% increased Evasion Rating if you've Dodge Rolled Recently" }, } }, ["UniqueCriticalStrikesIgnoreResistances1"] = { affix = "", "Critical Hits ignore Enemy Monster Elemental Resistances", statOrder = { 3144 }, level = 1, group = "CriticalStrikesIgnoreResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1094937621] = { "Critical Hits ignore Enemy Monster Elemental Resistances" }, } }, - ["UniqueEnergyShieldRegenerationFromLife1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9727 }, level = 44, group = "EnergyShieldRegenerationFromLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, + ["UniqueEnergyShieldRegenerationFromLife1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9718 }, level = 44, group = "EnergyShieldRegenerationFromLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, ["UniqueGainManaAsExtraEnergyShield1"] = { affix = "", "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1431 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3027830452] = { "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield" }, } }, - ["UniqueAdditionalChargeGeneration1"] = { affix = "", "Gain an additional Charge when you gain a Charge", statOrder = { 5518 }, level = 1, group = "AdditionalChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555237944] = { "Gain an additional Charge when you gain a Charge" }, } }, + ["UniqueAdditionalChargeGeneration1"] = { affix = "", "Gain an additional Charge when you gain a Charge", statOrder = { 5514 }, level = 1, group = "AdditionalChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555237944] = { "Gain an additional Charge when you gain a Charge" }, } }, ["UniqueModifyableWhileCorrupted1"] = { affix = "", "Can be modified while Corrupted", statOrder = { 14 }, level = 66, group = "ModifyableWhileCorruptedAndSpecialCorruption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1161337167] = { "Can be modified while Corrupted" }, } }, ["UniqueCharmChargesToLifeFlasks1"] = { affix = "", "50% of Charges consumed by used Charms are granted to your Life Flasks", statOrder = { 903 }, level = 70, group = "CharmChargesToLifeFlasks", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2369960685] = { "50% of Charges consumed by used Charms are granted to your Life Flasks" }, } }, ["UniqueLifeFlaskChargesToCharms1"] = { affix = "", "50% of Charges consumed by used Life Flasks are granted to your Charms", statOrder = { 904 }, level = 70, group = "LifeFlaskChargesToCharms", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2020463573] = { "50% of Charges consumed by used Life Flasks are granted to your Charms" }, } }, ["UniqueCorruptedSkillCostEfficiencyDuringFlaskEffect1"] = { affix = "", "Skills from Corrupted Gems have (15-25)% increased Cost Efficiency during any Flask Effect", statOrder = { 3006 }, level = 70, group = "CorruptedSkillCostEfficiencyDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2638381947] = { "Skills from Corrupted Gems have (15-25)% increased Cost Efficiency during any Flask Effect" }, } }, ["UniqueCorruptedCharmDuration1"] = { affix = "", "(25-50)% increased Corrupted Charms effect duration", statOrder = { 901 }, level = 70, group = "CorruptedCharmDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1571268546] = { "(25-50)% increased Corrupted Charms effect duration" }, } }, - ["UniqueCorruptedBloodImmunity1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5272 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["UniqueCorruptedBloodImmunity1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5268 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, ["UniqueLocalSoulCoreEffect1"] = { affix = "", "(66-333)% increased effect of Socketed Soul Cores", statOrder = { 179 }, level = 60, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4065505214] = { "(66-333)% increased effect of Socketed Soul Cores" }, } }, - ["UniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9609 }, level = 75, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-10-10) to Maximum Rage" }, } }, - ["UniqueGainChargesOnMaximumRage1"] = { affix = "", "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds", statOrder = { 6709 }, level = 1, group = "GainChargesOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2284588585] = { "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds" }, } }, - ["UniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7933 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3851480592] = { "Lose all Rage on reaching Maximum Rage" }, } }, - ["UniqueRageOnAnyHit1"] = { affix = "", "Gain (3-6) Rage on Hit", statOrder = { 4699 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2258007247] = { "Gain (3-6) Rage on Hit" }, } }, - ["UniqueLifeRegenerationNotApplied1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7478 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3947672598] = { "Life Recovery from Regeneration is not applied" }, } }, - ["UniqueRecoverLifeBasedOnRegen1"] = { affix = "", "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration", statOrder = { 9678 }, level = 1, group = "RecoverLifeBasedOnRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457411584] = { "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration" }, } }, - ["UniqueBaseLimit1"] = { affix = "", "Skills have +1 to Limit", statOrder = { 4715 }, level = 30, group = "BaseLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2942704390] = { "Skills have +1 to Limit" }, } }, - ["UniqueFireExposureOnShock1"] = { affix = "", "Inflict Fire Exposure on Shocking an Enemy", statOrder = { 7347 }, level = 1, group = "FireExposureOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1538879632] = { "Inflict Fire Exposure on Shocking an Enemy" }, } }, - ["UniqueColdExposureOnIgnite1"] = { affix = "", "Inflict Cold Exposure on Igniting an Enemy", statOrder = { 7343 }, level = 1, group = "ColdExposureOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314536008] = { "Inflict Cold Exposure on Igniting an Enemy" }, } }, - ["UniqueColdExposureOnHitWithMagnitude1"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%", statOrder = { 4282 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [533542952] = { "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%" }, } }, - ["UniqueColdExposureMagnitude1UNUSED"] = { affix = "", "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%", statOrder = { 5696 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2243456805] = { "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%" }, } }, - ["UniqueLightningExposureOnCrit1"] = { affix = "", "Inflict Lightning Exposure on Critical Hit", statOrder = { 7349 }, level = 1, group = "LightningExposureOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2665488635] = { "Inflict Lightning Exposure on Critical Hit" }, } }, - ["UniqueEnemiesInPresenceGainCritWeakness1"] = { affix = "", "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds", statOrder = { 6361 }, level = 1, group = "EnemiesInPresenceGainCritWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052498387] = { "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds" }, } }, - ["UniqueEnemiesInPresenceBlinded1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 6354 }, level = 1, group = "EnemiesInPresenceBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1464727508] = { "Enemies in your Presence are Blinded" }, } }, - ["UniqueBlinded1"] = { affix = "", "You are Blind", statOrder = { 10630 }, level = 1, group = "Blinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3774577097] = { "You are Blind" }, } }, - ["UniqueBlindEffectsReversed1"] = { affix = "", "The Effect of Blind on you is reversed", statOrder = { 10631 }, level = 1, group = "BlindEffectsReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1010703902] = { "The Effect of Blind on you is reversed" }, } }, - ["UniqueFlatCooldownRecovery1"] = { affix = "", "Skills have -(2-1) seconds to Cooldown", statOrder = { 10394 }, level = 1, group = "FlatCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [396200591] = { "Skills have -(2-1) seconds to Cooldown" }, } }, - ["UniqueChanceToNotConsumeCorpse1"] = { affix = "", "25% chance to not destroy Corpses when Consuming Corpses", statOrder = { 5562 }, level = 1, group = "ChanceToNotConsumeCorpse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [965913123] = { "25% chance to not destroy Corpses when Consuming Corpses" }, } }, + ["UniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9600 }, level = 75, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-10-10) to Maximum Rage" }, } }, + ["UniqueGainChargesOnMaximumRage1"] = { affix = "", "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds", statOrder = { 6705 }, level = 1, group = "GainChargesOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2284588585] = { "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds" }, } }, + ["UniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7929 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3851480592] = { "Lose all Rage on reaching Maximum Rage" }, } }, + ["UniqueRageOnAnyHit1"] = { affix = "", "Gain (3-6) Rage on Hit", statOrder = { 4695 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2258007247] = { "Gain (3-6) Rage on Hit" }, } }, + ["UniqueLifeRegenerationNotApplied1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7474 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3947672598] = { "Life Recovery from Regeneration is not applied" }, } }, + ["UniqueRecoverLifeBasedOnRegen1"] = { affix = "", "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration", statOrder = { 9669 }, level = 1, group = "RecoverLifeBasedOnRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457411584] = { "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration" }, } }, + ["UniqueBaseLimit1"] = { affix = "", "Skills have +1 to Limit", statOrder = { 4711 }, level = 30, group = "BaseLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2942704390] = { "Skills have +1 to Limit" }, } }, + ["UniqueFireExposureOnShock1"] = { affix = "", "Inflict Fire Exposure on Shocking an Enemy", statOrder = { 7343 }, level = 1, group = "FireExposureOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1538879632] = { "Inflict Fire Exposure on Shocking an Enemy" }, } }, + ["UniqueColdExposureOnIgnite1"] = { affix = "", "Inflict Cold Exposure on Igniting an Enemy", statOrder = { 7339 }, level = 1, group = "ColdExposureOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314536008] = { "Inflict Cold Exposure on Igniting an Enemy" }, } }, + ["UniqueColdExposureOnHitWithMagnitude1"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%", statOrder = { 4279 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [533542952] = { "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%" }, } }, + ["UniqueColdExposureMagnitude1UNUSED"] = { affix = "", "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%", statOrder = { 5692 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2243456805] = { "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%" }, } }, + ["UniqueLightningExposureOnCrit1"] = { affix = "", "Inflict Lightning Exposure on Critical Hit", statOrder = { 7345 }, level = 1, group = "LightningExposureOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2665488635] = { "Inflict Lightning Exposure on Critical Hit" }, } }, + ["UniqueEnemiesInPresenceGainCritWeakness1"] = { affix = "", "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds", statOrder = { 6357 }, level = 1, group = "EnemiesInPresenceGainCritWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052498387] = { "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds" }, } }, + ["UniqueEnemiesInPresenceBlinded1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 6350 }, level = 1, group = "EnemiesInPresenceBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1464727508] = { "Enemies in your Presence are Blinded" }, } }, + ["UniqueBlinded1"] = { affix = "", "You are Blind", statOrder = { 10620 }, level = 1, group = "Blinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3774577097] = { "You are Blind" }, } }, + ["UniqueBlindEffectsReversed1"] = { affix = "", "The Effect of Blind on you is reversed", statOrder = { 10621 }, level = 1, group = "BlindEffectsReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1010703902] = { "The Effect of Blind on you is reversed" }, } }, + ["UniqueFlatCooldownRecovery1"] = { affix = "", "Skills have -(2-1) seconds to Cooldown", statOrder = { 10385 }, level = 1, group = "FlatCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [396200591] = { "Skills have -(2-1) seconds to Cooldown" }, } }, + ["UniqueChanceToNotConsumeCorpse1"] = { affix = "", "25% chance to not destroy Corpses when Consuming Corpses", statOrder = { 5558 }, level = 1, group = "ChanceToNotConsumeCorpse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [965913123] = { "25% chance to not destroy Corpses when Consuming Corpses" }, } }, ["UniqueDisablesOtherRingSlot1"] = { affix = "", "Can't use other Rings", statOrder = { 1473 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, ["UniqueSelfCurseDuration1"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1912 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "50% reduced Duration of Curses on you" }, } }, - ["UniqueLeftRingSpellProjectilesFork1"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7793 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2437476305] = { "Left ring slot: Projectiles from Spells Fork" }, } }, - ["UniqueLeftRingSpellProjectilesCannotChain1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7792 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3647242059] = { "Left ring slot: Projectiles from Spells cannot Chain" }, } }, - ["UniqueRightRingSpellProjectilesChain1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 7822 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555918911] = { "Right ring slot: Projectiles from Spells Chain +1 times" }, } }, - ["UniqueRightRingSpellProjectilesCannotFork1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 7823 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933024469] = { "Right ring slot: Projectiles from Spells cannot Fork" }, } }, - ["UniqueSpellsCannotPierce1"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9566 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, - ["UniqueFlaskOverhealToGuard1"] = { affix = "", "Excess Life Recovery added as Guard for 20 seconds", statOrder = { 7840 }, level = 1, group = "FlaskOverhealToGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [636464211] = { "Excess Life Recovery added as Guard for 20 seconds" }, } }, - ["UniqueFlaskWardGainedAsGuard1"] = { affix = "", "Regenerate (2.5-5)% of maximum Runic Ward per second during Effect", "Gain Guard equal to Current Runic Ward for 10 seconds when Effect ends", statOrder = { 7702, 7838 }, level = 1, group = "FlaskWardGainedAsGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1106321864] = { "Regenerate (2.5-5)% of maximum Runic Ward per second during Effect" }, [3069759106] = { "Gain Guard equal to Current Runic Ward for 10 seconds when Effect ends" }, } }, - ["UniqueAlternatingDamageTaken1"] = { affix = "", "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time", statOrder = { 6965, 6965.1, 6965.2 }, level = 78, group = "AlternatingDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258955603] = { "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time" }, } }, - ["UniqueLuckyBlockChance1"] = { affix = "", "Chance to Block Damage is Lucky", statOrder = { 4662 }, level = 1, group = "LuckyBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2957287092] = { "Chance to Block Damage is Lucky" }, } }, + ["UniqueLeftRingSpellProjectilesFork1"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7789 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2437476305] = { "Left ring slot: Projectiles from Spells Fork" }, } }, + ["UniqueLeftRingSpellProjectilesCannotChain1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7788 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3647242059] = { "Left ring slot: Projectiles from Spells cannot Chain" }, } }, + ["UniqueRightRingSpellProjectilesChain1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 7818 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555918911] = { "Right ring slot: Projectiles from Spells Chain +1 times" }, } }, + ["UniqueRightRingSpellProjectilesCannotFork1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 7819 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933024469] = { "Right ring slot: Projectiles from Spells cannot Fork" }, } }, + ["UniqueSpellsCannotPierce1"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9557 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, + ["UniqueFlaskOverhealToGuard1"] = { affix = "", "Excess Life Recovery added as Guard for 20 seconds", statOrder = { 7836 }, level = 1, group = "FlaskOverhealToGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [636464211] = { "Excess Life Recovery added as Guard for 20 seconds" }, } }, + ["UniqueFlaskWardGainedAsGuard1"] = { affix = "", "Regenerate (2.5-5)% of maximum Runic Ward per second during Effect", "Gain Guard equal to Current Runic Ward for 10 seconds when Effect ends", statOrder = { 7698, 7834 }, level = 1, group = "FlaskWardGainedAsGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1106321864] = { "Regenerate (2.5-5)% of maximum Runic Ward per second during Effect" }, [3069759106] = { "Gain Guard equal to Current Runic Ward for 10 seconds when Effect ends" }, } }, + ["UniqueAlternatingDamageTaken1"] = { affix = "", "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time", statOrder = { 6961, 6961.1, 6961.2 }, level = 78, group = "AlternatingDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258955603] = { "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time" }, } }, + ["UniqueLuckyBlockChance1"] = { affix = "", "Chance to Block Damage is Lucky", statOrder = { 4659 }, level = 1, group = "LuckyBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2957287092] = { "Chance to Block Damage is Lucky" }, } }, ["UniqueLocalRunicWard1"] = { affix = "", "+(50-100) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(50-100) to maximum Runic Ward" }, } }, - ["UniqueCharmsNoCharges1"] = { affix = "", "Charms use no Charges", statOrder = { 5635 }, level = 1, group = "CharmsNoCharges", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2620375641] = { "Charms use no Charges" }, } }, - ["UniqueAggravateBleedOnPresence1"] = { affix = "", "Aggravate Bleeding on Enemies when they Enter your Presence", statOrder = { 4242 }, level = 1, group = "AggravateBleedOnPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [874646180] = { "Aggravate Bleeding on Enemies when they Enter your Presence" }, } }, - ["UniqueThornsDamageIncrease1"] = { affix = "", "100% increased Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "100% increased Thorns damage" }, } }, - ["UniqueLifeCost1"] = { affix = "", "Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "Skill Mana Costs Converted to Life Costs" }, } }, - ["UniqueLifeCost2"] = { affix = "", "10% of Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "10% of Skill Mana Costs Converted to Life Costs" }, } }, - ["UniqueDamageGainedAsChaosPerCost1"] = { affix = "", "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost", statOrder = { 9233 }, level = 1, group = "DamageGainedAsChaosPerCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4117005593] = { "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost" }, } }, - ["UniqueSpiritPerSocketable1"] = { affix = "", "+(10-14) to Spirit per Socket filled", statOrder = { 7832 }, level = 1, group = "SpiritPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163415912] = { "+(10-14) to Spirit per Socket filled" }, } }, - ["UniqueMaximumLifePerSocketable1"] = { affix = "", "5% increased Maximum Life per Socket filled", statOrder = { 7804 }, level = 1, group = "MaximumLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2702182380] = { "5% increased Maximum Life per Socket filled" }, } }, - ["UniqueMaximumManaPerSocketable1"] = { affix = "", "5% increased Maximum Mana per Socket filled", statOrder = { 7806 }, level = 1, group = "MaximumManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [911712882] = { "5% increased Maximum Mana per Socket filled" }, } }, - ["UniqueGlobalDefencesPerSocketable1"] = { affix = "", "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled", statOrder = { 7708 }, level = 1, group = "GlobalDefencesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [933768533] = { "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled" }, } }, - ["UniqueItemRarityPerSocketable1"] = { affix = "", "10% increased Rarity of Items found per Socket filled", statOrder = { 7746 }, level = 1, group = "ItemRarityPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [313223231] = { "10% increased Rarity of Items found per Socket filled" }, } }, - ["UniqueAllResistancesPerSocketable1"] = { affix = "", "+(8-10)% to all Elemental Resistances per Socket filled", statOrder = { 7820 }, level = 1, group = "AllResistancesPerSocketable", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2593651571] = { "+(8-10)% to all Elemental Resistances per Socket filled" }, } }, - ["UniquePercentAllAttributesPerSocketable1"] = { affix = "", "5% increased Attributes per Socket filled", statOrder = { 7607 }, level = 1, group = "PercentAllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2513318031] = { "5% increased Attributes per Socket filled" }, } }, - ["UniqueBaseLifePerSocketable1"] = { affix = "", "+(45-60) to maximum Life per Socket filled", statOrder = { 7632 }, level = 1, group = "BaseLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [150391334] = { "+(45-60) to maximum Life per Socket filled" }, } }, - ["UniqueBaseManaPerSocketable1"] = { affix = "", "+(50-60) to maximum Mana per Socket filled", statOrder = { 7633 }, level = 1, group = "BaseManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1036267537] = { "+(50-60) to maximum Mana per Socket filled" }, } }, - ["UniqueChaosResistancePerSocketable1"] = { affix = "", "+(10-13)% to Chaos Resistance per Socket filled", statOrder = { 7630 }, level = 1, group = "ChaosResistancePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1123023256] = { "+(10-13)% to Chaos Resistance per Socket filled" }, } }, - ["UniqueAllAttributesPerSocketable1"] = { affix = "", "+(5-7) to all Attributes per Socket filled", statOrder = { 7605 }, level = 1, group = "AllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3474271079] = { "+(5-7) to all Attributes per Socket filled" }, } }, - ["UniqueStunThresholdPerSocketable1"] = { affix = "", "+(70-90) to Stun Threshold per Socket filled", statOrder = { 7834 }, level = 1, group = "StunThresholdPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679769182] = { "+(70-90) to Stun Threshold per Socket filled" }, } }, - ["UniqueLifeRegenerationPerSocketable1"] = { affix = "", "(8-12) Life Regeneration per second per Socket filled", statOrder = { 7631 }, level = 1, group = "LifeRegenerationPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [332337290] = { "(8-12) Life Regeneration per second per Socket filled" }, } }, - ["UniqueReducedExtraDamageFromCritsPerSocketable1"] = { affix = "", "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled", statOrder = { 7634 }, level = 1, group = "ReducedExtraDamageFromCritsPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [701923421] = { "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled" }, } }, - ["UniqueMaximumLightningDamagePerPower1"] = { affix = "", "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500", statOrder = { 7800, 7800.1 }, level = 1, group = "MaximumLightningDamagePerPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3538915253] = { "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500" }, } }, - ["UniqueSupportGemLimit1"] = { affix = "", "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills", statOrder = { 7580 }, level = 1, group = "SupportGemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [664024640] = { "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills" }, } }, - ["UniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5906 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4238331303] = { "Immobilise enemies at 50% buildup instead of 100%" }, } }, - ["UniqueImmobiliseDamageTaken1"] = { affix = "", "Enemies Immobilised by you take 20% more Damage", statOrder = { 10395 }, level = 1, group = "ImmobiliseDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1613322341] = { "Enemies Immobilised by you take 20% more Damage" }, } }, - ["UniqueImmobiliseIncreasedDamageTaken1"] = { affix = "", "(30-50)% increased Damage against Immobilised Enemies", statOrder = { 5959 }, level = 1, group = "ImmobiliseIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3120508478] = { "(30-50)% increased Damage against Immobilised Enemies" }, } }, - ["UniqueDodgeRollAvoidAllDamage1"] = { affix = "", "Dodge Roll avoids all Hits", statOrder = { 6201 }, level = 1, group = "DodgeRollAvoidAllDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3518087336] = { "Dodge Roll avoids all Hits" }, } }, - ["UniqueSpeedPerDodgeRoll20Seconds1"] = { affix = "", "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", statOrder = { 10419 }, level = 1, group = "SpeedPerDodgeRoll20Seconds", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3156445245] = { "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds" }, } }, - ["UniqueNearbyAlliesDamageAsFire1"] = { affix = "", "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage", statOrder = { 4285 }, level = 69, group = "NearbyAlliesDamageAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [2173791158] = { "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage" }, } }, - ["UniqueNearbyAlliesPercentLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second", statOrder = { 922 }, level = 69, group = "NearbyAlliesPercentLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "aura" }, tradeHashes = { [3081479811] = { "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second" }, } }, - ["UniqueEnemiesInPresenceLowestResistance1"] = { affix = "", "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", statOrder = { 6359 }, level = 69, group = "EnemiesInPresenceLowestResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "aura" }, tradeHashes = { [2786852525] = { "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance" }, } }, - ["UniqueEnemiesInPresenceIntimidate1"] = { affix = "", "Enemies in your Presence are Intimidated", statOrder = { 6356 }, level = 1, group = "EnemiesInPresenceIntimidate", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3491722585] = { "Enemies in your Presence are Intimidated" }, } }, + ["UniqueCharmsNoCharges1"] = { affix = "", "Charms use no Charges", statOrder = { 5631 }, level = 1, group = "CharmsNoCharges", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2620375641] = { "Charms use no Charges" }, } }, + ["UniqueAggravateBleedOnPresence1"] = { affix = "", "Aggravate Bleeding on Enemies when they Enter your Presence", statOrder = { 4239 }, level = 1, group = "AggravateBleedOnPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [874646180] = { "Aggravate Bleeding on Enemies when they Enter your Presence" }, } }, + ["UniqueThornsDamageIncrease1"] = { affix = "", "100% increased Thorns damage", statOrder = { 10245 }, level = 1, group = "ThornsDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "100% increased Thorns damage" }, } }, + ["UniqueLifeCost1"] = { affix = "", "Skill Mana Costs Converted to Life Costs", statOrder = { 4740 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "Skill Mana Costs Converted to Life Costs" }, } }, + ["UniqueLifeCost2"] = { affix = "", "10% of Skill Mana Costs Converted to Life Costs", statOrder = { 4740 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "10% of Skill Mana Costs Converted to Life Costs" }, } }, + ["UniqueDamageGainedAsChaosPerCost1"] = { affix = "", "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost", statOrder = { 9224 }, level = 1, group = "DamageGainedAsChaosPerCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4117005593] = { "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost" }, } }, + ["UniqueSpiritPerSocketable1"] = { affix = "", "+(10-14) to Spirit per Socket filled", statOrder = { 7828 }, level = 1, group = "SpiritPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163415912] = { "+(10-14) to Spirit per Socket filled" }, } }, + ["UniqueMaximumLifePerSocketable1"] = { affix = "", "5% increased Maximum Life per Socket filled", statOrder = { 7800 }, level = 1, group = "MaximumLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2702182380] = { "5% increased Maximum Life per Socket filled" }, } }, + ["UniqueMaximumManaPerSocketable1"] = { affix = "", "5% increased Maximum Mana per Socket filled", statOrder = { 7802 }, level = 1, group = "MaximumManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [911712882] = { "5% increased Maximum Mana per Socket filled" }, } }, + ["UniqueGlobalDefencesPerSocketable1"] = { affix = "", "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled", statOrder = { 7704 }, level = 1, group = "GlobalDefencesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [933768533] = { "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled" }, } }, + ["UniqueItemRarityPerSocketable1"] = { affix = "", "10% increased Rarity of Items found per Socket filled", statOrder = { 7742 }, level = 1, group = "ItemRarityPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [313223231] = { "10% increased Rarity of Items found per Socket filled" }, } }, + ["UniqueAllResistancesPerSocketable1"] = { affix = "", "+(8-10)% to all Elemental Resistances per Socket filled", statOrder = { 7816 }, level = 1, group = "AllResistancesPerSocketable", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2593651571] = { "+(8-10)% to all Elemental Resistances per Socket filled" }, } }, + ["UniquePercentAllAttributesPerSocketable1"] = { affix = "", "5% increased Attributes per Socket filled", statOrder = { 7603 }, level = 1, group = "PercentAllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2513318031] = { "5% increased Attributes per Socket filled" }, } }, + ["UniqueBaseLifePerSocketable1"] = { affix = "", "+(45-60) to maximum Life per Socket filled", statOrder = { 7628 }, level = 1, group = "BaseLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [150391334] = { "+(45-60) to maximum Life per Socket filled" }, } }, + ["UniqueBaseManaPerSocketable1"] = { affix = "", "+(50-60) to maximum Mana per Socket filled", statOrder = { 7629 }, level = 1, group = "BaseManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1036267537] = { "+(50-60) to maximum Mana per Socket filled" }, } }, + ["UniqueChaosResistancePerSocketable1"] = { affix = "", "+(10-13)% to Chaos Resistance per Socket filled", statOrder = { 7626 }, level = 1, group = "ChaosResistancePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1123023256] = { "+(10-13)% to Chaos Resistance per Socket filled" }, } }, + ["UniqueAllAttributesPerSocketable1"] = { affix = "", "+(5-7) to all Attributes per Socket filled", statOrder = { 7601 }, level = 1, group = "AllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3474271079] = { "+(5-7) to all Attributes per Socket filled" }, } }, + ["UniqueStunThresholdPerSocketable1"] = { affix = "", "+(70-90) to Stun Threshold per Socket filled", statOrder = { 7830 }, level = 1, group = "StunThresholdPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679769182] = { "+(70-90) to Stun Threshold per Socket filled" }, } }, + ["UniqueLifeRegenerationPerSocketable1"] = { affix = "", "(8-12) Life Regeneration per second per Socket filled", statOrder = { 7627 }, level = 1, group = "LifeRegenerationPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [332337290] = { "(8-12) Life Regeneration per second per Socket filled" }, } }, + ["UniqueReducedExtraDamageFromCritsPerSocketable1"] = { affix = "", "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled", statOrder = { 7630 }, level = 1, group = "ReducedExtraDamageFromCritsPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [701923421] = { "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled" }, } }, + ["UniqueMaximumLightningDamagePerPower1"] = { affix = "", "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500", statOrder = { 7796, 7796.1 }, level = 1, group = "MaximumLightningDamagePerPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3538915253] = { "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500" }, } }, + ["UniqueSupportGemLimit1"] = { affix = "", "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills", statOrder = { 7576 }, level = 1, group = "SupportGemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [664024640] = { "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills" }, } }, + ["UniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5902 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4238331303] = { "Immobilise enemies at 50% buildup instead of 100%" }, } }, + ["UniqueImmobiliseDamageTaken1"] = { affix = "", "Enemies Immobilised by you take 20% more Damage", statOrder = { 10386 }, level = 1, group = "ImmobiliseDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1613322341] = { "Enemies Immobilised by you take 20% more Damage" }, } }, + ["UniqueImmobiliseIncreasedDamageTaken1"] = { affix = "", "(30-50)% increased Damage against Immobilised Enemies", statOrder = { 5955 }, level = 1, group = "ImmobiliseIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3120508478] = { "(30-50)% increased Damage against Immobilised Enemies" }, } }, + ["UniqueDodgeRollAvoidAllDamage1"] = { affix = "", "Dodge Roll avoids all Hits", statOrder = { 6197 }, level = 1, group = "DodgeRollAvoidAllDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3518087336] = { "Dodge Roll avoids all Hits" }, } }, + ["UniqueSpeedPerDodgeRoll20Seconds1"] = { affix = "", "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", statOrder = { 10409 }, level = 1, group = "SpeedPerDodgeRoll20Seconds", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3156445245] = { "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds" }, } }, + ["UniqueNearbyAlliesDamageAsFire1"] = { affix = "", "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage", statOrder = { 4282 }, level = 1, group = "NearbyAlliesDamageAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [2173791158] = { "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage" }, } }, + ["UniqueNearbyAlliesPercentLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second", statOrder = { 922 }, level = 1, group = "NearbyAlliesPercentLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "aura" }, tradeHashes = { [3081479811] = { "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second" }, } }, + ["UniqueEnemiesInPresenceLowestResistance1"] = { affix = "", "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", statOrder = { 6355 }, level = 1, group = "EnemiesInPresenceLowestResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "aura" }, tradeHashes = { [2786852525] = { "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance" }, } }, + ["UniqueEnemiesInPresenceIntimidate1"] = { affix = "", "Enemies in your Presence are Intimidated", statOrder = { 6352 }, level = 1, group = "EnemiesInPresenceIntimidate", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3491722585] = { "Enemies in your Presence are Intimidated" }, } }, ["UniquePhysicalDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Physical Damage from Hits", statOrder = { 3075 }, level = 1, group = "PhysicalDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2415497478] = { "(10-30)% chance to Avoid Physical Damage from Hits" }, } }, ["UniqueChaosDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Chaos Damage from Hits", statOrder = { 3080 }, level = 1, group = "ChaosDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1563503803] = { "(10-30)% chance to Avoid Chaos Damage from Hits" }, } }, ["UniqueFireDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Fire Damage from Hits", statOrder = { 3077 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(10-30)% chance to Avoid Fire Damage from Hits" }, } }, ["UniqueColdDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Cold Damage from Hits", statOrder = { 3078 }, level = 1, group = "ColdDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(10-30)% chance to Avoid Cold Damage from Hits" }, } }, ["UniqueLightningDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Lightning Damage from Hits", statOrder = { 3079 }, level = 1, group = "LightningDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(10-30)% chance to Avoid Lightning Damage from Hits" }, } }, - ["UniquePerfectTimingWindow1"] = { affix = "", "Skills have a (100-150)% longer Perfect Timing window", statOrder = { 9424 }, level = 1, group = "PerfectTimingWindow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1373370443] = { "Skills have a (100-150)% longer Perfect Timing window" }, } }, - ["UniqueFlaskRecoverAllMana1"] = { affix = "", "Recover all Mana when Used", statOrder = { 7844 }, level = 1, group = "FlaskRecoverAllMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1002973905] = { "Recover all Mana when Used" }, } }, - ["UniqueFlaskDealChaosDamageNova1"] = { affix = "", "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", statOrder = { 7843 }, level = 1, group = "FlaskDealChaosDamageNova", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos" }, tradeHashes = { [1910039112] = { "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres" }, } }, - ["UniqueFlaskTakeDamageWhenEnds1"] = { affix = "", "Deals 25% of current Mana as Chaos Damage to you when Effect ends", statOrder = { 7845 }, level = 1, group = "FlaskTakeDamageWhenEnds", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3311259821] = { "Deals 25% of current Mana as Chaos Damage to you when Effect ends" }, } }, + ["UniquePerfectTimingWindow1"] = { affix = "", "Skills have a (100-150)% longer Perfect Timing window", statOrder = { 9415 }, level = 1, group = "PerfectTimingWindow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1373370443] = { "Skills have a (100-150)% longer Perfect Timing window" }, } }, + ["UniqueFlaskRecoverAllMana1"] = { affix = "", "Recover all Mana when Used", statOrder = { 7840 }, level = 1, group = "FlaskRecoverAllMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1002973905] = { "Recover all Mana when Used" }, } }, + ["UniqueFlaskDealChaosDamageNova1"] = { affix = "", "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", statOrder = { 7839 }, level = 1, group = "FlaskDealChaosDamageNova", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos" }, tradeHashes = { [1910039112] = { "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres" }, } }, + ["UniqueFlaskTakeDamageWhenEnds1"] = { affix = "", "Deals 25% of current Mana as Chaos Damage to you when Effect ends", statOrder = { 7841 }, level = 1, group = "FlaskTakeDamageWhenEnds", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3311259821] = { "Deals 25% of current Mana as Chaos Damage to you when Effect ends" }, } }, ["UniqueFlaskEffectNotRemovedOnFullMana1"] = { affix = "", "Effect is not removed when Unreserved Mana is Filled", "(200-250)% increased Duration", statOrder = { 639, 932 }, level = 1, group = "FlaskEffectNotRemovedOnFullMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1256719186] = { "(200-250)% increased Duration" }, [3969608626] = { "Effect is not removed when Unreserved Mana is Filled" }, } }, - ["UniqueTriggersRefundEnergySpent1"] = { affix = "", "Trigger skills refund half of Energy spent", statOrder = { 10320 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [599320227] = { "Trigger skills refund half of Energy spent" }, } }, - ["UniqueIncreasedRingBonuses1"] = { affix = "", "(40-80)% increased bonuses gained from Equipped Rings", statOrder = { 6471 }, level = 1, group = "IncreasedRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2793222406] = { "(40-80)% increased bonuses gained from Equipped Rings" }, } }, - ["UniqueIncreasedLeftRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from left Equipped Ring", statOrder = { 6469 }, level = 1, group = "IncreasedLeftRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [513747733] = { "(20-30)% increased bonuses gained from left Equipped Ring" }, } }, - ["UniqueIncreasedRightRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from right Equipped Ring", statOrder = { 6470 }, level = 1, group = "IncreasedRightRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3885501357] = { "(20-30)% increased bonuses gained from right Equipped Ring" }, } }, - ["UniqueEnemiesInPresenceFireExposure1"] = { affix = "", "Enemies in your Presence have -25% to Fire Resistance", statOrder = { 6363 }, level = 66, group = "EnemiesInPresenceElementalExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [990363519] = { "Enemies in your Presence have -25% to Fire Resistance" }, } }, - ["UniqueCriticalStrikesIgnoreLightningResistance1"] = { affix = "", "Critical Hits Ignore Enemy Monster Lightning Resistance", statOrder = { 5899 }, level = 69, group = "CriticalStrikesIgnoreLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "critical" }, tradeHashes = { [1289045485] = { "Critical Hits Ignore Enemy Monster Lightning Resistance" }, } }, + ["UniqueTriggersRefundEnergySpent1"] = { affix = "", "Trigger skills refund half of Energy spent", statOrder = { 10311 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [599320227] = { "Trigger skills refund half of Energy spent" }, } }, + ["UniqueIncreasedRingBonuses1"] = { affix = "", "(40-80)% increased bonuses gained from Equipped Rings", statOrder = { 6467 }, level = 1, group = "IncreasedRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2793222406] = { "(40-80)% increased bonuses gained from Equipped Rings" }, } }, + ["UniqueIncreasedLeftRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from left Equipped Ring", statOrder = { 6465 }, level = 1, group = "IncreasedLeftRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [513747733] = { "(20-30)% increased bonuses gained from left Equipped Ring" }, } }, + ["UniqueIncreasedRightRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from right Equipped Ring", statOrder = { 6466 }, level = 1, group = "IncreasedRightRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3885501357] = { "(20-30)% increased bonuses gained from right Equipped Ring" }, } }, + ["UniqueEnemiesInPresenceFireExposure1"] = { affix = "", "Enemies in your Presence have -25% to Fire Resistance", statOrder = { 6359 }, level = 66, group = "EnemiesInPresenceElementalExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [990363519] = { "Enemies in your Presence have -25% to Fire Resistance" }, } }, + ["UniqueCriticalStrikesIgnoreLightningResistance1"] = { affix = "", "Critical Hits Ignore Enemy Monster Lightning Resistance", statOrder = { 5895 }, level = 66, group = "CriticalStrikesIgnoreLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "critical" }, tradeHashes = { [1289045485] = { "Critical Hits Ignore Enemy Monster Lightning Resistance" }, } }, ["UniqueColdResistancePenetration1"] = { affix = "", "Damage Penetrates 75% Cold Resistance", statOrder = { 2725 }, level = 66, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 75% Cold Resistance" }, } }, - ["UniqueOnHitBlindChilledEnemies1"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4925 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled enemies on Hit" }, } }, - ["UniqueArmourOvercappedFireResistance1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4419 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [713266390] = { "Armour is increased by Uncapped Fire Resistance" }, } }, - ["UniqueEvasionOvercappedLightningResistance1"] = { affix = "", "Evasion Rating is increased by Uncapped Lightning Resistance", statOrder = { 6499 }, level = 1, group = "EvasionUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [419098854] = { "Evasion Rating is increased by Uncapped Lightning Resistance" }, } }, - ["UniqueEnergyShieldOvercappedColdResistance1"] = { affix = "", "Energy Shield is increased by Uncapped Cold Resistance", statOrder = { 6431 }, level = 1, group = "EnergyShieldUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2147773348] = { "Energy Shield is increased by Uncapped Cold Resistance" }, } }, - ["UniqueAilmentThresholdOvercappedChaosResistance1"] = { affix = "", "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", statOrder = { 4263 }, level = 1, group = "AilmentThresholdUncappedChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1000566389] = { "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance" }, } }, + ["UniqueOnHitBlindChilledEnemies1"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4921 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled enemies on Hit" }, } }, + ["UniqueArmourOvercappedFireResistance1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4416 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [713266390] = { "Armour is increased by Uncapped Fire Resistance" }, } }, + ["UniqueEvasionOvercappedLightningResistance1"] = { affix = "", "Evasion Rating is increased by Uncapped Lightning Resistance", statOrder = { 6495 }, level = 1, group = "EvasionUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [419098854] = { "Evasion Rating is increased by Uncapped Lightning Resistance" }, } }, + ["UniqueEnergyShieldOvercappedColdResistance1"] = { affix = "", "Energy Shield is increased by Uncapped Cold Resistance", statOrder = { 6427 }, level = 1, group = "EnergyShieldUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2147773348] = { "Energy Shield is increased by Uncapped Cold Resistance" }, } }, + ["UniqueAilmentThresholdOvercappedChaosResistance1"] = { affix = "", "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", statOrder = { 4260 }, level = 1, group = "AilmentThresholdUncappedChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1000566389] = { "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance" }, } }, ["UniqueChaosDamageCanFreeze1"] = { affix = "", "Chaos Damage from Hits also Contributes to Freeze Buildup", statOrder = { 2622 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Chaos Damage from Hits also Contributes to Freeze Buildup" }, } }, - ["UniqueChaosDamageCanElectrocute1"] = { affix = "", "Chaos Damage from Hits also Contributes to Electrocute Buildup", statOrder = { 4673 }, level = 1, group = "ChaosDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2315177528] = { "Chaos Damage from Hits also Contributes to Electrocute Buildup" }, } }, - ["UniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence", statOrder = { 8973 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3111921451] = { "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence" }, } }, + ["UniqueChaosDamageCanElectrocute1"] = { affix = "", "Chaos Damage from Hits also Contributes to Electrocute Buildup", statOrder = { 4670 }, level = 1, group = "ChaosDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2315177528] = { "Chaos Damage from Hits also Contributes to Electrocute Buildup" }, } }, + ["UniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence", statOrder = { 8964 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3111921451] = { "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence" }, } }, ["UniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2324 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [720908147] = { "1% increased Attack Speed per 20 Dexterity" }, } }, - ["UniqueMinionResistanceEqualYours1"] = { affix = "", "Minions' Resistances are equal to yours", statOrder = { 9082 }, level = 1, group = "MinionResistanceEqualYours", weightKey = { }, weightVal = { }, modTags = { "minion_resistance", "resistance", "minion" }, tradeHashes = { [3045072899] = { "Minions' Resistances are equal to yours" }, } }, + ["UniqueMinionResistanceEqualYours1"] = { affix = "", "Minions' Resistances are equal to yours", statOrder = { 9073 }, level = 1, group = "MinionResistanceEqualYours", weightKey = { }, weightVal = { }, modTags = { "minion_resistance", "resistance", "minion" }, tradeHashes = { [3045072899] = { "Minions' Resistances are equal to yours" }, } }, ["UniqueSelfBleedFireDamage1"] = { affix = "", "You take Fire Damage instead of Physical Damage from Bleeding", statOrder = { 2238 }, level = 1, group = "SelfBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2022332470] = { "You take Fire Damage instead of Physical Damage from Bleeding" }, } }, - ["UniqueInflictBleedFireDamage1"] = { affix = "", "Bleeding you inflict deals Fire Damage instead of Physical Damage", statOrder = { 4807 }, level = 1, group = "InflictBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1016759424] = { "Bleeding you inflict deals Fire Damage instead of Physical Damage" }, } }, + ["UniqueInflictBleedFireDamage1"] = { affix = "", "Bleeding you inflict deals Fire Damage instead of Physical Damage", statOrder = { 4803 }, level = 1, group = "InflictBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1016759424] = { "Bleeding you inflict deals Fire Damage instead of Physical Damage" }, } }, ["UniqueFireDamageAlsoContributesToBleed1"] = { affix = "", "Fire Damage also Contributes to Bleeding Magnitude", statOrder = { 2633 }, level = 1, group = "FireDamageAlsoContributesToBleed", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1221641885] = { "Fire Damage also Contributes to Bleeding Magnitude" }, } }, - ["UniqueEnemyExtraDamageRollsWithLightningDamage1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 6345 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Unlucky" }, } }, - ["UniqueEnemyExtraDamageRollsWithPhysicalDamage1"] = { affix = "", "Physical Damage of Enemies Hitting you is Unlucky", statOrder = { 6347 }, level = 1, group = "EnemyExtraDamageRollsWithPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2424163939] = { "Physical Damage of Enemies Hitting you is Unlucky" }, } }, + ["UniqueEnemyExtraDamageRollsWithLightningDamage1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 6341 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Unlucky" }, } }, + ["UniqueEnemyExtraDamageRollsWithPhysicalDamage1"] = { affix = "", "Physical Damage of Enemies Hitting you is Unlucky", statOrder = { 6343 }, level = 1, group = "EnemyExtraDamageRollsWithPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2424163939] = { "Physical Damage of Enemies Hitting you is Unlucky" }, } }, ["UniqueCurseCastSpeed1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1944 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (10-20)% increased Cast Speed" }, } }, - ["UniqueGlobalAdditionalCharm1"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 9316 }, level = 1, group = "GlobalAdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [554899692] = { "+(1-2) Charm Slot" }, } }, + ["UniqueGlobalAdditionalCharm1"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 9307 }, level = 1, group = "GlobalAdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [554899692] = { "+(1-2) Charm Slot" }, } }, ["UniqueMinionChaosResistance1"] = { affix = "", "Minions have +(17-23)% to Chaos Resistance", statOrder = { 2668 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(17-23)% to Chaos Resistance" }, } }, ["UniqueEnemyExtraDamageRollsOnLowLife1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2338 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3753748365] = { "Damage of Enemies Hitting you is Unlucky while you are on Low Life" }, } }, - ["UniqueAilmentThreshold1"] = { affix = "", "+(30-50) to Ailment Threshold", statOrder = { 4264 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1488650448] = { "+(30-50) to Ailment Threshold" }, } }, - ["UniqueAilmentThreshold2"] = { affix = "", "+(200-300) to Ailment Threshold", statOrder = { 4264 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1488650448] = { "+(200-300) to Ailment Threshold" }, } }, - ["UniqueEnemiesTakeIncreasedDamagePerAilmentType1"] = { affix = "", "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6260, 6260.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, - ["UniqueElementalAilmentDuration1"] = { affix = "", "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7266 }, level = 1, group = "ElementalAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1062710370] = { "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies" }, } }, - ["UniqueManaFlaskRevivesMinions1"] = { affix = "", "Using a Mana Flask revives one of your Persistent Minions", statOrder = { 10425 }, level = 1, group = "ManaFlaskRevivesMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [932661147] = { "Using a Mana Flask revives one of your Persistent Minions" }, } }, - ["UniqueEnemyAccuracyDistanceFalloff1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 6407 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868746097] = { "Enemies have an Accuracy Penalty against you based on Distance" }, } }, - ["UniqueMaximumEvadeChanceOverride1"] = { affix = "", "Maximum Chance to Evade is 50%", statOrder = { 8848 }, level = 1, group = "MaximumEvadeChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1500744699] = { "Maximum Chance to Evade is 50%" }, } }, - ["UniqueDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour", statOrder = { 6211 }, level = 1, group = "DoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3387008487] = { "Defend with 200% of Armour" }, } }, - ["UniqueMaximumPhysicalReductionOverride1"] = { affix = "", "Maximum Physical Damage Reduction is 50%", statOrder = { 8899 }, level = 1, group = "MaximumPhysicalReductionOverride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3960211755] = { "Maximum Physical Damage Reduction is 50%" }, } }, - ["UniqueRaiseShieldApplyExposure1"] = { affix = "", "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised", statOrder = { 10426, 10426.1 }, level = 1, group = "RaiseShieldApplyExposure", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [223138829] = { "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised" }, } }, - ["UniqueRaiseShieldAncientsChallenge1"] = { affix = "", "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds", "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", statOrder = { 10567, 10568 }, level = 1, group = "AncientsChallengeOnShieldRaise", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [774222208] = { "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds" }, [343703314] = { "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill" }, } }, - ["UniqueAncientsChallengeOnOffHandDamage1"] = { affix = "", "Off-hand Hits inflict Runefather's Challenge", statOrder = { 10566 }, level = 1, group = "AncientsChallengeOnOffHandDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3430033313] = { "Off-hand Hits inflict Runefather's Challenge" }, } }, - ["UniqueAttacksDealPercentIncreasedDamagePerTargetPower1UNUSED"] = { affix = "", "(3-5)% increased Attack damage per Power of target", statOrder = { 4513 }, level = 1, group = "IncreasedAttackDamagePerTargetPower", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [954571961] = { "(3-5)% increased Attack damage per Power of target" }, } }, - ["UniqueLifeManaFlaskAnySlot1"] = { affix = "", "Life and Mana Flasks can be equipped in either slot", statOrder = { 7431 }, level = 1, group = "LifeManaFlaskAnySlot", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [932866937] = { "Life and Mana Flasks can be equipped in either slot" }, } }, + ["UniqueAilmentThreshold1"] = { affix = "", "+(30-50) to Ailment Threshold", statOrder = { 4261 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1488650448] = { "+(30-50) to Ailment Threshold" }, } }, + ["UniqueAilmentThreshold2"] = { affix = "", "+(200-300) to Ailment Threshold", statOrder = { 4261 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1488650448] = { "+(200-300) to Ailment Threshold" }, } }, + ["UniqueEnemiesTakeIncreasedDamagePerAilmentType1"] = { affix = "", "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6256, 6256.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, + ["UniqueElementalAilmentDuration1"] = { affix = "", "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7262 }, level = 1, group = "ElementalAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1062710370] = { "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies" }, } }, + ["UniqueManaFlaskRevivesMinions1"] = { affix = "", "Using a Mana Flask revives one of your Persistent Minions", statOrder = { 10415 }, level = 1, group = "ManaFlaskRevivesMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [932661147] = { "Using a Mana Flask revives one of your Persistent Minions" }, } }, + ["UniqueEnemyAccuracyDistanceFalloff1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 6403 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868746097] = { "Enemies have an Accuracy Penalty against you based on Distance" }, } }, + ["UniqueMaximumEvadeChanceOverride1"] = { affix = "", "Maximum Chance to Evade is 50%", statOrder = { 8839 }, level = 1, group = "MaximumEvadeChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1500744699] = { "Maximum Chance to Evade is 50%" }, } }, + ["UniqueDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour", statOrder = { 6207 }, level = 1, group = "DoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3387008487] = { "Defend with 200% of Armour" }, } }, + ["UniqueMaximumPhysicalReductionOverride1"] = { affix = "", "Maximum Physical Damage Reduction is 50%", statOrder = { 8890 }, level = 1, group = "MaximumPhysicalReductionOverride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3960211755] = { "Maximum Physical Damage Reduction is 50%" }, } }, + ["UniqueRaiseShieldApplyExposure1"] = { affix = "", "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised", statOrder = { 10416, 10416.1 }, level = 1, group = "RaiseShieldApplyExposure", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [223138829] = { "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised" }, } }, + ["UniqueRaiseShieldAncientsChallenge1"] = { affix = "", "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds", "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", statOrder = { 10557, 10558 }, level = 1, group = "AncientsChallengeOnShieldRaise", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [774222208] = { "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds" }, [343703314] = { "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill" }, } }, + ["UniqueAncientsChallengeOnOffHandDamage1"] = { affix = "", "Off-hand Hits inflict Runefather's Challenge", statOrder = { 10556 }, level = 1, group = "AncientsChallengeOnOffHandDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3430033313] = { "Off-hand Hits inflict Runefather's Challenge" }, } }, + ["UniqueAttacksDealPercentIncreasedDamagePerTargetPower1UNUSED"] = { affix = "", "(3-5)% increased Attack damage per Power of target", statOrder = { 4510 }, level = 1, group = "IncreasedAttackDamagePerTargetPower", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [954571961] = { "(3-5)% increased Attack damage per Power of target" }, } }, + ["UniqueLifeManaFlaskAnySlot1"] = { affix = "", "Life and Mana Flasks can be equipped in either slot", statOrder = { 7427 }, level = 1, group = "LifeManaFlaskAnySlot", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [932866937] = { "Life and Mana Flasks can be equipped in either slot" }, } }, ["UniqueElementalDamageTakenAsPhysical1"] = { affix = "", "(20-30)% of Elemental damage from Hits taken as Physical damage", statOrder = { 2214 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHashes = { [2340750293] = { "(20-30)% of Elemental damage from Hits taken as Physical damage" }, } }, - ["UniqueElementalDamageFromBlockedHits1"] = { affix = "", "You take 100% of Elemental damage from Blocked Hits", statOrder = { 4942 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block", "elemental" }, tradeHashes = { [2393355605] = { "You take 100% of Elemental damage from Blocked Hits" }, } }, + ["UniqueElementalDamageFromBlockedHits1"] = { affix = "", "You take 100% of Elemental damage from Blocked Hits", statOrder = { 4938 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block", "elemental" }, tradeHashes = { [2393355605] = { "You take 100% of Elemental damage from Blocked Hits" }, } }, ["UniqueDisableChestSlot1"] = { affix = "", "Can't use Body Armour", statOrder = { 2364 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4007482102] = { "Can't use Body Armour" }, } }, - ["UniqueUseTwoHandedWeaponOneHand1"] = { affix = "", "You can wield Two-Handed Axes, Maces and Swords in one hand", statOrder = { 5253 }, level = 1, group = "UseTwoHandedWeaponOneHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635316831] = { "You can wield Two-Handed Axes, Maces and Swords in one hand" }, } }, + ["UniqueUseTwoHandedWeaponOneHand1"] = { affix = "", "You can wield Two-Handed Axes, Maces and Swords in one hand", statOrder = { 5249 }, level = 1, group = "UseTwoHandedWeaponOneHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635316831] = { "You can wield Two-Handed Axes, Maces and Swords in one hand" }, } }, ["UniqueKilledMonsterItemRarityOnCrit1"] = { affix = "", "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2416 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [21824003] = { "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit" }, } }, - ["UniqueConsecratedGroundStationaryRing1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6895 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1736538865] = { "You have Consecrated Ground around you while stationary" }, } }, - ["UniqueAlliesInPresenceGainedAsChaos1"] = { affix = "", "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage", statOrder = { 4288 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueEnemiesInPresenceGainedAsChaos1"] = { affix = "", "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage", statOrder = { 6367 }, level = 1, group = "EnemiesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1224838456] = { "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueEnemiesInPresenceReservesLife1"] = { affix = "", "Enemies in your Presence have at least 10% of Life Reserved", statOrder = { 10391 }, level = 1, group = "EnemiesInPresenceReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1953536251] = { "Enemies in your Presence have at least 10% of Life Reserved" }, } }, - ["UniqueEnemiesInPresenceLowLife1"] = { affix = "", "Enemies in your Presence count as being on Low Life", statOrder = { 6358 }, level = 1, group = "EnemiesInPresenceLowLife", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1285684287] = { "Enemies in your Presence count as being on Low Life" }, } }, - ["UniqueEnemiesInPresenceMonsterPower1"] = { affix = "", "Enemies in your Presence count as having double Power", statOrder = { 10423 }, level = 1, group = "EnemiesInPresenceMonsterPower", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2836928993] = { "Enemies in your Presence count as having double Power" }, } }, - ["UniqueEnemiesInPresenceNoElementalResist1"] = { affix = "", "Enemies in your Presence have no Elemental Resistances", statOrder = { 6364 }, level = 1, group = "EnemiesInPresenceNoElementalResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance", "aura" }, tradeHashes = { [83011992] = { "Enemies in your Presence have no Elemental Resistances" }, } }, - ["UniqueHeraldDamage1"] = { affix = "", "Herald Skills deal (50-100)% increased Damage", statOrder = { 6028 }, level = 1, group = "HeraldDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [21071013] = { "Herald Skills deal (50-100)% increased Damage" }, } }, - ["UniqueGainManaAsExtraArmour1"] = { affix = "", "Gain (30-50)% of Maximum Mana as Armour", statOrder = { 7968 }, level = 1, group = "GainManaAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mana" }, tradeHashes = { [514290151] = { "Gain (30-50)% of Maximum Mana as Armour" }, } }, - ["UniqueManaRegenAppliesToRecharge1"] = { affix = "", "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate", statOrder = { 4234, 4234.1 }, level = 1, group = "ManaRegenAppliesToRecharge", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mana" }, tradeHashes = { [3407300125] = { "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate" }, } }, - ["UniqueDefendWithArmourPerEnergyShield1"] = { affix = "", "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield", statOrder = { 4424 }, level = 1, group = "DefendWithArmourPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [679087890] = { "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield" }, } }, - ["UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield1"] = { affix = "", "Defend with (150-200)% of Armour while you have Energy Shield", statOrder = { 6112 }, level = 1, group = "UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1539671749] = { "Defend with (150-200)% of Armour while you have Energy Shield" }, } }, + ["UniqueConsecratedGroundStationaryRing1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6891 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1736538865] = { "You have Consecrated Ground around you while stationary" }, } }, + ["UniqueAlliesInPresenceGainedAsChaos1"] = { affix = "", "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage", statOrder = { 4285 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueEnemiesInPresenceGainedAsChaos1"] = { affix = "", "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage", statOrder = { 6363 }, level = 1, group = "EnemiesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1224838456] = { "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueEnemiesInPresenceReservesLife1"] = { affix = "", "Enemies in your Presence have at least 10% of Life Reserved", statOrder = { 10382 }, level = 1, group = "EnemiesInPresenceReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1953536251] = { "Enemies in your Presence have at least 10% of Life Reserved" }, } }, + ["UniqueEnemiesInPresenceLowLife1"] = { affix = "", "Enemies in your Presence count as being on Low Life", statOrder = { 6354 }, level = 1, group = "EnemiesInPresenceLowLife", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1285684287] = { "Enemies in your Presence count as being on Low Life" }, } }, + ["UniqueEnemiesInPresenceMonsterPower1"] = { affix = "", "Enemies in your Presence count as having double Power", statOrder = { 10413 }, level = 1, group = "EnemiesInPresenceMonsterPower", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2836928993] = { "Enemies in your Presence count as having double Power" }, } }, + ["UniqueEnemiesInPresenceNoElementalResist1"] = { affix = "", "Enemies in your Presence have no Elemental Resistances", statOrder = { 6360 }, level = 1, group = "EnemiesInPresenceNoElementalResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance", "aura" }, tradeHashes = { [83011992] = { "Enemies in your Presence have no Elemental Resistances" }, } }, + ["UniqueHeraldDamage1"] = { affix = "", "Herald Skills deal (50-100)% increased Damage", statOrder = { 6024 }, level = 1, group = "HeraldDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [21071013] = { "Herald Skills deal (50-100)% increased Damage" }, } }, + ["UniqueGainManaAsExtraArmour1"] = { affix = "", "Gain (30-50)% of Maximum Mana as Armour", statOrder = { 7964 }, level = 1, group = "GainManaAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mana" }, tradeHashes = { [514290151] = { "Gain (30-50)% of Maximum Mana as Armour" }, } }, + ["UniqueManaRegenAppliesToRecharge1"] = { affix = "", "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate", statOrder = { 4231, 4231.1 }, level = 1, group = "ManaRegenAppliesToRecharge", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mana" }, tradeHashes = { [3407300125] = { "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate" }, } }, + ["UniqueDefendWithArmourPerEnergyShield1"] = { affix = "", "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield", statOrder = { 4421 }, level = 1, group = "DefendWithArmourPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [679087890] = { "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield" }, } }, + ["UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield1"] = { affix = "", "Defend with (150-200)% of Armour while you have Energy Shield", statOrder = { 6108 }, level = 1, group = "UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1539671749] = { "Defend with (150-200)% of Armour while you have Energy Shield" }, } }, ["UniqueMaxLifeToConvertToArmourPerChaosResistance1"] = { affix = "", "Convert 1% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", statOrder = { 1434 }, level = 1, group = "UniqueMaxLifeToConvertToArmourPerChaosResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4274637468] = { "Convert 1% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%" }, } }, - ["UniqueDamageOvertimeDoesNotBypassEnergyShield1"] = { affix = "", "Damage over Time cannot bypass your Energy Shield", statOrder = { 10393 }, level = 1, group = "UniqueDamageOvertimeDoesNotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2886108529] = { "Damage over Time cannot bypass your Energy Shield" }, } }, - ["UniquePhysicalDamageOnSkillUse1"] = { affix = "", "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage", statOrder = { 9920 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3181887481] = { "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage" }, } }, - ["UniqueSlowEffect1"] = { affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4691 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, - ["UniqueCannotImmobilise1"] = { affix = "", "Cannot Immobilise enemies", statOrder = { 5303 }, level = 1, group = "CannotImmobilise", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4062529591] = { "Cannot Immobilise enemies" }, } }, - ["UniqueIgnoreStrengthRequirementsWeapons1"] = { affix = "", "Ignore Strength Requirement of Melee Weapons and Melee Skills", statOrder = { 7271 }, level = 1, group = "IgnoreStrengthRequirementsWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2583483800] = { "Ignore Strength Requirement of Melee Weapons and Melee Skills" }, } }, - ["UniquePhysicalDamageTakenUnmetRequirements1"] = { affix = "", "Take Physical Damage per total unmet Strength Requirement when you Attack", statOrder = { 10227 }, level = 1, group = "PhysicalDamageTakenUnmetRequirements", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3887716633] = { "Take Physical Damage per total unmet Strength Requirement when you Attack" }, } }, - ["UniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", statOrder = { 9213 }, level = 1, group = "NoManaRegenIfNotCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1458880585] = { "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently" }, } }, - ["UniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", statOrder = { 8016 }, level = 1, group = "ManaRegenerationRateIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHashes = { [1659564104] = { "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently" }, } }, - ["UniqueThornsDamageOnStun1"] = { affix = "", "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", statOrder = { 6094 }, level = 60, group = "ThornsDamageOnStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2107791433] = { "Deal your Thorns Damage to Enemies you Stun with Melee Attacks" }, } }, - ["UniqueChanceToDealThornsDamageOnHit1"] = { affix = "", "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10265 }, level = 60, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, - ["UniqueLifeRecoupAppliesToEnergyShield1"] = { affix = "", "Damage taken Recouped as Life is also Recouped as Energy Shield", statOrder = { 7471 }, level = 1, group = "LifeRecoupAppliesToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life" }, tradeHashes = { [2432200638] = { "Damage taken Recouped as Life is also Recouped as Energy Shield" }, } }, - ["UniqueTailwindOnCriticalStrike1"] = { affix = "", "Gain Tailwind on Critical Hit, no more than once per second", statOrder = { 6865 }, level = 1, group = "TailwindOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2459662130] = { "Gain Tailwind on Critical Hit, no more than once per second" }, } }, - ["UniqueLoseTailwindOnHit1"] = { affix = "", "Lose all Tailwind when Hit", statOrder = { 7934 }, level = 1, group = "LoseTailwindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [367897259] = { "Lose all Tailwind when Hit" }, } }, - ["UniqueDamageGainedAsFirePerBlock1"] = { affix = "", "Gain 1% of damage as Fire damage per 1% Chance to Block", statOrder = { 9234 }, level = 1, group = "DamageGainedAsFirePerBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3170380905] = { "Gain 1% of damage as Fire damage per 1% Chance to Block" }, } }, + ["UniqueDamageOvertimeDoesNotBypassEnergyShield1"] = { affix = "", "Damage over Time cannot bypass your Energy Shield", statOrder = { 10384 }, level = 1, group = "UniqueDamageOvertimeDoesNotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2886108529] = { "Damage over Time cannot bypass your Energy Shield" }, } }, + ["UniquePhysicalDamageOnSkillUse1"] = { affix = "", "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage", statOrder = { 9911 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3181887481] = { "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage" }, } }, + ["UniqueSlowEffect1"] = { affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4687 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, + ["UniqueCannotImmobilise1"] = { affix = "", "Cannot Immobilise enemies", statOrder = { 5299 }, level = 1, group = "CannotImmobilise", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4062529591] = { "Cannot Immobilise enemies" }, } }, + ["UniqueIgnoreStrengthRequirementsWeapons1"] = { affix = "", "Ignore Strength Requirement of Melee Weapons and Melee Skills", statOrder = { 7267 }, level = 1, group = "IgnoreStrengthRequirementsWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2583483800] = { "Ignore Strength Requirement of Melee Weapons and Melee Skills" }, } }, + ["UniquePhysicalDamageTakenUnmetRequirements1"] = { affix = "", "Take Physical Damage per total unmet Strength Requirement when you Attack", statOrder = { 10218 }, level = 1, group = "PhysicalDamageTakenUnmetRequirements", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3887716633] = { "Take Physical Damage per total unmet Strength Requirement when you Attack" }, } }, + ["UniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", statOrder = { 9204 }, level = 1, group = "NoManaRegenIfNotCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1458880585] = { "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently" }, } }, + ["UniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", statOrder = { 8012 }, level = 1, group = "ManaRegenerationRateIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHashes = { [1659564104] = { "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently" }, } }, + ["UniqueThornsDamageOnStun1"] = { affix = "", "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", statOrder = { 6090 }, level = 60, group = "ThornsDamageOnStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2107791433] = { "Deal your Thorns Damage to Enemies you Stun with Melee Attacks" }, } }, + ["UniqueChanceToDealThornsDamageOnHit1"] = { affix = "", "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10256 }, level = 60, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, + ["UniqueLifeRecoupAppliesToEnergyShield1"] = { affix = "", "Damage taken Recouped as Life is also Recouped as Energy Shield", statOrder = { 7467 }, level = 1, group = "LifeRecoupAppliesToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life" }, tradeHashes = { [2432200638] = { "Damage taken Recouped as Life is also Recouped as Energy Shield" }, } }, + ["UniqueTailwindOnCriticalStrike1"] = { affix = "", "Gain Tailwind on Critical Hit, no more than once per second", statOrder = { 6861 }, level = 1, group = "TailwindOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2459662130] = { "Gain Tailwind on Critical Hit, no more than once per second" }, } }, + ["UniqueLoseTailwindOnHit1"] = { affix = "", "Lose all Tailwind when Hit", statOrder = { 7930 }, level = 1, group = "LoseTailwindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [367897259] = { "Lose all Tailwind when Hit" }, } }, + ["UniqueDamageGainedAsFirePerBlock1"] = { affix = "", "Gain 1% of damage as Fire damage per 1% Chance to Block", statOrder = { 9225 }, level = 1, group = "DamageGainedAsFirePerBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3170380905] = { "Gain 1% of damage as Fire damage per 1% Chance to Block" }, } }, ["UniqueMaximumElementalResistances1"] = { affix = "", "+1% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 1009, 1010, 1011 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [4095671657] = { "+1% to Maximum Fire Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, ["UniqueMaximumElementalResistances2"] = { affix = "", "+1% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 1009, 1010, 1011 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [4095671657] = { "+1% to Maximum Fire Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, ["UniqueMaximumElementalResistances3"] = { affix = "", "+2% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 1009, 1010, 1011 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [4095671657] = { "+2% to Maximum Fire Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, @@ -2258,130 +2255,130 @@ return { ["UniqueAdditionalElementalGemLevels4"] = { affix = "", "+2 to Level of all Fire Skills", "+3 to Level of all Cold Skills", "+1 to Level of all Lightning Skills", statOrder = { 958, 960, 962 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skills" }, [599749213] = { "+2 to Level of all Fire Skills" }, [1078455967] = { "+3 to Level of all Cold Skills" }, } }, ["UniqueAdditionalElementalGemLevels5"] = { affix = "", "+3 to Level of all Fire Skills", "+1 to Level of all Cold Skills", "+2 to Level of all Lightning Skills", statOrder = { 958, 960, 962 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+2 to Level of all Lightning Skills" }, [599749213] = { "+3 to Level of all Fire Skills" }, [1078455967] = { "+1 to Level of all Cold Skills" }, } }, ["UniqueAdditionalElementalGemLevels6"] = { affix = "", "+3 to Level of all Fire Skills", "+2 to Level of all Cold Skills", "+1 to Level of all Lightning Skills", statOrder = { 958, 960, 962 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skills" }, [599749213] = { "+3 to Level of all Fire Skills" }, [1078455967] = { "+2 to Level of all Cold Skills" }, } }, - ["UniqueCriticalWeaknessOnSpellCrit1"] = { affix = "", "Critical Hits with Spells apply (1-3) Stack of Critical Weakness", statOrder = { 4321 }, level = 1, group = "CriticalWeaknessOnSpellCrit", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1550131834] = { "Critical Hits with Spells apply (1-3) Stack of Critical Weakness" }, } }, - ["UniqueLifeLossReservesLife1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds", statOrder = { 9772, 9772.1 }, level = 1, group = "LifeLossReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777740627] = { "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds" }, } }, + ["UniqueCriticalWeaknessOnSpellCrit1"] = { affix = "", "Critical Hits with Spells apply (1-3) Stack of Critical Weakness", statOrder = { 4318 }, level = 1, group = "CriticalWeaknessOnSpellCrit", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1550131834] = { "Critical Hits with Spells apply (1-3) Stack of Critical Weakness" }, } }, + ["UniqueLifeLossReservesLife1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds", statOrder = { 9763, 9763.1 }, level = 1, group = "LifeLossReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777740627] = { "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds" }, } }, ["UniqueArrowsFork1"] = { affix = "", "Arrows Fork", statOrder = { 3265 }, level = 1, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2421436896] = { "Arrows Fork" }, } }, - ["UniqueArrowsAlwaysPierceAfterForking1"] = { affix = "", "Arrows Pierce all targets after Forking", statOrder = { 4439 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2138799639] = { "Arrows Pierce all targets after Forking" }, } }, + ["UniqueArrowsAlwaysPierceAfterForking1"] = { affix = "", "Arrows Pierce all targets after Forking", statOrder = { 4436 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2138799639] = { "Arrows Pierce all targets after Forking" }, } }, ["UniqueChaosDamageCanShock1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2623 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Chaos Damage from Hits also Contributes to Shock Chance" }, } }, ["UniqueAlwaysHits1"] = { affix = "", "Always Hits", statOrder = { 1779 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Always Hits" }, } }, ["UniqueMeleeSplash1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1137 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, ["UniqueLocalKnockback1"] = { affix = "", "Knocks Back Enemies on Hit", statOrder = { 1415 }, level = 1, group = "LocalKnockback", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3739186583] = { "Knocks Back Enemies on Hit" }, } }, - ["UniqueSpellWitherOnHitChance1"] = { affix = "", "Spells have a 25% chance to inflict Withered for 4 seconds on Hit", statOrder = { 10040 }, level = 1, group = "SpellWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2348696937] = { "Spells have a 25% chance to inflict Withered for 4 seconds on Hit" }, } }, + ["UniqueSpellWitherOnHitChance1"] = { affix = "", "Spells have a 25% chance to inflict Withered for 4 seconds on Hit", statOrder = { 10031 }, level = 1, group = "SpellWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2348696937] = { "Spells have a 25% chance to inflict Withered for 4 seconds on Hit" }, } }, ["UniqueWitherNeverExpires1"] = { affix = "", "Withered you inflict has infinite Duration", statOrder = { 4093 }, level = 1, group = "WitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1354656031] = { "Withered you inflict has infinite Duration" }, } }, - ["UniqueShrineBuffAlternating1"] = { affix = "", "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", statOrder = { 7707 }, level = 1, group = "ShrineBuffAlternating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879778895] = { "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds" }, } }, - ["UniqueFireShrine1"] = { affix = "", "Grants effect of Guided Meteoric Shrine", statOrder = { 6969 }, level = 82, group = "UniqueFireShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917429943] = { "Grants effect of Guided Meteoric Shrine" }, } }, - ["UniqueLightningShrine1"] = { affix = "", "Grants effect of Guided Tempest Shrine", statOrder = { 6970 }, level = 82, group = "UniqueLightningShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800412928] = { "Grants effect of Guided Tempest Shrine" }, } }, - ["UniqueColdShrine1"] = { affix = "", "Grants effect of Guided Freezing Shrine", statOrder = { 6968 }, level = 82, group = "UniqueColdShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [234657505] = { "Grants effect of Guided Freezing Shrine" }, } }, - ["UniqueChaosShrine1"] = { affix = "", "Grants effect of Dreaming Gloom Shrine", statOrder = { 6967 }, level = 82, group = "UniqueChaosShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3742268652] = { "Grants effect of Dreaming Gloom Shrine" }, } }, - ["UniqueMaximumValour1"] = { affix = "", "-20 to maximum Valour", statOrder = { 4634 }, level = 1, group = "MaximumValour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1896726125] = { "-20 to maximum Valour" }, } }, - ["UniqueValourAlwaysMaximum1"] = { affix = "", "Banners always have maximum Valour", statOrder = { 4639 }, level = 1, group = "ValourAlwaysMaximum", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1761741119] = { "Banners always have maximum Valour" }, } }, + ["UniqueShrineBuffAlternating1"] = { affix = "", "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", statOrder = { 7703 }, level = 1, group = "ShrineBuffAlternating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879778895] = { "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds" }, } }, + ["UniqueFireShrine1"] = { affix = "", "Grants effect of Guided Meteoric Shrine", statOrder = { 6965 }, level = 82, group = "UniqueFireShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917429943] = { "Grants effect of Guided Meteoric Shrine" }, } }, + ["UniqueLightningShrine1"] = { affix = "", "Grants effect of Guided Tempest Shrine", statOrder = { 6966 }, level = 82, group = "UniqueLightningShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800412928] = { "Grants effect of Guided Tempest Shrine" }, } }, + ["UniqueColdShrine1"] = { affix = "", "Grants effect of Guided Freezing Shrine", statOrder = { 6964 }, level = 82, group = "UniqueColdShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [234657505] = { "Grants effect of Guided Freezing Shrine" }, } }, + ["UniqueChaosShrine1"] = { affix = "", "Grants effect of Dreaming Gloom Shrine", statOrder = { 6963 }, level = 82, group = "UniqueChaosShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3742268652] = { "Grants effect of Dreaming Gloom Shrine" }, } }, + ["UniqueMaximumValour1"] = { affix = "", "-20 to maximum Valour", statOrder = { 4631 }, level = 1, group = "MaximumValour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1896726125] = { "-20 to maximum Valour" }, } }, + ["UniqueValourAlwaysMaximum1"] = { affix = "", "Banners always have maximum Valour", statOrder = { 4636 }, level = 1, group = "ValourAlwaysMaximum", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1761741119] = { "Banners always have maximum Valour" }, } }, ["UniqueLocalChanceToBleed1"] = { affix = "", "(10-20)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(10-20)% chance to cause Bleeding on Hit" }, } }, ["UniqueLocalChanceToBleed2"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(15-25)% chance to cause Bleeding on Hit" }, } }, ["UniqueLocalChanceToBleed3"] = { affix = "", "(20-30)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(20-30)% chance to cause Bleeding on Hit" }, } }, - ["UniqueCannotUseWarcries1"] = { affix = "", "Cannot use Warcries", statOrder = { 5321 }, level = 1, group = "CannotUseWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2598171606] = { "Cannot use Warcries" }, } }, - ["UniqueAttacksCountAsExerted1"] = { affix = "", "All Attacks count as Empowered Attacks", statOrder = { 4268 }, level = 1, group = "AttacksCountAsExerted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1952324525] = { "All Attacks count as Empowered Attacks" }, } }, - ["UniquePinAlmostPinnedEnemies1"] = { affix = "", "Pin Enemies which are Primed for Pinning", statOrder = { 9475 }, level = 1, group = "PinAlmostPinnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3063814459] = { "Pin Enemies which are Primed for Pinning" }, } }, - ["UniqueSpellAdditionalProjectilesInCircle1"] = { affix = "", "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle", statOrder = { 10029, 10029.1 }, level = 1, group = "SpellAdditionalProjectilesInCircle", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1013492127] = { "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle" }, } }, - ["UniqueCannotBeLightStunned1"] = { affix = "", "Cannot be Light Stunned", statOrder = { 5273 }, level = 1, group = "CannotBeLightStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1000739259] = { "Cannot be Light Stunned" }, } }, - ["UniqueCannotBeLightStunnedByDeflectedHits1"] = { affix = "", "Cannot be Light Stunned by Deflected Hits", statOrder = { 5274 }, level = 1, group = "CannotBeLightStunnedByDeflectedHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2252419505] = { "Cannot be Light Stunned by Deflected Hits" }, } }, - ["UniqueNonChannellingAttackManaCost1"] = { affix = "", "Non-Channelling Attacks cost an additional 6% of your maximum Mana", statOrder = { 4724 }, level = 1, group = "NonChannellingAttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3199954470] = { "Non-Channelling Attacks cost an additional 6% of your maximum Mana" }, } }, - ["UniqueAttackManaCost1"] = { affix = "", "Attacks cost an additional 6% of your maximum Mana", statOrder = { 4582 }, level = 1, group = "AttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2157692677] = { "Attacks cost an additional 6% of your maximum Mana" }, } }, - ["UniqueNonChannellingAttackLightningDamage1"] = { affix = "", "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana", statOrder = { 9216 }, level = 1, group = "NonChannellingAttackLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [4252580517] = { "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana" }, } }, - ["UniqueAttackMinLightningDamage1"] = { affix = "", "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana", statOrder = { 10633 }, level = 1, group = "AttackMinLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [1835420624] = { "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana" }, } }, - ["UniqueAttackMaxLightningDamage1"] = { affix = "", "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana", statOrder = { 10663 }, level = 1, group = "AttackMaxLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3258071686] = { "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana" }, } }, + ["UniqueCannotUseWarcries1"] = { affix = "", "Cannot use Warcries", statOrder = { 5317 }, level = 1, group = "CannotUseWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2598171606] = { "Cannot use Warcries" }, } }, + ["UniqueAttacksCountAsExerted1"] = { affix = "", "All Attacks count as Empowered Attacks", statOrder = { 4265 }, level = 1, group = "AttacksCountAsExerted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1952324525] = { "All Attacks count as Empowered Attacks" }, } }, + ["UniquePinAlmostPinnedEnemies1"] = { affix = "", "Pin Enemies which are Primed for Pinning", statOrder = { 9466 }, level = 1, group = "PinAlmostPinnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3063814459] = { "Pin Enemies which are Primed for Pinning" }, } }, + ["UniqueSpellAdditionalProjectilesInCircle1"] = { affix = "", "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle", statOrder = { 10020, 10020.1 }, level = 1, group = "SpellAdditionalProjectilesInCircle", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1013492127] = { "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle" }, } }, + ["UniqueCannotBeLightStunned1"] = { affix = "", "Cannot be Light Stunned", statOrder = { 5269 }, level = 1, group = "CannotBeLightStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1000739259] = { "Cannot be Light Stunned" }, } }, + ["UniqueCannotBeLightStunnedByDeflectedHits1"] = { affix = "", "Cannot be Light Stunned by Deflected Hits", statOrder = { 5270 }, level = 1, group = "CannotBeLightStunnedByDeflectedHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2252419505] = { "Cannot be Light Stunned by Deflected Hits" }, } }, + ["UniqueNonChannellingAttackManaCost1"] = { affix = "", "Non-Channelling Attacks cost an additional 6% of your maximum Mana", statOrder = { 4720 }, level = 1, group = "NonChannellingAttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3199954470] = { "Non-Channelling Attacks cost an additional 6% of your maximum Mana" }, } }, + ["UniqueAttackManaCost1"] = { affix = "", "Attacks cost an additional 6% of your maximum Mana", statOrder = { 4579 }, level = 1, group = "AttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2157692677] = { "Attacks cost an additional 6% of your maximum Mana" }, } }, + ["UniqueNonChannellingAttackLightningDamage1"] = { affix = "", "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana", statOrder = { 9207 }, level = 1, group = "NonChannellingAttackLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [4252580517] = { "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana" }, } }, + ["UniqueAttackMinLightningDamage1"] = { affix = "", "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana", statOrder = { 10623 }, level = 1, group = "AttackMinLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [1835420624] = { "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana" }, } }, + ["UniqueAttackMaxLightningDamage1"] = { affix = "", "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana", statOrder = { 10653 }, level = 1, group = "AttackMaxLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3258071686] = { "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana" }, } }, ["UniqueEvasionRatingPercentOnLowLife1"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2315 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2695354435] = { "150% increased Global Evasion Rating when on Low Life" }, } }, - ["UniqueDamageRemovedFromCompanion1"] = { affix = "", "15% of Damage from Hits is taken from your Damageable Companion's Life before you", statOrder = { 5730 }, level = 1, group = "DamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1150343007] = { "15% of Damage from Hits is taken from your Damageable Companion's Life before you" }, } }, - ["UniqueNonChannellingSpellLifeCost1"] = { affix = "", "Non-Channelling Spells cost an additional 6% of your maximum Life", statOrder = { 4709 }, level = 1, group = "NonChannellingSpellLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [1920747151] = { "Non-Channelling Spells cost an additional 6% of your maximum Life" }, } }, - ["UniqueNonChannellingSpellDamage1"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life", statOrder = { 10016 }, level = 1, group = "NonChannellingSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1027889455] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life" }, } }, - ["UniqueNonChannellingSpellCriticalChance1"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life", statOrder = { 9996 }, level = 1, group = "NonChannellingSpellCriticalChance", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [170426423] = { "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life" }, } }, + ["UniqueDamageRemovedFromCompanion1"] = { affix = "", "15% of Damage from Hits is taken from your Damageable Companion's Life before you", statOrder = { 5726 }, level = 1, group = "DamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1150343007] = { "15% of Damage from Hits is taken from your Damageable Companion's Life before you" }, } }, + ["UniqueNonChannellingSpellLifeCost1"] = { affix = "", "Non-Channelling Spells cost an additional 6% of your maximum Life", statOrder = { 4705 }, level = 1, group = "NonChannellingSpellLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [1920747151] = { "Non-Channelling Spells cost an additional 6% of your maximum Life" }, } }, + ["UniqueNonChannellingSpellDamage1"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life", statOrder = { 10007 }, level = 1, group = "NonChannellingSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1027889455] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life" }, } }, + ["UniqueNonChannellingSpellCriticalChance1"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life", statOrder = { 9987 }, level = 1, group = "NonChannellingSpellCriticalChance", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [170426423] = { "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life" }, } }, ["UniqueLifeRegenerationRate1"] = { affix = "", "50% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "50% increased Life Regeneration rate" }, } }, ["UniqueLifeRegenerationRate2"] = { affix = "", "(-30-30)% reduced Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(-30-30)% reduced Life Regeneration rate" }, } }, - ["UniqueSpiritPerMaximumLife1"] = { affix = "", "+1 to Maximum Spirit per 50 Maximum Life", statOrder = { 10421 }, level = 1, group = "SpiritPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1345486764] = { "+1 to Maximum Spirit per 50 Maximum Life" }, } }, - ["UniqueBuffSkillSpiritEfficiencyPerMaximumLife1"] = { affix = "", "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", statOrder = { 5239 }, level = 1, group = "BuffSkillSpiritEfficiencyPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3581035970] = { "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life" }, } }, - ["UniqueMinionsHaveUnholyMight1"] = { affix = "", "Minions have Unholy Might", statOrder = { 9107 }, level = 1, group = "MinionsHaveUnholyMight", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3893509584] = { "Minions have Unholy Might" }, } }, - ["UniqueCanEvadeAllDamageNotHitRecently1"] = { affix = "", "Evasion Rating is doubled if you have not been Hit Recently", statOrder = { 6216 }, level = 1, group = "CanEvadeAllDamageNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1272938854] = { "Evasion Rating is doubled if you have not been Hit Recently" }, } }, - ["UniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5771 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, + ["UniqueSpiritPerMaximumLife1"] = { affix = "", "+1 to Maximum Spirit per 50 Maximum Life", statOrder = { 10411 }, level = 1, group = "SpiritPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1345486764] = { "+1 to Maximum Spirit per 50 Maximum Life" }, } }, + ["UniqueBuffSkillSpiritEfficiencyPerMaximumLife1"] = { affix = "", "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", statOrder = { 5235 }, level = 1, group = "BuffSkillSpiritEfficiencyPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3581035970] = { "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life" }, } }, + ["UniqueMinionsHaveUnholyMight1"] = { affix = "", "Minions have Unholy Might", statOrder = { 9098 }, level = 1, group = "MinionsHaveUnholyMight", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3893509584] = { "Minions have Unholy Might" }, } }, + ["UniqueCanEvadeAllDamageNotHitRecently1"] = { affix = "", "Evasion Rating is doubled if you have not been Hit Recently", statOrder = { 6212 }, level = 1, group = "CanEvadeAllDamageNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1272938854] = { "Evasion Rating is doubled if you have not been Hit Recently" }, } }, + ["UniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5767 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, ["UniqueIgnoreHexproof1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2379 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, ["UniqueIgnoreHexproof2"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2379 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, - ["UniqueEnergyShieldRechargeOverride1"] = { affix = "", "Your base Energy Shield Recharge Delay is 10 seconds", statOrder = { 6437 }, level = 1, group = "EnergyShieldRechargeOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3091132047] = { "Your base Energy Shield Recharge Delay is 10 seconds" }, } }, - ["UniqueShockEffect1"] = { affix = "", "(10-20)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-20)% increased Magnitude of Shock you inflict" }, } }, - ["UniqueAttackSpeedPerOvercappedBlock1"] = { affix = "", "1% increased Attack Speed per Overcapped Block chance", statOrder = { 4572 }, level = 1, group = "AttackSpeedPerOvercappedBlock", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2958220558] = { "1% increased Attack Speed per Overcapped Block chance" }, } }, - ["UniqueNonChannellingSpellsDoubleManaAndCrit1"] = { affix = "", "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", statOrder = { 9219 }, level = 1, group = "NonChannellingSpellsDoubleManaAndCrit", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "resource", "mana", "caster", "critical" }, tradeHashes = { [2758035461] = { "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit" }, } }, - ["UniqueIncreasedEnergyGenPerCritRecently1UNUSED"] = { affix = "", "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently", statOrder = { 6414 }, level = 1, group = "EnergyGainPercentPerCritRecently", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1049590848] = { "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently" }, } }, - ["UniqueBlockChanceProjectiles1"] = { affix = "", "100% increased Block chance against Projectiles", statOrder = { 4936 }, level = 1, group = "BlockChanceProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3583542124] = { "100% increased Block chance against Projectiles" }, } }, - ["UniqueEnfeebleOnBlockChance1"] = { affix = "", "Curse Enemies with Enfeeble on Block", statOrder = { 5933 }, level = 1, group = "EnfeebleOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [3830953767] = { "Curse Enemies with Enfeeble on Block" }, } }, - ["UniqueParriedCausesSpellDamageTaken1"] = { affix = "", "Parried enemies take more Spell Damage instead of more Attack Damage", statOrder = { 9380 }, level = 1, group = "ParriedCausesSpellDamageTaken", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHashes = { [3488640354] = { "Parried enemies take more Spell Damage instead of more Attack Damage" }, } }, - ["UniqueParryConvertToCold1"] = { affix = "", "100% of Parry Physical Damage Converted to Cold Damage", statOrder = { 9390 }, level = 1, group = "UniqueParryConvertToCold1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold" }, tradeHashes = { [2089152298] = { "100% of Parry Physical Damage Converted to Cold Damage" }, } }, - ["UniqueParryStunModifiersApplyToFreeze1"] = { affix = "", "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", statOrder = { 9388 }, level = 1, group = "UniqueParryStunModifiersApplyToFreeze1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [3201111383] = { "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry" }, } }, + ["UniqueEnergyShieldRechargeOverride1"] = { affix = "", "Your base Energy Shield Recharge Delay is 10 seconds", statOrder = { 6433 }, level = 1, group = "EnergyShieldRechargeOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3091132047] = { "Your base Energy Shield Recharge Delay is 10 seconds" }, } }, + ["UniqueShockEffect1"] = { affix = "", "(10-20)% increased Magnitude of Shock you inflict", statOrder = { 9836 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-20)% increased Magnitude of Shock you inflict" }, } }, + ["UniqueAttackSpeedPerOvercappedBlock1"] = { affix = "", "1% increased Attack Speed per Overcapped Block chance", statOrder = { 4569 }, level = 1, group = "AttackSpeedPerOvercappedBlock", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2958220558] = { "1% increased Attack Speed per Overcapped Block chance" }, } }, + ["UniqueNonChannellingSpellsDoubleManaAndCrit1"] = { affix = "", "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", statOrder = { 9210 }, level = 1, group = "NonChannellingSpellsDoubleManaAndCrit", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "resource", "mana", "caster", "critical" }, tradeHashes = { [2758035461] = { "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit" }, } }, + ["UniqueIncreasedEnergyGenPerCritRecently1UNUSED"] = { affix = "", "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently", statOrder = { 6410 }, level = 1, group = "EnergyGainPercentPerCritRecently", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1049590848] = { "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently" }, } }, + ["UniqueBlockChanceProjectiles1"] = { affix = "", "100% increased Block chance against Projectiles", statOrder = { 4932 }, level = 1, group = "BlockChanceProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3583542124] = { "100% increased Block chance against Projectiles" }, } }, + ["UniqueEnfeebleOnBlockChance1"] = { affix = "", "Curse Enemies with Enfeeble on Block", statOrder = { 5929 }, level = 1, group = "EnfeebleOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [3830953767] = { "Curse Enemies with Enfeeble on Block" }, } }, + ["UniqueParriedCausesSpellDamageTaken1"] = { affix = "", "Parried enemies take more Spell Damage instead of more Attack Damage", statOrder = { 9371 }, level = 1, group = "ParriedCausesSpellDamageTaken", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHashes = { [3488640354] = { "Parried enemies take more Spell Damage instead of more Attack Damage" }, } }, + ["UniqueParryConvertToCold1"] = { affix = "", "100% of Parry Physical Damage Converted to Cold Damage", statOrder = { 9381 }, level = 1, group = "UniqueParryConvertToCold1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold" }, tradeHashes = { [2089152298] = { "100% of Parry Physical Damage Converted to Cold Damage" }, } }, + ["UniqueParryStunModifiersApplyToFreeze1"] = { affix = "", "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", statOrder = { 9379 }, level = 1, group = "UniqueParryStunModifiersApplyToFreeze1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [3201111383] = { "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry" }, } }, ["UniqueIncreasedAccuracyPercent1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1332 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "20% increased Accuracy Rating" }, } }, - ["UniqueParriedDebuffMagnitude1"] = { affix = "", "50% increased Parried Debuff Magnitude", statOrder = { 9379 }, level = 1, group = "ParriedDebuffMagnitude", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [818877178] = { "50% increased Parried Debuff Magnitude" }, } }, - ["UniqueCriticalWeaknessOnParry1"] = { affix = "", "Parrying applies 10 Stacks of Critical Weakness", statOrder = { 4323 }, level = 1, group = "CriticalWeaknessOnParry", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [2104138899] = { "Parrying applies 10 Stacks of Critical Weakness" }, } }, - ["UniqueParryDamage1"] = { affix = "", "100% increased Parry Damage", statOrder = { 9384 }, level = 1, group = "ParryDamage", weightKey = { }, weightVal = { }, modTags = { "block", "damage" }, tradeHashes = { [1569159338] = { "100% increased Parry Damage" }, } }, - ["UniqueHitsTreatFireResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Fire Resistance instead of target's value", statOrder = { 7223 }, level = 1, group = "HitsTreatFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3924583393] = { "Hits are Resisted by (15-30)% Fire Resistance instead of target's value" }, } }, - ["UniqueHitsTreatColdResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Cold Resistance instead of target's value", statOrder = { 7222 }, level = 1, group = "HitsTreatColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3455898738] = { "Hits are Resisted by (15-30)% Cold Resistance instead of target's value" }, } }, - ["UniqueHitsTreatLightningResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value", statOrder = { 7224 }, level = 1, group = "HitsTreatLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [3144953722] = { "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value" }, } }, - ["UniqueWitherOnHitChance1"] = { affix = "", "(20-30)% chance to inflict Withered for 4 seconds on Hit", statOrder = { 10558 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [695624915] = { "(20-30)% chance to inflict Withered for 4 seconds on Hit" }, } }, + ["UniqueParriedDebuffMagnitude1"] = { affix = "", "50% increased Parried Debuff Magnitude", statOrder = { 9370 }, level = 1, group = "ParriedDebuffMagnitude", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [818877178] = { "50% increased Parried Debuff Magnitude" }, } }, + ["UniqueCriticalWeaknessOnParry1"] = { affix = "", "Parrying applies 10 Stacks of Critical Weakness", statOrder = { 4320 }, level = 1, group = "CriticalWeaknessOnParry", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [2104138899] = { "Parrying applies 10 Stacks of Critical Weakness" }, } }, + ["UniqueParryDamage1"] = { affix = "", "100% increased Parry Damage", statOrder = { 9375 }, level = 1, group = "ParryDamage", weightKey = { }, weightVal = { }, modTags = { "block", "damage" }, tradeHashes = { [1569159338] = { "100% increased Parry Damage" }, } }, + ["UniqueHitsTreatFireResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Fire Resistance instead of target's value", statOrder = { 7219 }, level = 1, group = "HitsTreatFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3924583393] = { "Hits are Resisted by (15-30)% Fire Resistance instead of target's value" }, } }, + ["UniqueHitsTreatColdResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Cold Resistance instead of target's value", statOrder = { 7218 }, level = 1, group = "HitsTreatColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3455898738] = { "Hits are Resisted by (15-30)% Cold Resistance instead of target's value" }, } }, + ["UniqueHitsTreatLightningResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value", statOrder = { 7220 }, level = 1, group = "HitsTreatLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [3144953722] = { "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value" }, } }, + ["UniqueWitherOnHitChance1"] = { affix = "", "(20-30)% chance to inflict Withered for 4 seconds on Hit", statOrder = { 10548 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [695624915] = { "(20-30)% chance to inflict Withered for 4 seconds on Hit" }, } }, ["UniqueWitherGrantsElementalDamageTaken1"] = { affix = "", "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them", statOrder = { 4057, 4057.1 }, level = 1, group = "WitherGrantsElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3507915723] = { "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them" }, } }, ["UniqueStrengthInherentBonusChange1"] = { affix = "", "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead", statOrder = { 1758 }, level = 1, group = "StrengthInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602694371] = { "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead" }, } }, ["UniqueDexterityInherentBonusChange1"] = { affix = "", "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead", statOrder = { 1759 }, level = 1, group = "DexterityInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [597008938] = { "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead" }, } }, ["UniqueIntelligenceInherentBonusChange1"] = { affix = "", "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead", statOrder = { 1760 }, level = 1, group = "IntelligenceInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1405948943] = { "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead" }, } }, - ["UniqueApplyCorruptedBloodOnBlock1"] = { affix = "", "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second", statOrder = { 10390, 10390.1 }, level = 1, group = "ApplyCorruptedBloodOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical" }, tradeHashes = { [1695767482] = { "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second" }, } }, - ["UniqueBowDamageFromLifeFlaskCharges1"] = { affix = "", "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount", statOrder = { 5765 }, level = 1, group = "BowDamageFromLifeFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3893788785] = { "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount" }, } }, - ["UniqueImpaleOnCriticalHit1"] = { affix = "", "Critical Hits inflict Impale", statOrder = { 5821 }, level = 1, group = "ImpaleOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3058238353] = { "Critical Hits inflict Impale" }, } }, - ["UniqueCriticalsCannotConsumeImpale1"] = { affix = "", "Critical Hits cannot Extract Impale", statOrder = { 5823 }, level = 1, group = "CriticalsCannotConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3414998042] = { "Critical Hits cannot Extract Impale" }, } }, - ["UniqueCannotRecoverAboveLowLifeExceptFlasks1"] = { affix = "", "Life Recovery other than Flasks cannot Recover Life to above Low Life", statOrder = { 5311 }, level = 1, group = "CannotRecoverAboveLowLifeExceptFlasks", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [451403019] = { "Life Recovery other than Flasks cannot Recover Life to above Low Life" }, } }, + ["UniqueApplyCorruptedBloodOnBlock1"] = { affix = "", "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second", statOrder = { 10381, 10381.1 }, level = 1, group = "ApplyCorruptedBloodOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical" }, tradeHashes = { [1695767482] = { "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second" }, } }, + ["UniqueBowDamageFromLifeFlaskCharges1"] = { affix = "", "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount", statOrder = { 5761 }, level = 1, group = "BowDamageFromLifeFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3893788785] = { "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount" }, } }, + ["UniqueImpaleOnCriticalHit1"] = { affix = "", "Critical Hits inflict Impale", statOrder = { 5817 }, level = 1, group = "ImpaleOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3058238353] = { "Critical Hits inflict Impale" }, } }, + ["UniqueCriticalsCannotConsumeImpale1"] = { affix = "", "Critical Hits cannot Extract Impale", statOrder = { 5819 }, level = 1, group = "CriticalsCannotConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3414998042] = { "Critical Hits cannot Extract Impale" }, } }, + ["UniqueCannotRecoverAboveLowLifeExceptFlasks1"] = { affix = "", "Life Recovery other than Flasks cannot Recover Life to above Low Life", statOrder = { 5307 }, level = 1, group = "CannotRecoverAboveLowLifeExceptFlasks", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [451403019] = { "Life Recovery other than Flasks cannot Recover Life to above Low Life" }, } }, ["UniqueRegeneratePercentLifeIfHitRecently1"] = { affix = "", "Regenerate 5% of maximum Life per second if you have been Hit Recently", statOrder = { 1035 }, level = 1, group = "LifeRegenerationIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2201614328] = { "Regenerate 5% of maximum Life per second if you have been Hit Recently" }, } }, - ["UniqueGainPercentLifeAsThorns1"] = { affix = "", "Gain Physical Thorns damage equal to 8% - 12% of maximum Life", statOrder = { 6819 }, level = 1, group = "PercentOfMaximumLifeAsPhysicalThorns", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2163764037] = { "Gain Physical Thorns damage equal to 8% - 12% of maximum Life" }, } }, + ["UniqueGainPercentLifeAsThorns1"] = { affix = "", "Gain Physical Thorns damage equal to 8% - 12% of maximum Life", statOrder = { 6815 }, level = 1, group = "PercentOfMaximumLifeAsPhysicalThorns", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2163764037] = { "Gain Physical Thorns damage equal to 8% - 12% of maximum Life" }, } }, ["UniqueLifeRecoveryRate1"] = { affix = "", "(25-50)% increased Life Recovery rate", statOrder = { 1445 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(25-50)% increased Life Recovery rate" }, } }, ["UniqueLifeRecoveryRate2"] = { affix = "", "30% reduced Life Recovery rate", statOrder = { 1445 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "30% reduced Life Recovery rate" }, } }, ["UniqueLifeRecoveryRate3"] = { affix = "", "30% reduced Life Recovery rate", statOrder = { 1445 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "30% reduced Life Recovery rate" }, } }, - ["UniqueLifeLeechChaosDamage1"] = { affix = "", "Life Leech recovers based on your Chaos damage instead of Physical damage", statOrder = { 7461 }, level = 1, group = "LifeLeechChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [825825364] = { "Life Leech recovers based on your Chaos damage instead of Physical damage" }, } }, - ["UniqueChaosInfusionFromCharge1"] = { affix = "", "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges", statOrder = { 6719 }, level = 1, group = "ChaosInfusionFromCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [447757144] = { "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges" }, } }, - ["UniqueConsumeEnduranceChargeAlwaysCrit1"] = { affix = "", "Attacks consume an Endurance Charge to Critically Hit", statOrder = { 4501 }, level = 1, group = "ConsumeEnduranceChargeAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3550545679] = { "Attacks consume an Endurance Charge to Critically Hit" }, } }, - ["UniqueChaosDamagePerEnduranceCharge1"] = { affix = "", "Take 100 Chaos damage per second per Endurance Charge", statOrder = { 9805 }, level = 1, group = "ChaosDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3164544692] = { "Take 100 Chaos damage per second per Endurance Charge" }, } }, - ["UniqueConsumeFrenzyChargeAdditionalProjectile1"] = { affix = "", "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles", statOrder = { 9967 }, level = 1, group = "ConsumeFrenzyChargeAdditionalProjectile", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980858462] = { "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles" }, } }, + ["UniqueLifeLeechChaosDamage1"] = { affix = "", "Life Leech recovers based on your Chaos damage instead of Physical damage", statOrder = { 7457 }, level = 1, group = "LifeLeechChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [825825364] = { "Life Leech recovers based on your Chaos damage instead of Physical damage" }, } }, + ["UniqueChaosInfusionFromCharge1"] = { affix = "", "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges", statOrder = { 6715 }, level = 1, group = "ChaosInfusionFromCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [447757144] = { "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges" }, } }, + ["UniqueConsumeEnduranceChargeAlwaysCrit1"] = { affix = "", "Attacks consume an Endurance Charge to Critically Hit", statOrder = { 4498 }, level = 1, group = "ConsumeEnduranceChargeAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3550545679] = { "Attacks consume an Endurance Charge to Critically Hit" }, } }, + ["UniqueChaosDamagePerEnduranceCharge1"] = { affix = "", "Take 100 Chaos damage per second per Endurance Charge", statOrder = { 9796 }, level = 1, group = "ChaosDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3164544692] = { "Take 100 Chaos damage per second per Endurance Charge" }, } }, + ["UniqueConsumeFrenzyChargeAdditionalProjectile1"] = { affix = "", "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles", statOrder = { 9958 }, level = 1, group = "ConsumeFrenzyChargeAdditionalProjectile", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980858462] = { "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles" }, } }, ["UniqueRollCriticalChanceTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1356 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1451444093] = { "Bifurcates Critical Hits" }, } }, - ["UniqueLocalAllDamageCanPin1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Pin Buildup", statOrder = { 7611 }, level = 1, group = "LocalAllDamageCanPin", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4142786792] = { "All Damage from Hits with this Weapon Contributes to Pin Buildup" }, } }, - ["UniqueFullyArmourBrokenShatterOnKill1"] = { affix = "", "Fully Armour Broken enemies you kill with Hits Shatter", statOrder = { 9826 }, level = 1, group = "FullyArmourBrokenShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3278008231] = { "Fully Armour Broken enemies you kill with Hits Shatter" }, } }, - ["UniqueCanActiveBlockAllDirections1"] = { affix = "", "Can Block from all Directions while Shield is Raised", statOrder = { 5248 }, level = 1, group = "CanActiveBlockAllDirections", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4237042051] = { "Can Block from all Directions while Shield is Raised" }, } }, - ["UniqueAggravateIgnites1"] = { affix = "", "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", statOrder = { 4248 }, level = 1, group = "AggravateIgnites", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2312741059] = { "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target" }, } }, - ["UniqueLocalChanceToAggravateBleed1"] = { affix = "", "(25-40)% chance to Aggravate Bleeding on Hit", statOrder = { 7604 }, level = 1, group = "LocalChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1009412152] = { "(25-40)% chance to Aggravate Bleeding on Hit" }, } }, - ["UniqueCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7637 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, + ["UniqueLocalAllDamageCanPin1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Pin Buildup", statOrder = { 7607 }, level = 1, group = "LocalAllDamageCanPin", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4142786792] = { "All Damage from Hits with this Weapon Contributes to Pin Buildup" }, } }, + ["UniqueFullyArmourBrokenShatterOnKill1"] = { affix = "", "Fully Armour Broken enemies you kill with Hits Shatter", statOrder = { 9817 }, level = 1, group = "FullyArmourBrokenShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3278008231] = { "Fully Armour Broken enemies you kill with Hits Shatter" }, } }, + ["UniqueCanActiveBlockAllDirections1"] = { affix = "", "Can Block from all Directions while Shield is Raised", statOrder = { 5244 }, level = 1, group = "CanActiveBlockAllDirections", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4237042051] = { "Can Block from all Directions while Shield is Raised" }, } }, + ["UniqueAggravateIgnites1"] = { affix = "", "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", statOrder = { 4245 }, level = 1, group = "AggravateIgnites", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2312741059] = { "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target" }, } }, + ["UniqueLocalChanceToAggravateBleed1"] = { affix = "", "(25-40)% chance to Aggravate Bleeding on Hit", statOrder = { 7600 }, level = 1, group = "LocalChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1009412152] = { "(25-40)% chance to Aggravate Bleeding on Hit" }, } }, + ["UniqueCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7633 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, ["UniqueEnergyShieldGainedOnBlockBasedOnArmour1"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2249 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [3681057026] = { "Recover Energy Shield equal to 2% of Armour when you Block" }, } }, ["UniqueUnholyMightOnZeroEnergyShield1"] = { affix = "", "You have Unholy Might while you have no Energy Shield", statOrder = { 2499 }, level = 1, group = "UnholyMightOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2353201291] = { "You have Unholy Might while you have no Energy Shield" }, } }, - ["UniqueLocalArmourBreakOnDamage1"] = { affix = "", "Breaks Armour equal to 40% of damage from Hits with this weapon", statOrder = { 7620 }, level = 1, group = "LocalArmourBreakOnDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [949573361] = { "Breaks Armour equal to 40% of damage from Hits with this weapon" }, } }, - ["UniqueParriedDebuffDuration1"] = { affix = "", "50% increased Parried Debuff Duration", statOrder = { 9392 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "50% increased Parried Debuff Duration" }, } }, - ["UniqueParriedDebuffDuration2"] = { affix = "", "100% increased Parried Debuff Duration", statOrder = { 9392 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "100% increased Parried Debuff Duration" }, } }, - ["UniqueProjectileParryInfiniteDistance1"] = { affix = "", "Infinite Parry Range", statOrder = { 7338 }, level = 1, group = "ProjectileParryInfiniteDistance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1076031760] = { "Infinite Parry Range" }, } }, - ["UniqueLocalIncreasedProjectileSpeed1"] = { affix = "", "(20-30)% increased Projectile Speed with this Weapon", statOrder = { 7815 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(20-30)% increased Projectile Speed with this Weapon" }, } }, + ["UniqueLocalArmourBreakOnDamage1"] = { affix = "", "Breaks Armour equal to 40% of damage from Hits with this weapon", statOrder = { 7616 }, level = 1, group = "LocalArmourBreakOnDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [949573361] = { "Breaks Armour equal to 40% of damage from Hits with this weapon" }, } }, + ["UniqueParriedDebuffDuration1"] = { affix = "", "50% increased Parried Debuff Duration", statOrder = { 9383 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "50% increased Parried Debuff Duration" }, } }, + ["UniqueParriedDebuffDuration2"] = { affix = "", "100% increased Parried Debuff Duration", statOrder = { 9383 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "100% increased Parried Debuff Duration" }, } }, + ["UniqueProjectileParryInfiniteDistance1"] = { affix = "", "Infinite Parry Range", statOrder = { 7334 }, level = 1, group = "ProjectileParryInfiniteDistance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1076031760] = { "Infinite Parry Range" }, } }, + ["UniqueLocalIncreasedProjectileSpeed1"] = { affix = "", "(20-30)% increased Projectile Speed with this Weapon", statOrder = { 7811 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(20-30)% increased Projectile Speed with this Weapon" }, } }, ["UniqueLifeFlasksApplyToMinions1"] = { affix = "", "Your Life Flask also applies to your Minions", statOrder = { 1920 }, level = 30, group = "LifeFlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2397460217] = { "Your Life Flask also applies to your Minions" }, } }, ["MinionsCannotDieWhileAffectedByYourLifeFlasks1"] = { affix = "", "Minions cannot Die while affected by a Life Flask", statOrder = { 1921 }, level = 30, group = "MinionsCannotDieWhileFlasked", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4046380260] = { "Minions cannot Die while affected by a Life Flask" }, } }, ["UniqueAddedPhysicalToMinionAttacks1"] = { affix = "", "Minions deal (5-8) to (10-12) additional Attack Physical Damage", statOrder = { 3442 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [797833282] = { "Minions deal (5-8) to (10-12) additional Attack Physical Damage" }, } }, ["UniqueMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 614 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 200%" }, } }, ["UniqueMaximumQualityOverride2"] = { affix = "", "Maximum Quality is 40%", statOrder = { 614 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 40%" }, } }, - ["UniqueColdAddedAsFireChilledEnemy1"] = { affix = "", "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", statOrder = { 9283 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2469544361] = { "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy" }, } }, - ["UniqueMultipleCompanions1"] = { affix = "", "You can have two Companions of different types", statOrder = { 10666 }, level = 1, group = "MultipleCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1888024332] = { "You can have two Companions of different types" }, } }, - ["UniqueEnergyShieldAppliesElementalReduction1"] = { affix = "", "Current Energy Shield also grants Elemental Damage reduction", statOrder = { 5919 }, level = 1, group = "EnergyShieldAppliesElementalReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2342939473] = { "Current Energy Shield also grants Elemental Damage reduction" }, } }, - ["UniqueBlindOnPoison1"] = { affix = "", "Blind Targets when you Poison them", statOrder = { 4932 }, level = 1, group = "BlindOnPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [60826109] = { "Blind Targets when you Poison them" }, } }, + ["UniqueColdAddedAsFireChilledEnemy1"] = { affix = "", "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", statOrder = { 9274 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2469544361] = { "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy" }, } }, + ["UniqueMultipleCompanions1"] = { affix = "", "You can have two Companions of different types", statOrder = { 10656 }, level = 1, group = "MultipleCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1888024332] = { "You can have two Companions of different types" }, } }, + ["UniqueEnergyShieldAppliesElementalReduction1"] = { affix = "", "Current Energy Shield also grants Elemental Damage reduction", statOrder = { 5915 }, level = 1, group = "EnergyShieldAppliesElementalReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2342939473] = { "Current Energy Shield also grants Elemental Damage reduction" }, } }, + ["UniqueBlindOnPoison1"] = { affix = "", "Blind Targets when you Poison them", statOrder = { 4928 }, level = 1, group = "BlindOnPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [60826109] = { "Blind Targets when you Poison them" }, } }, ["UniquePoisonDuration1"] = { affix = "", "(10-20)% increased Poison Duration", statOrder = { 2896 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(10-20)% increased Poison Duration" }, } }, - ["UniqueIgniteEffectAgainstFrozen1"] = { affix = "", "(80-100)% increased Magnitude of Ignite against Frozen enemies", statOrder = { 7262 }, level = 1, group = "IgniteEffectAgainstFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3618434982] = { "(80-100)% increased Magnitude of Ignite against Frozen enemies" }, } }, - ["UniqueFreezeDamageIncreaseAgainstIgnited1"] = { affix = "", "(60-80)% increased Freeze Buildup against Ignited enemies", statOrder = { 7191 }, level = 1, group = "FreezeDamageIncreaseAgainstIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3751467747] = { "(60-80)% increased Freeze Buildup against Ignited enemies" }, } }, - ["UniqueColdFireSurgeOnReload"] = { affix = "", "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges", statOrder = { 6720, 6720.1 }, level = 1, group = "ColdFireSurgeOnReload", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [331648983] = { "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges" }, } }, - ["UniqueLocalAlwaysMinimumOrMaximum1"] = { affix = "", "Rolls only the minimum or maximum Damage value for each Damage Type", statOrder = { 7656 }, level = 1, group = "LocalAlwaysMinimumOrMaximum", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3108672983] = { "Rolls only the minimum or maximum Damage value for each Damage Type" }, } }, - ["UniqueElementalPenetrationBelowZero1"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 6299 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, + ["UniqueIgniteEffectAgainstFrozen1"] = { affix = "", "(80-100)% increased Magnitude of Ignite against Frozen enemies", statOrder = { 7258 }, level = 1, group = "IgniteEffectAgainstFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3618434982] = { "(80-100)% increased Magnitude of Ignite against Frozen enemies" }, } }, + ["UniqueFreezeDamageIncreaseAgainstIgnited1"] = { affix = "", "(60-80)% increased Freeze Buildup against Ignited enemies", statOrder = { 7187 }, level = 1, group = "FreezeDamageIncreaseAgainstIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3751467747] = { "(60-80)% increased Freeze Buildup against Ignited enemies" }, } }, + ["UniqueColdFireSurgeOnReload"] = { affix = "", "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges", statOrder = { 6716, 6716.1 }, level = 1, group = "ColdFireSurgeOnReload", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [331648983] = { "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges" }, } }, + ["UniqueLocalAlwaysMinimumOrMaximum1"] = { affix = "", "Rolls only the minimum or maximum Damage value for each Damage Type", statOrder = { 7652 }, level = 1, group = "LocalAlwaysMinimumOrMaximum", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3108672983] = { "Rolls only the minimum or maximum Damage value for each Damage Type" }, } }, + ["UniqueElementalPenetrationBelowZero1"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 6295 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, ["UniqueElementalPenetration1"] = { affix = "", "Damage Penetrates 10% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 10% Elemental Resistances" }, } }, ["UniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2752 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, ["UniqueSpellDamagePerManaSpent1"] = { affix = "", "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 4006 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently" }, } }, ["UniqueManaCostPerManaSpent1"] = { affix = "", "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 4005 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, - ["UniqueCannotRecoverManaExceptRegen1"] = { affix = "", "Mana Recovery other than Regeneration cannot Recover Mana", statOrder = { 5313 }, level = 1, group = "CannotRecoverManaExceptRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3593063598] = { "Mana Recovery other than Regeneration cannot Recover Mana" }, } }, + ["UniqueCannotRecoverManaExceptRegen1"] = { affix = "", "Mana Recovery other than Regeneration cannot Recover Mana", statOrder = { 5309 }, level = 1, group = "CannotRecoverManaExceptRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3593063598] = { "Mana Recovery other than Regeneration cannot Recover Mana" }, } }, ["UniqueLifeDegenerationPercentGracePeriod1"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1690 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, ["UniqueLifeDegenerationPercentGracePeriod2"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1690 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, ["UniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1690 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, - ["UniqueLocalInfinitePoisonStackCount1"] = { affix = "", "Any number of Poisons from this Weapon can affect a target at the same time", statOrder = { 7731 }, level = 1, group = "LocalInfinitePoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4021234281] = { "Any number of Poisons from this Weapon can affect a target at the same time" }, } }, - ["UniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4741 }, level = 1, group = "RageRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2853314994] = { "Regenerate 5 Rage per second" }, } }, - ["UniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 9212 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163076972] = { "No Inherent loss of Rage" }, } }, - ["UniqueChaosDamageMaximumLife1"] = { affix = "", "Attacks have added Chaos damage equal to 3% of maximum Life", statOrder = { 4463 }, level = 75, group = "ChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1141563002] = { "Attacks have added Chaos damage equal to 3% of maximum Life" }, } }, - ["UniquePhysicalDamageMaximumLife1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4464 }, level = 75, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to 3% of maximum Life" }, } }, + ["UniqueLocalInfinitePoisonStackCount1"] = { affix = "", "Any number of Poisons from this Weapon can affect a target at the same time", statOrder = { 7727 }, level = 1, group = "LocalInfinitePoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4021234281] = { "Any number of Poisons from this Weapon can affect a target at the same time" }, } }, + ["UniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4737 }, level = 1, group = "RageRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2853314994] = { "Regenerate 5 Rage per second" }, } }, + ["UniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 9203 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163076972] = { "No Inherent loss of Rage" }, } }, + ["UniqueChaosDamageMaximumLife1"] = { affix = "", "Attacks have added Chaos damage equal to 3% of maximum Life", statOrder = { 4460 }, level = 75, group = "ChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1141563002] = { "Attacks have added Chaos damage equal to 3% of maximum Life" }, } }, + ["UniquePhysicalDamageMaximumLife1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4461 }, level = 75, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to 3% of maximum Life" }, } }, ["UniqueFlammabilityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1983 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, ["UniqueHypothermiaGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1983 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, ["UniqueConductivityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1983 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, @@ -2390,90 +2387,87 @@ return { ["UniqueDespairGemLevel1"] = { affix = "", "+4 to Level of Despair Skills", statOrder = { 1982 }, level = 1, group = "DespairGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [2157870819] = { "+4 to Level of Despair Skills" }, } }, ["UniqueEnfeebleGemLevel1"] = { affix = "", "+4 to Level of Enfeeble Skills", statOrder = { 1984 }, level = 1, group = "EnfeebleGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3948285912] = { "+4 to Level of Enfeeble Skills" }, } }, ["UniqueTemporalChainsGemLevel1"] = { affix = "", "+4 to Level of Temporal Chains Skills", statOrder = { 2008 }, level = 1, group = "TemporalChainsGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1042153418] = { "+4 to Level of Temporal Chains Skills" }, } }, - ["UniqueCharmGrantsMaximumRage1"] = { affix = "", "Grants up to your maximum Rage on use", statOrder = { 5618 }, level = 1, group = "CharmGrantsMaximumRage", weightKey = { }, weightVal = { }, modTags = { "charm", "attack" }, tradeHashes = { [1509210032] = { "Grants up to your maximum Rage on use" }, } }, - ["UniqueCharmGrantsPowerCharge1"] = { affix = "", "Grants a Power Charge on use", statOrder = { 5617 }, level = 1, group = "CharmGrantsPowerCharge", weightKey = { }, weightVal = { }, modTags = { "charm", "power_charge" }, tradeHashes = { [2566921799] = { "Grants a Power Charge on use" }, } }, - ["UniqueCharmGrantsFrenzyCharge1"] = { affix = "", "Grants a Frenzy Charge on use", statOrder = { 5616 }, level = 1, group = "CharmGrantsFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "charm", "frenzy_charge" }, tradeHashes = { [280890192] = { "Grants a Frenzy Charge on use" }, } }, - ["UniqueCharmDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour during effect", statOrder = { 5608 }, level = 1, group = "CharmDoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "charm", "defences" }, tradeHashes = { [3138344128] = { "Defend with 200% of Armour during effect" }, } }, - ["UniqueCharmOnslaughtDuringEffect1"] = { affix = "", "Grants Onslaught during effect", statOrder = { 5615 }, level = 1, group = "CharmOnslaughtDuringEffect", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [618665892] = { "Grants Onslaught during effect" }, } }, - ["UniqueCharmStartEnergyShieldRecharge1"] = { affix = "", "Energy Shield Recharge starts on use", statOrder = { 5614 }, level = 1, group = "CharmStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1056492907] = { "Energy Shield Recharge starts on use" }, } }, - ["UniqueCharmCreateConsecratedGround1"] = { affix = "", "Creates Consecrated Ground on use", statOrder = { 5607 }, level = 1, group = "CharmCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3849649145] = { "Creates Consecrated Ground on use" }, } }, - ["UniqueCharmRecoverLifeBasedOnManaFlask1"] = { affix = "", "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", statOrder = { 5630 }, level = 1, group = "CharmRecoverLifeBasedOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2716923832] = { "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used" }, } }, - ["UniqueCharmRecoverManaBasedOnLifeFlask1"] = { affix = "", "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", statOrder = { 5631 }, level = 1, group = "CharmRecoverManaBasedOnLifeFlask", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [3891350097] = { "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used" }, } }, - ["UniqueCharmIgniteEnemiesInPresence1"] = { affix = "", "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life", statOrder = { 5619 }, level = 1, group = "CharmIgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "charm", "ailment" }, tradeHashes = { [39209842] = { "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life" }, } }, - ["UniqueCharmEnemyExtraLightningDamageRoll1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky during effect", statOrder = { 5613 }, level = 1, group = "CharmEnemyExtraLightningDamageRoll", weightKey = { }, weightVal = { }, modTags = { "charm", "elemental", "lightning" }, tradeHashes = { [3246948616] = { "Lightning Damage of Enemies Hitting you is Unlucky during effect" }, } }, - ["UniqueCharmRecoupChaosDamagePrevented1"] = { affix = "", "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", statOrder = { 5632 }, level = 1, group = "CharmRecoupChaosDamagePrevented", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "life", "mana", "chaos" }, tradeHashes = { [2678930256] = { "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect" }, } }, - ["UniqueCharmRandomPossess1"] = { affix = "", "Possessed by a random Spirit for 20 seconds on use", statOrder = { 5626 }, level = 1, group = "CharmRandomPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1280492469] = { "Possessed by a random Spirit for 20 seconds on use" }, } }, - ["UniqueCharmOwlPossess1"] = { affix = "", "Possessed by Spirit Of The Owl for (10-20) seconds on use", statOrder = { 5623 }, level = 1, group = "CharmOwlPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [300107724] = { "Possessed by Spirit Of The Owl for (10-20) seconds on use" }, } }, - ["UniqueCharmSerpentPossess1"] = { affix = "", "Possessed by Spirit Of The Serpent for (10-20) seconds on use", statOrder = { 5627 }, level = 1, group = "CharmSerpentPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3181677174] = { "Possessed by Spirit Of The Serpent for (10-20) seconds on use" }, } }, - ["UniqueCharmPrimatePossess1"] = { affix = "", "Possessed by Spirit Of The Primate for (10-20) seconds on use", statOrder = { 5625 }, level = 1, group = "CharmPrimatePossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3763491818] = { "Possessed by Spirit Of The Primate for (10-20) seconds on use" }, } }, - ["UniqueCharmBearPossess1"] = { affix = "", "Possessed by Spirit Of The Bear for (10-20) seconds on use", statOrder = { 5620 }, level = 1, group = "CharmBearPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3403424702] = { "Possessed by Spirit Of The Bear for (10-20) seconds on use" }, } }, - ["UniqueCharmBoarPossess1"] = { affix = "", "Possessed by Spirit Of The Boar for (10-20) seconds on use", statOrder = { 5621 }, level = 1, group = "CharmBoarPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1685559578] = { "Possessed by Spirit Of The Boar for (10-20) seconds on use" }, } }, - ["UniqueCharmOxPossess1"] = { affix = "", "Possessed by Spirit Of The Ox for (10-20) seconds on use", statOrder = { 5624 }, level = 1, group = "CharmOxPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3463873033] = { "Possessed by Spirit Of The Ox for (10-20) seconds on use" }, } }, - ["UniqueCharmWolfPossess1"] = { affix = "", "Possessed by Spirit Of The Wolf for (10-20) seconds on use", statOrder = { 5629 }, level = 1, group = "CharmWolfPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3504441212] = { "Possessed by Spirit Of The Wolf for (10-20) seconds on use" }, } }, - ["UniqueCharmStagPossess1"] = { affix = "", "Possessed by Spirit Of The Stag for (10-20) seconds on use", statOrder = { 5628 }, level = 1, group = "CharmStagPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3685424517] = { "Possessed by Spirit Of The Stag for (10-20) seconds on use" }, } }, - ["UniqueCharmCatPossess1"] = { affix = "", "Possessed by Spirit Of The Cat for (10-20) seconds on use", statOrder = { 5622 }, level = 1, group = "CharmCatPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2839557359] = { "Possessed by Spirit Of The Cat for (10-20) seconds on use" }, } }, + ["UniqueCharmGrantsMaximumRage1"] = { affix = "", "Grants up to your maximum Rage on use", statOrder = { 5614 }, level = 1, group = "CharmGrantsMaximumRage", weightKey = { }, weightVal = { }, modTags = { "charm", "attack" }, tradeHashes = { [1509210032] = { "Grants up to your maximum Rage on use" }, } }, + ["UniqueCharmGrantsPowerCharge1"] = { affix = "", "Grants a Power Charge on use", statOrder = { 5613 }, level = 1, group = "CharmGrantsPowerCharge", weightKey = { }, weightVal = { }, modTags = { "charm", "power_charge" }, tradeHashes = { [2566921799] = { "Grants a Power Charge on use" }, } }, + ["UniqueCharmGrantsFrenzyCharge1"] = { affix = "", "Grants a Frenzy Charge on use", statOrder = { 5612 }, level = 1, group = "CharmGrantsFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "charm", "frenzy_charge" }, tradeHashes = { [280890192] = { "Grants a Frenzy Charge on use" }, } }, + ["UniqueCharmDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour during effect", statOrder = { 5604 }, level = 1, group = "CharmDoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "charm", "defences" }, tradeHashes = { [3138344128] = { "Defend with 200% of Armour during effect" }, } }, + ["UniqueCharmOnslaughtDuringEffect1"] = { affix = "", "Grants Onslaught during effect", statOrder = { 5611 }, level = 1, group = "CharmOnslaughtDuringEffect", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [618665892] = { "Grants Onslaught during effect" }, } }, + ["UniqueCharmStartEnergyShieldRecharge1"] = { affix = "", "Energy Shield Recharge starts on use", statOrder = { 5610 }, level = 1, group = "CharmStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1056492907] = { "Energy Shield Recharge starts on use" }, } }, + ["UniqueCharmCreateConsecratedGround1"] = { affix = "", "Creates Consecrated Ground on use", statOrder = { 5603 }, level = 1, group = "CharmCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3849649145] = { "Creates Consecrated Ground on use" }, } }, + ["UniqueCharmRecoverLifeBasedOnManaFlask1"] = { affix = "", "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", statOrder = { 5626 }, level = 1, group = "CharmRecoverLifeBasedOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2716923832] = { "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used" }, } }, + ["UniqueCharmRecoverManaBasedOnLifeFlask1"] = { affix = "", "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", statOrder = { 5627 }, level = 1, group = "CharmRecoverManaBasedOnLifeFlask", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [3891350097] = { "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used" }, } }, + ["UniqueCharmIgniteEnemiesInPresence1"] = { affix = "", "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life", statOrder = { 5615 }, level = 1, group = "CharmIgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "charm", "ailment" }, tradeHashes = { [39209842] = { "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life" }, } }, + ["UniqueCharmEnemyExtraLightningDamageRoll1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky during effect", statOrder = { 5609 }, level = 1, group = "CharmEnemyExtraLightningDamageRoll", weightKey = { }, weightVal = { }, modTags = { "charm", "elemental", "lightning" }, tradeHashes = { [3246948616] = { "Lightning Damage of Enemies Hitting you is Unlucky during effect" }, } }, + ["UniqueCharmRecoupChaosDamagePrevented1"] = { affix = "", "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", statOrder = { 5628 }, level = 1, group = "CharmRecoupChaosDamagePrevented", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "life", "mana", "chaos" }, tradeHashes = { [2678930256] = { "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect" }, } }, + ["UniqueCharmRandomPossess1"] = { affix = "", "Possessed by a random Spirit for 20 seconds on use", statOrder = { 5622 }, level = 1, group = "CharmRandomPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1280492469] = { "Possessed by a random Spirit for 20 seconds on use" }, } }, + ["UniqueCharmOwlPossess1"] = { affix = "", "Possessed by Spirit Of The Owl for (10-20) seconds on use", statOrder = { 5619 }, level = 1, group = "CharmOwlPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [300107724] = { "Possessed by Spirit Of The Owl for (10-20) seconds on use" }, } }, + ["UniqueCharmSerpentPossess1"] = { affix = "", "Possessed by Spirit Of The Serpent for (10-20) seconds on use", statOrder = { 5623 }, level = 1, group = "CharmSerpentPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3181677174] = { "Possessed by Spirit Of The Serpent for (10-20) seconds on use" }, } }, + ["UniqueCharmPrimatePossess1"] = { affix = "", "Possessed by Spirit Of The Primate for (10-20) seconds on use", statOrder = { 5621 }, level = 1, group = "CharmPrimatePossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3763491818] = { "Possessed by Spirit Of The Primate for (10-20) seconds on use" }, } }, + ["UniqueCharmBearPossess1"] = { affix = "", "Possessed by Spirit Of The Bear for (10-20) seconds on use", statOrder = { 5616 }, level = 1, group = "CharmBearPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3403424702] = { "Possessed by Spirit Of The Bear for (10-20) seconds on use" }, } }, + ["UniqueCharmBoarPossess1"] = { affix = "", "Possessed by Spirit Of The Boar for (10-20) seconds on use", statOrder = { 5617 }, level = 1, group = "CharmBoarPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1685559578] = { "Possessed by Spirit Of The Boar for (10-20) seconds on use" }, } }, + ["UniqueCharmOxPossess1"] = { affix = "", "Possessed by Spirit Of The Ox for (10-20) seconds on use", statOrder = { 5620 }, level = 1, group = "CharmOxPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3463873033] = { "Possessed by Spirit Of The Ox for (10-20) seconds on use" }, } }, + ["UniqueCharmWolfPossess1"] = { affix = "", "Possessed by Spirit Of The Wolf for (10-20) seconds on use", statOrder = { 5625 }, level = 1, group = "CharmWolfPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3504441212] = { "Possessed by Spirit Of The Wolf for (10-20) seconds on use" }, } }, + ["UniqueCharmStagPossess1"] = { affix = "", "Possessed by Spirit Of The Stag for (10-20) seconds on use", statOrder = { 5624 }, level = 1, group = "CharmStagPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3685424517] = { "Possessed by Spirit Of The Stag for (10-20) seconds on use" }, } }, + ["UniqueCharmCatPossess1"] = { affix = "", "Possessed by Spirit Of The Cat for (10-20) seconds on use", statOrder = { 5618 }, level = 1, group = "CharmCatPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2839557359] = { "Possessed by Spirit Of The Cat for (10-20) seconds on use" }, } }, ["UniqueMaximumLifePerStackableJewel1"] = { affix = "", "2% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3816 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "2% increased Maximum Life per socketed Grand Spectrum" }, } }, ["UniqueAllResistancePerStackableJewel1"] = { affix = "", "+6% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3815 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [242161915] = { "+6% to all Elemental Resistances per socketed Grand Spectrum" }, } }, - ["UniqueMaximumSpiritPerStackableJewel1"] = { affix = "", "2% increased Spirit per socketed Grand Spectrum", statOrder = { 10063 }, level = 1, group = "MaximumSpiritPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1430165758] = { "2% increased Spirit per socketed Grand Spectrum" }, } }, - ["UniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire Damage Converted to Cold Damage", statOrder = { 9276 }, level = 1, group = "FireDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503160529] = { "100% of Fire Damage Converted to Cold Damage" }, } }, - ["UniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 9277 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, + ["UniqueMaximumSpiritPerStackableJewel1"] = { affix = "", "2% increased Spirit per socketed Grand Spectrum", statOrder = { 10054 }, level = 1, group = "MaximumSpiritPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1430165758] = { "2% increased Spirit per socketed Grand Spectrum" }, } }, + ["UniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire Damage Converted to Cold Damage", statOrder = { 9267 }, level = 1, group = "FireDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503160529] = { "100% of Fire Damage Converted to Cold Damage" }, } }, + ["UniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 9268 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, ["UniqueLightningDamageConvertToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1713 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, ["UniqueColdDamageConvertToLightning1"] = { affix = "", "100% of Cold Damage Converted to Lightning Damage", statOrder = { 1716 }, level = 1, group = "ColdDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1686824704] = { "100% of Cold Damage Converted to Lightning Damage" }, } }, ["UniqueLightningDamageConvertToChaos1"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1714 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["UniqueElementalDamageConvertToFire1"] = { affix = "", "33% of Elemental Damage Converted to Fire Damage", statOrder = { 9274 }, level = 1, group = "ElementalDamageConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [40154188] = { "33% of Elemental Damage Converted to Fire Damage" }, } }, - ["UniqueElementalDamageConvertToCold1"] = { affix = "", "33% of Elemental Damage Converted to Cold Damage", statOrder = { 9273 }, level = 1, group = "ElementalDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [210092264] = { "33% of Elemental Damage Converted to Cold Damage" }, } }, - ["UniqueElementalDamageConvertToLightning1"] = { affix = "", "33% of Elemental Damage Converted to Lightning Damage", statOrder = { 9275 }, level = 1, group = "ElementalDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289540902] = { "33% of Elemental Damage Converted to Lightning Damage" }, } }, - ["UniqueElementalDamageConvertToChaos1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 9272 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, - ["UniquePainAttunement1"] = { affix = "", "Pain Attunement", statOrder = { 10717 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["UniqueIronReflexes1"] = { affix = "", "Iron Reflexes", statOrder = { 10711 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["UniqueBloodMagic1"] = { affix = "", "Blood Magic", statOrder = { 10685 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, - ["UniqueVaalPact1"] = { affix = "", "Vaal Pact", statOrder = { 10725 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, - ["UniqueEldritchBattery1"] = { affix = "", "Eldritch Battery", statOrder = { 10697 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["UniqueGiantsBlood1"] = { affix = "", "Giant's Blood", statOrder = { 10704 }, level = 1, group = "GiantsBlood", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1875158664] = { "Giant's Blood" }, } }, - ["UniqueUnwaveringStance1"] = { affix = "", "Unwavering Stance", statOrder = { 10724 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["UniqueIronGrip1"] = { affix = "", "Iron Grip", statOrder = { 10710 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3528245713] = { "Iron Grip" }, } }, - ["UniqueIronWill1"] = { affix = "", "Iron Will", statOrder = { 10712 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, - ["UniqueEverlastingSacrifice1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10702 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, - ["UniqueRandomKeystoneFromTable1"] = { affix = "", "(1-33)", statOrder = { 10672 }, level = 1, group = "UniqueVivisectionRandomKeystone", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3831171903] = { "(1-33)" }, } }, - ["UniqueZealotsOath1"] = { affix = "", "Zealot's Oath", statOrder = { 10728 }, level = 1, group = "ZealotsOathKeystone1", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [1315418254] = { "Zealot's Oath" }, } }, - ["UniqueVivisectionPriceLife1"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 10471 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, - ["UniqueVivisectionPriceMana1"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 10472 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, - ["UniqueVivisectionPriceDefences1"] = { affix = "", "(10-20)% less Armour, Evasion and Energy Shield", statOrder = { 10470 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1803659985] = { "(10-20)% less Armour, Evasion and Energy Shield" }, } }, - ["UniqueVivisectionPriceSpirit1"] = { affix = "", "(10-20)% less Spirit", statOrder = { 10474 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, - ["UniqueVivisectionPriceMovementSpeed1"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 10473 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, - ["UniqueVivisectionPriceDamage1"] = { affix = "", "(10-20)% less Damage", statOrder = { 10469 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, + ["UniqueElementalDamageConvertToFire1"] = { affix = "", "33% of Elemental Damage Converted to Fire Damage", statOrder = { 9265 }, level = 1, group = "ElementalDamageConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [40154188] = { "33% of Elemental Damage Converted to Fire Damage" }, } }, + ["UniqueElementalDamageConvertToCold1"] = { affix = "", "33% of Elemental Damage Converted to Cold Damage", statOrder = { 9264 }, level = 1, group = "ElementalDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [210092264] = { "33% of Elemental Damage Converted to Cold Damage" }, } }, + ["UniqueElementalDamageConvertToLightning1"] = { affix = "", "33% of Elemental Damage Converted to Lightning Damage", statOrder = { 9266 }, level = 1, group = "ElementalDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289540902] = { "33% of Elemental Damage Converted to Lightning Damage" }, } }, + ["UniqueElementalDamageConvertToChaos1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 9263 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, + ["UniquePainAttunement1"] = { affix = "", "Pain Attunement", statOrder = { 10707 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, + ["UniqueIronReflexes1"] = { affix = "", "Iron Reflexes", statOrder = { 10701 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, + ["UniqueBloodMagic1"] = { affix = "", "Blood Magic", statOrder = { 10675 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, + ["UniqueVaalPact1"] = { affix = "", "Vaal Pact", statOrder = { 10715 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, + ["UniqueEldritchBattery1"] = { affix = "", "Eldritch Battery", statOrder = { 10687 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, + ["UniqueGiantsBlood1"] = { affix = "", "Giant's Blood", statOrder = { 10694 }, level = 1, group = "GiantsBlood", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1875158664] = { "Giant's Blood" }, } }, + ["UniqueUnwaveringStance1"] = { affix = "", "Unwavering Stance", statOrder = { 10714 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["UniqueIronGrip1"] = { affix = "", "Iron Grip", statOrder = { 10700 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3528245713] = { "Iron Grip" }, } }, + ["UniqueIronWill1"] = { affix = "", "Iron Will", statOrder = { 10702 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, + ["UniqueEverlastingSacrifice1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10692 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, + ["UniqueRandomKeystoneFromTable1"] = { affix = "", "(1-33)", statOrder = { 10662 }, level = 1, group = "UniqueVivisectionRandomKeystone", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3831171903] = { "(1-33)" }, } }, + ["UniqueZealotsOath1"] = { affix = "", "Zealot's Oath", statOrder = { 10718 }, level = 1, group = "ZealotsOathKeystone1", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [1315418254] = { "Zealot's Oath" }, } }, + ["UniqueVivisectionPriceLife1"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 10461 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, + ["UniqueVivisectionPriceMana1"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 10462 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, + ["UniqueVivisectionPriceDefences1"] = { affix = "", "(10-20)% less Armour, Evasion and Energy Shield", statOrder = { 10460 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1803659985] = { "(10-20)% less Armour, Evasion and Energy Shield" }, } }, + ["UniqueVivisectionPriceSpirit1"] = { affix = "", "(10-20)% less Spirit", statOrder = { 10464 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, + ["UniqueVivisectionPriceMovementSpeed1"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 10463 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, + ["UniqueVivisectionPriceDamage1"] = { affix = "", "(10-20)% less Damage", statOrder = { 10459 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, ["UniqueMultipleAnointments1"] = { affix = "", "Can have 3 additional Instilled Modifiers", statOrder = { 16 }, level = 66, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1135194732] = { "Can have 3 additional Instilled Modifiers" }, } }, - ["UniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Fire Damage", statOrder = { 9268 }, level = 1, group = "ElementalDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [701564564] = { "Gain (5-10)% of Elemental Damage as Extra Fire Damage" }, } }, - ["UniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Cold Damage", statOrder = { 9266 }, level = 1, group = "ElementalDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1158842087] = { "Gain (5-10)% of Elemental Damage as Extra Cold Damage" }, } }, - ["UniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Lightning Damage", statOrder = { 9270 }, level = 1, group = "ElementalDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3550887155] = { "Gain (5-10)% of Elemental Damage as Extra Lightning Damage" }, } }, + ["UniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Fire Damage", statOrder = { 9259 }, level = 1, group = "ElementalDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [701564564] = { "Gain (5-10)% of Elemental Damage as Extra Fire Damage" }, } }, + ["UniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Cold Damage", statOrder = { 9257 }, level = 1, group = "ElementalDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1158842087] = { "Gain (5-10)% of Elemental Damage as Extra Cold Damage" }, } }, + ["UniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Lightning Damage", statOrder = { 9261 }, level = 1, group = "ElementalDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3550887155] = { "Gain (5-10)% of Elemental Damage as Extra Lightning Damage" }, } }, ["UniqueCannotEvade1"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1657 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [474452755] = { "Cannot Evade Enemy Attacks" }, } }, - ["UniqueLifeRegenerationWhileSurrounded1"] = { affix = "", "Regenerate 5% of maximum Life per second while Surrounded", statOrder = { 7510 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2002533190] = { "Regenerate 5% of maximum Life per second while Surrounded" }, } }, - ["UniqueLessEnemiesToBeSurrounded1"] = { affix = "", "Require (2-4) fewer enemies to be Surrounded", statOrder = { 9763 }, level = 1, group = "LessEnemiesToBeSurrounded1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2267564181] = { "Require (2-4) fewer enemies to be Surrounded" }, } }, + ["UniqueLifeRegenerationWhileSurrounded1"] = { affix = "", "Regenerate 5% of maximum Life per second while Surrounded", statOrder = { 7506 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2002533190] = { "Regenerate 5% of maximum Life per second while Surrounded" }, } }, + ["UniqueLessEnemiesToBeSurrounded1"] = { affix = "", "Require (2-4) fewer enemies to be Surrounded", statOrder = { 9754 }, level = 1, group = "LessEnemiesToBeSurrounded1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2267564181] = { "Require (2-4) fewer enemies to be Surrounded" }, } }, ["UniqueChillDuration1"] = { affix = "", "30% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "30% increased Chill Duration on Enemies" }, } }, ["UniqueChillDuration2"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "25% increased Chill Duration on Enemies" }, } }, - ["UniqueBleedEffect1"] = { affix = "", "(15-25)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(15-25)% increased Magnitude of Bleeding you inflict" }, } }, - ["UniquePoisonEffect1"] = { affix = "", "(15-25)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(15-25)% increased Magnitude of Poison you inflict" }, } }, + ["UniqueBleedEffect1"] = { affix = "", "(15-25)% increased Magnitude of Bleeding you inflict", statOrder = { 4805 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(15-25)% increased Magnitude of Bleeding you inflict" }, } }, + ["UniquePoisonEffect1"] = { affix = "", "(15-25)% increased Magnitude of Poison you inflict", statOrder = { 9489 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(15-25)% increased Magnitude of Poison you inflict" }, } }, ["UniqueBlockChanceFromArmourOnEquipment1"] = { affix = "", "(3-5)% increased Block chance per 100 total Item Armour on Equipped Armour Items", statOrder = { 1134 }, level = 1, group = "UniqueBlockChancePerBaseArmour", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2531622767] = { "(3-5)% increased Block chance per 100 total Item Armour on Equipped Armour Items" }, } }, - ["UniqueProjectilesReturnIfPiercedArmourBroken1"] = { affix = "", "Arrows Return if they have Pierced a target which had Fully Broken Armour", statOrder = { 4437 }, level = 1, group = "UniqueProjectilesReturnIfPiercedArmourBroken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1243721142] = { "Arrows Return if they have Pierced a target which had Fully Broken Armour" }, } }, - ["UniqueManaCostEfficiency1"] = { affix = "", "(20-40)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(20-40)% increased Mana Cost Efficiency" }, } }, - ["UniqueOverencumbranceOnDodge1"] = { affix = "", "Gain Overencumbrance for 4 seconds when you Dodge Roll", statOrder = { 9373 }, level = 1, group = "UniqueOvercumbranceOnDodge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2148576938] = { "Gain Overencumbrance for 4 seconds when you Dodge Roll" }, } }, - ["UniqueUnaffectedBySlowsWhileSprinting1"] = { affix = "", "Your speed is Unaffected by Slows while Sprinting", statOrder = { 9939 }, level = 1, group = "UniqueAvoidSlowsWhileSprinting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3128773415] = { "Your speed is Unaffected by Slows while Sprinting" }, } }, + ["UniqueProjectilesReturnIfPiercedArmourBroken1"] = { affix = "", "Arrows Return if they have Pierced a target which had Fully Broken Armour", statOrder = { 4434 }, level = 1, group = "UniqueProjectilesReturnIfPiercedArmourBroken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1243721142] = { "Arrows Return if they have Pierced a target which had Fully Broken Armour" }, } }, + ["UniqueManaCostEfficiency1"] = { affix = "", "(20-40)% increased Mana Cost Efficiency", statOrder = { 4714 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(20-40)% increased Mana Cost Efficiency" }, } }, + ["UniqueOverencumbranceOnDodge1"] = { affix = "", "Gain Overencumbrance for 4 seconds when you Dodge Roll", statOrder = { 9364 }, level = 1, group = "UniqueOvercumbranceOnDodge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2148576938] = { "Gain Overencumbrance for 4 seconds when you Dodge Roll" }, } }, + ["UniqueUnaffectedBySlowsWhileSprinting1"] = { affix = "", "Your speed is Unaffected by Slows while Sprinting", statOrder = { 9930 }, level = 1, group = "UniqueAvoidSlowsWhileSprinting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3128773415] = { "Your speed is Unaffected by Slows while Sprinting" }, } }, ["UniqueFireColdResistance1"] = { affix = "", "+(10-20)% to Fire and Cold Resistances", statOrder = { 1016 }, level = 1, group = "FireColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-20)% to Fire and Cold Resistances" }, } }, ["UniqueFireLightningResistance1"] = { affix = "", "+(10-20)% to Fire and Lightning Resistances", statOrder = { 1018 }, level = 1, group = "FireLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(10-20)% to Fire and Lightning Resistances" }, } }, ["UniqueColdLightningResistance1"] = { affix = "", "+(10-20)% to Cold and Lightning Resistances", statOrder = { 1021 }, level = 1, group = "ColdLightningResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "lightning_resistance", "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(10-20)% to Cold and Lightning Resistances" }, } }, - ["UniqueLifeRegenerationWhileIgnited1"] = { affix = "", "Regenerate (1-2)% of maximum Life per second while Ignited", statOrder = { 7488 }, level = 1, group = "LifeRegenerationWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [302024054] = { "Regenerate (1-2)% of maximum Life per second while Ignited" }, } }, - ["UniqueReducedCriticalDamageTakenWhileChilled1"] = { affix = "", "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled", statOrder = { 6406 }, level = 1, group = "ReducedCriticalDamageTakenWhileChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3923947492] = { "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled" }, } }, - ["UniqueCriticalDamageBonusWhileShocked1"] = { affix = "", "(15-25)% increased Critical Damage Bonus while Shocked", statOrder = { 5808 }, level = 1, group = "CriticalDamageBonusWhileShocked", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2408983956] = { "(15-25)% increased Critical Damage Bonus while Shocked" }, } }, - ["UniqueDamagePerElementalAilment1"] = { affix = "", "(10-20)% increased Damage for each type of Elemental Ailment on Enemy", statOrder = { 5954 }, level = 1, group = "DamagePerElementalAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3388405805] = { "(10-20)% increased Damage for each type of Elemental Ailment on Enemy" }, } }, - ["UniqueWindSkillsBoostedByShockedGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground", statOrder = { 10543, 10543.1 }, level = 53, group = "WindSkillsBoostedByShockedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground" }, } }, - ["UniqueWindSkillsBoostedByChilledGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground", statOrder = { 10543, 10543.1 }, level = 53, group = "WindSkillsBoostedByChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground" }, } }, - ["UniqueWindSkillsBoostedByIgnitedGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground", statOrder = { 10543, 10543.1 }, level = 53, group = "WindSkillsBoostedByIgnitedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground" }, } }, - ["UniqueWindSkillsBoostedByAllElementalGrounds1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground", statOrder = { 10542, 10543, 10543.1 }, level = 53, group = "WindSkillsBoostedByElementalGrounds", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground" }, [2070837434] = { "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces" }, } }, + ["UniqueLifeRegenerationWhileIgnited1"] = { affix = "", "Regenerate (1-2)% of maximum Life per second while Ignited", statOrder = { 7484 }, level = 1, group = "LifeRegenerationWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [302024054] = { "Regenerate (1-2)% of maximum Life per second while Ignited" }, } }, + ["UniqueReducedCriticalDamageTakenWhileChilled1"] = { affix = "", "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled", statOrder = { 6402 }, level = 1, group = "ReducedCriticalDamageTakenWhileChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3923947492] = { "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled" }, } }, + ["UniqueCriticalDamageBonusWhileShocked1"] = { affix = "", "(15-25)% increased Critical Damage Bonus while Shocked", statOrder = { 5804 }, level = 1, group = "CriticalDamageBonusWhileShocked", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2408983956] = { "(15-25)% increased Critical Damage Bonus while Shocked" }, } }, + ["UniqueDamagePerElementalAilment1"] = { affix = "", "(10-20)% increased Damage for each type of Elemental Ailment on Enemy", statOrder = { 5950 }, level = 1, group = "DamagePerElementalAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3388405805] = { "(10-20)% increased Damage for each type of Elemental Ailment on Enemy" }, } }, + ["UniqueWindSkillsBoostedByShockedGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground", statOrder = { 10533, 10533.1 }, level = 53, group = "WindSkillsBoostedByShockedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground" }, } }, + ["UniqueWindSkillsBoostedByChilledGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground", statOrder = { 10533, 10533.1 }, level = 53, group = "WindSkillsBoostedByChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground" }, } }, + ["UniqueWindSkillsBoostedByIgnitedGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground", statOrder = { 10533, 10533.1 }, level = 53, group = "WindSkillsBoostedByIgnitedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground" }, } }, + ["UniqueWindSkillsBoostedByAllElementalGrounds1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground", statOrder = { 10532, 10533, 10533.1 }, level = 53, group = "WindSkillsBoostedByElementalGrounds", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground" }, [2070837434] = { "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces" }, } }, ["UniqueCannotInflictElementalAilments1"] = { affix = "", "Cannot inflict Elemental Ailments", statOrder = { 1618 }, level = 1, group = "CannotApplyElementalAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [4056809290] = { "Cannot inflict Elemental Ailments" }, } }, - ["UniqueRevealWeakness1"] = { affix = "", "Reveal Weaknesses against Rare and Unique enemies", statOrder = { 4103 }, level = 1, group = "UniqueRevealWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [110659965] = { "Reveal Weaknesses against Rare and Unique enemies" }, } }, - ["UniqueSoulEaterOpenWeakness1"] = { affix = "", "Eat a Soul on Hitting an enemy with an Open Weakness", statOrder = { 4104 }, level = 1, group = "UniqueSoulEaterAgainstOpenWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1393838912] = { "Eat a Soul on Hitting an enemy with an Open Weakness" }, } }, - ["UniqueRecoupLifeOpenWeakness1"] = { affix = "", "(80-100)% of damage taken from enemies with an Open Weakness Recouped as Life", statOrder = { 4105 }, level = 1, group = "UniqueRecoupLifeAgainstOpenWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2285766967] = { "(80-100)% of damage taken from enemies with an Open Weakness Recouped as Life" }, } }, - ["DemigodsVirtue1"] = { affix = "", "Virtuous", statOrder = { 10674 }, level = 1, group = "DemigodsVirtue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1132041585] = { "Virtuous" }, } }, + ["DemigodsVirtue1"] = { affix = "", "Virtuous", statOrder = { 10664 }, level = 1, group = "DemigodsVirtue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1132041585] = { "Virtuous" }, } }, ["DemigodItemFoundRarityIncrease1"] = { affix = "", "25% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "25% increased Rarity of Items found" }, } }, ["DemigodMovementVelocity1"] = { affix = "", "20% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, ["DemigodIncreasedSkillSpeed1"] = { affix = "", "10% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "10% increased Skill Speed" }, } }, @@ -2509,8 +2503,8 @@ return { ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1702 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "50% of Physical Damage Converted to Fire Damage" }, } }, ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1702 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "30% of Physical Damage Converted to Fire Damage" }, } }, ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1702 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "(0-50)% of Physical Damage Converted to Fire Damage" }, } }, - ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "30% reduced Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(15-25)% increased Flask Charges gained" }, } }, + ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 6636 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "30% reduced Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 6636 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(15-25)% increased Flask Charges gained" }, } }, ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 1049 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-20)% increased Flask Charges used" }, } }, ["BeltIncreasedFlaskChargedUsedUnique__2"] = { affix = "", "(7-10)% reduced Flask Charges used", statOrder = { 1049 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(7-10)% reduced Flask Charges used" }, } }, ["BeltIncreasedFlaskDurationUnique__2"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "60% increased Flask Effect Duration" }, } }, @@ -2532,13 +2526,13 @@ return { ["FlaskLifeRecoveryRateUniqueSceptre5"] = { affix = "", "10% reduced Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "10% reduced Flask Life Recovery rate" }, } }, ["FlaskManaRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "50% increased Flask Mana Recovery rate" }, } }, ["FlaskManaRecoveryRateUniqueSceptre5"] = { affix = "", "(30-40)% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(30-40)% increased Flask Mana Recovery rate" }, } }, - ["BeltIncreasedFlaskChargesGainedUniqueBelt2"] = { affix = "", "50% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "50% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGainedUniqueBelt2"] = { affix = "", "50% increased Flask Charges gained", statOrder = { 6636 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "50% increased Flask Charges gained" }, } }, ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "20% increased Flask Effect Duration" }, } }, ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "25% increased Chill Duration on Enemies" }, } }, ["IncreasedChillDurationUniqueBodyStrInt3"] = { affix = "", "150% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "150% increased Chill Duration on Enemies" }, } }, ["IncreasedChillDurationUniqueQuiver5"] = { affix = "", "(30-40)% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 13, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(30-40)% increased Chill Duration on Enemies" }, } }, ["IncreasedChillDurationUnique__1"] = { affix = "", "(35-50)% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(35-50)% increased Chill Duration on Enemies" }, } }, - ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10676 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [383557755] = { "Acrobatics" }, } }, + ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10666 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [383557755] = { "Acrobatics" }, } }, ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 55 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493091477] = { "Has no Sockets" }, } }, ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1597 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (2-5) Physical Damage to Melee Attackers" }, } }, @@ -2561,7 +2555,7 @@ return { ["AttackerTakesDamageUniqueHelmetDex3"] = { affix = "", "Reflects 4 Physical Damage to Melee Attackers", statOrder = { 905 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects 4 Physical Damage to Melee Attackers" }, } }, ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 1930 }, level = 1, group = "AttackerTakesDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2970307386] = { "Reflects 100 to 150 Physical Damage to Melee Attackers" }, } }, ["TakesDamageWhenAttackedUniqueIntHelmet1"] = { affix = "", "+25 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3441651621] = { "+25 Physical Damage taken from Attack Hits" }, } }, - ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10717 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, + ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10707 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1471 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1471 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "(30-50)% reduced Experience gain" }, } }, ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1471 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "3% increased Experience gain" }, } }, @@ -2619,7 +2613,7 @@ return { ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1707 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "(0-50)% of Physical Damage Converted to Lightning Damage" }, } }, ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1178 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "30% increased Attack Speed when on Full Life" }, } }, ["AttackSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "15% increased Attack Speed when on Full Life", statOrder = { 1178 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "15% increased Attack Speed when on Full Life" }, } }, - ["Conduit"] = { affix = "", "Conduit", statOrder = { 10690 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1994392904] = { "Conduit" }, } }, + ["Conduit"] = { affix = "", "Conduit", statOrder = { 10680 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1994392904] = { "Conduit" }, } }, ["PhysicalAttackDamageReducedUniqueAmulet8"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 25, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-4 Physical Damage taken from Attack Hits" }, } }, ["PhysicalAttackDamageReducedUniqueBelt3"] = { affix = "", "-2 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-2 Physical Damage taken from Attack Hits" }, } }, ["PhysicalAttackDamageReducedUniqueBodyStr2"] = { affix = "", "-(15-10) Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(15-10) Physical Damage taken from Attack Hits" }, } }, @@ -2689,7 +2683,7 @@ return { ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5"] = { affix = "", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 182 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, } }, ["SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "Socketed Gems are Supported by Level 5 Increased Area of Effect", statOrder = { 182 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 5 Increased Area of Effect" }, } }, ["SocketedGemsGetIncreasedAreaOfEffectUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 288 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3561676020] = { "Socketed Gems are Supported by Level 10 Intensify" }, } }, - ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 10755 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403461239] = { "Extra gore" }, } }, + ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 10745 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403461239] = { "Extra gore" }, } }, ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 63 }, level = 1, group = "OneSocketEachColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3146680230] = { "Has one socket of each colour" }, } }, ["BlockWhileDualWieldingUniqueDagger3"] = { affix = "", "+12% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+12% Chance to Block Attack Damage while Dual Wielding" }, } }, ["BlockWhileDualWieldingUniqueTwoHandAxe6"] = { affix = "", "+(8-12)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(8-12)% Chance to Block Attack Damage while Dual Wielding" }, } }, @@ -2698,18 +2692,18 @@ return { ["BlockWhileDualWieldingUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+10% Chance to Block Attack Damage while Dual Wielding" }, } }, ["BlockWhileDualWieldingUnique__2_"] = { affix = "", "+18% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+18% Chance to Block Attack Damage while Dual Wielding" }, } }, ["MaximumMinionCountUniqueBootsInt4"] = { affix = "", "+1 to Level of all Raise Zombie Gems", "+1 to Level of all Raise Spectre Gems", statOrder = { 1477, 1478 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [2739830820] = { "+1 to Level of all Raise Zombie Gems" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, - ["MaximumMinionCountUniqueTwoHandSword4"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 9341 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueTwoHandSword4"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 9332 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 1901 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1900 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 9341 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, + ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 9332 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 1901 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1900 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9886, 9887, 9890 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, + ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9877, 9878, 9881 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1900 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1900 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, - ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9890 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, - ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 9886 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, } }, - ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 9887 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, } }, + ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9881 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, + ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 9877 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, } }, + ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 9878 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, } }, ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 389 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, ["SocketedGemsHaveBloodMagicUniqueOneHandSword7"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 389 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, ["SocketedGemsHaveBloodMagicUnique__1"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 389 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, @@ -2721,8 +2715,8 @@ return { ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "(10-20)% of Physical Damage Converted to Chaos Damage" }, } }, ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 9282 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [1422721322] = { "1% of Physical Damage Converted to Chaos Damage per Level" }, } }, - ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 9341 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 9273 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [1422721322] = { "1% of Physical Damage Converted to Chaos Damage per Level" }, } }, + ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 9332 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 1901 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 119 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, ["ChaosTakenOnES"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield", statOrder = { 2290 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [133168938] = { "Chaos Damage taken does not cause double loss of Energy Shield" }, } }, @@ -2751,10 +2745,10 @@ return { ["UniqueAdditionalBlockChance1"] = { affix = "", "+25% to Block chance", statOrder = { 1123 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+25% to Block chance" }, } }, ["AdditionalBlockUnique__1"] = { affix = "", "+(2-4)% to Block chance", statOrder = { 1123 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(2-4)% to Block chance" }, } }, ["AdditionalBlockUnique__2"] = { affix = "", "+15% to Block chance", statOrder = { 1123 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+15% to Block chance" }, } }, - ["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 4651 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1829238593] = { "Arrows Pierce all Targets" }, } }, + ["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 4648 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1829238593] = { "Arrows Pierce all Targets" }, } }, ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1550 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1550 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5771 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, + ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5767 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1130 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2538694749] = { "+8% Chance to Block Attack Damage while Dual Wielding Claws" }, } }, ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2245 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+25% chance to Block Projectile Attack Damage" }, } }, ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2246 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "mana", "energy_shield" }, tradeHashes = { [1336164384] = { "Cannot Leech" }, } }, @@ -2811,8 +2805,8 @@ return { ["CausesBleedingUnique__1Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, ["CausesBleedingUnique__2"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2262 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, ["CausesBleedingUnique__2Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CauseseBleedingOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Bleeding on Critical Hit", statOrder = { 7635 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [513681673] = { "50% chance to Cause Bleeding on Critical Hit" }, } }, - ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7638 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, + ["CauseseBleedingOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Bleeding on Critical Hit", statOrder = { 7631 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [513681673] = { "50% chance to Cause Bleeding on Critical Hit" }, } }, + ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7634 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2260 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2992817550] = { "Attacks deal no Physical Damage" }, } }, ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2276 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3636414626] = { "Golden Radiance" }, } }, ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 1915 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1472543401] = { "Cannot be Stunned when on Low Life" }, } }, @@ -2862,7 +2856,7 @@ return { ["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2301 }, level = 1, group = "EnfeebleOnHitUncursed", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3804297142] = { "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit" }, } }, ["GroundTarOnCritTakenUniqueShieldInt2"] = { affix = "", "Spreads Tar when you take a Critical Hit", statOrder = { 2291 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [927458676] = { "Spreads Tar when you take a Critical Hit" }, } }, - ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6949 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1981078074] = { "20% chance to spread Tar when Hit" }, } }, + ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6945 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1981078074] = { "20% chance to spread Tar when Hit" }, } }, ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2312 }, level = 1, group = "SpellsHaveCullingStrike", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3238189103] = { "Your Spells have Culling Strike" }, } }, ["EvasionRatingPercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2315 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2695354435] = { "150% increased Global Evasion Rating when on Low Life" }, } }, ["LocalLifeLeechIsInstantUniqueClaw3"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2318 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1765389199] = { "Life Leech from Hits with this Weapon is instant" }, } }, @@ -2905,9 +2899,9 @@ return { ["ReducedMaximumFrenzyChargesUniqueCorruptedJewel16"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-1 to Maximum Frenzy Charges" }, } }, ["ReducedMaximumFrenzyChargesUnique__1"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-1 to Maximum Frenzy Charges" }, } }, ["ReducedMaximumFrenzyChargesUnique__2_"] = { affix = "", "-2 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-2 to Maximum Frenzy Charges" }, } }, - ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Weapon Damage per 10 Strength", statOrder = { 10534 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "1% increased Weapon Damage per 10 Strength" }, } }, - ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4573 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, - ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4494 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "16% increased Area of Effect for Attacks per 10 Intelligence" }, } }, + ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Weapon Damage per 10 Strength", statOrder = { 10524 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "1% increased Weapon Damage per 10 Strength" }, } }, + ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4570 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, + ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4491 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "16% increased Area of Effect for Attacks per 10 Intelligence" }, } }, ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 1866 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "40% reduced Frenzy Charge Duration" }, } }, ["FrenzyChargeDurationUnique__1"] = { affix = "", "20% reduced Frenzy Charge Duration", statOrder = { 1866 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "20% reduced Frenzy Charge Duration" }, } }, ["AdditionalTotemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1978 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, @@ -2919,10 +2913,10 @@ return { ["RandomlyCursedWhenTotemsDieUniqueBodyInt7"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2330 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Curse on you when your Totems die, ignoring Curse limit" }, } }, ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 343 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 18 Added Lightning Damage" }, } }, ["DisplaySocketedGemGetsAddedLightningDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 343 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 30 Added Lightning Damage" }, } }, - ["ShockDurationUniqueGlovesDexInt3"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7534 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, - ["ShockDurationUniqueStaff8"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7534 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, + ["ShockDurationUniqueGlovesDexInt3"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7530 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, + ["ShockDurationUniqueStaff8"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7530 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, ["ShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration", statOrder = { 1613 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "10000% increased Shock Duration" }, } }, - ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7534 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "(1-100)% increased Duration of Lightning Ailments" }, } }, + ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7530 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "(1-100)% increased Duration of Lightning Ailments" }, } }, ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1966 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 1966 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "10% increased Physical Damage taken" }, } }, ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 1966 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "20% increased Physical Damage taken" }, } }, @@ -2957,9 +2951,9 @@ return { ["ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4"] = { affix = "", "20% chance to gain an Endurance Charge when you Block", statOrder = { 1863 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHashes = { [417188801] = { "20% chance to gain an Endurance Charge when you Block" }, } }, ["ChanceToGainEnduranceChargeOnBlockUniqueDescentShield1"] = { affix = "", "50% chance to gain an Endurance Charge when you Block", statOrder = { 1863 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHashes = { [417188801] = { "50% chance to gain an Endurance Charge when you Block" }, } }, ["EnemyExtraDamageRollsOnLowLifeUniqueRing9"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2338 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3753748365] = { "Damage of Enemies Hitting you is Unlucky while you are on Low Life" }, } }, - ["EnemyExtraDamageRollsOnFullLifeUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6405 }, level = 68, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, - ["EnemyExtraDamageRollsOnFullLifeUnique__2"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6405 }, level = 1, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, - ["EnemyExtraDamageRollsWithLightningDamageUnique__1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Lucky", statOrder = { 6345 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Lucky" }, } }, + ["EnemyExtraDamageRollsOnFullLifeUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6401 }, level = 68, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, + ["EnemyExtraDamageRollsOnFullLifeUnique__2"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6401 }, level = 1, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, + ["EnemyExtraDamageRollsWithLightningDamageUnique__1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Lucky", statOrder = { 6341 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Lucky" }, } }, ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2340 }, level = 1, group = "ItemDropsOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524282232] = { "Item drops on death" }, } }, ["LightningDamageOnChargeExpiryUniqueAmulet12"] = { affix = "", "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", statOrder = { 2339 }, level = 1, group = "LightningDamageOnChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2528932950] = { "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge" }, } }, ["AttackerTakesChaosDamageUniqueBodyStrInt4"] = { affix = "", "Reflects 30 Chaos Damage to Melee Attackers", statOrder = { 1938 }, level = 1, group = "AttackerTakesChaosDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [189451991] = { "Reflects 30 Chaos Damage to Melee Attackers" }, } }, @@ -2987,7 +2981,7 @@ return { ["EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (10-15) Energy Shield per enemy killed", statOrder = { 2353 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2528955616] = { "Gain (10-15) Energy Shield per enemy killed" }, } }, ["EnergyShieldGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Energy Shield per enemy killed", statOrder = { 2353 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2528955616] = { "Gain (15-25) Energy Shield per enemy killed" }, } }, ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2365 }, level = 1, group = "IncreasedClawDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1081444608] = { "100% increased Claw Physical Damage when on Low Life" }, } }, - ["IncreasedClawDamageOnLowLifeUnique__1__"] = { affix = "", "200% increased Damage with Claws while on Low Life", statOrder = { 5664 }, level = 1, group = "IncreasedClawAllDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1629782265] = { "200% increased Damage with Claws while on Low Life" }, } }, + ["IncreasedClawDamageOnLowLifeUnique__1__"] = { affix = "", "200% increased Damage with Claws while on Low Life", statOrder = { 5660 }, level = 1, group = "IncreasedClawAllDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1629782265] = { "200% increased Damage with Claws while on Low Life" }, } }, ["IncreasedAccuracyWhenOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Accuracy Rating when on Low Life", statOrder = { 2366 }, level = 1, group = "IncreasedAccuracyWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [347697569] = { "100% increased Accuracy Rating when on Low Life" }, } }, ["IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1177 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "25% increased Attack Speed when on Low Life" }, } }, ["IncreasedAttackSpeedWhenOnLowLifeUnique__1"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1177 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "25% increased Attack Speed when on Low Life" }, } }, @@ -3057,7 +3051,7 @@ return { ["GainManaOnBlockUniqueAmulet16"] = { affix = "", "(18-24) Mana gained when you Block", statOrder = { 1520 }, level = 57, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(18-24) Mana gained when you Block" }, } }, ["GainManaOnBlockUnique__1"] = { affix = "", "(30-50) Mana gained when you Block", statOrder = { 1520 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(30-50) Mana gained when you Block" }, } }, ["ZombieLifeUniqueSceptre3"] = { affix = "", "Raised Zombies have +5000 to maximum Life", statOrder = { 2370 }, level = 1, group = "ZombieLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4116579804] = { "Raised Zombies have +5000 to maximum Life" }, } }, - ["ZombieDamageUniqueSceptre3"] = { affix = "", "Raised Zombies deal (100-125)% more Physical Damage", statOrder = { 10652 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [568070507] = { "Raised Zombies deal (100-125)% more Physical Damage" }, } }, + ["ZombieDamageUniqueSceptre3"] = { affix = "", "Raised Zombies deal (100-125)% more Physical Damage", statOrder = { 10642 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [568070507] = { "Raised Zombies deal (100-125)% more Physical Damage" }, } }, ["ZombieChaosElementalResistsUniqueSceptre3"] = { affix = "", "Raised Zombies have +(25-30)% to all Resistances", statOrder = { 2371 }, level = 1, group = "ZombieChaosElementalResists", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "elemental_resistance", "minion_resistance", "elemental", "chaos", "resistance", "minion" }, tradeHashes = { [3150000576] = { "Raised Zombies have +(25-30)% to all Resistances" }, } }, ["ZombieSizeUniqueSceptre3_"] = { affix = "", "25% increased Raised Zombie Size", statOrder = { 2451 }, level = 1, group = "ZombieSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3563667308] = { "25% increased Raised Zombie Size" }, } }, ["ZombiesExplodeEnemiesOnHitUniqueSceptre3"] = { affix = "", "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage", statOrder = { 2453 }, level = 1, group = "ZombiesExplodeEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "minion_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [2857427872] = { "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage" }, } }, @@ -3092,12 +3086,12 @@ return { ["ChaosDegenerationAuraPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1694 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "50 Chaos Damage taken per second" }, } }, ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2471 }, level = 1, group = "CountsAsDualWielding", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2797075304] = { "Counts as Dual Wielding" }, } }, ["ChaosDegenerationOnKillUniqueBodyStr3"] = { affix = "", "You take 450 Chaos Damage per second for 3 seconds on Kill", statOrder = { 2466 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4031081471] = { "You take 450 Chaos Damage per second for 3 seconds on Kill" }, } }, - ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10751 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, + ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10741 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2465 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2280313599] = { "Deals 450 Chaos Damage per second to nearby Enemies" }, } }, ["DisplayChaosDegenerationAuraUnique__1"] = { affix = "", "Deals 50 Chaos Damage per second to nearby Enemies", statOrder = { 2465 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2280313599] = { "Deals 50 Chaos Damage per second to nearby Enemies" }, } }, - ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 10751 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, - ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10758 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3970396418] = { "Mercury Footprints" }, } }, - ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10751 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, + ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 10741 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, + ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10748 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3970396418] = { "Mercury Footprints" }, } }, + ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10741 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "+3% to maximum Block chance" }, } }, ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "-10% to maximum Block chance" }, } }, ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2346 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 50% faster" }, } }, @@ -3110,7 +3104,7 @@ return { ["MeleeDamageUnique__1"] = { affix = "", "(20-25)% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(20-25)% increased Melee Damage" }, } }, ["MeleeDamageUnique__2"] = { affix = "", "(25-40)% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(25-40)% increased Melee Damage" }, } }, ["DamageAuraUniqueHelmetDexInt2"] = { affix = "", "50% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "50% increased Damage" }, } }, - ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10711 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, + ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10701 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2473 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [637766438] = { "You and nearby allies gain 50% increased Damage" }, } }, ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Fire Damage in Main Hand", statOrder = { 1271 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (75-100) to (165-200) Fire Damage in Main Hand" }, } }, ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1271 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (255-285) to (300-330) Fire Damage in Main Hand" }, } }, @@ -3120,9 +3114,9 @@ return { ["ChaosDamageCanShockUnique__1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2623 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Chaos Damage from Hits also Contributes to Shock Chance" }, } }, ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1714 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1714 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 10431 }, level = 1, group = "MaximumShockOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4007740198] = { "+40% to Maximum Effect of Shock" }, } }, - ["AttacksShockAsIfDealingMoreDamageUniqueBow10"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7732 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, - ["AttacksShockAsIfDealingMoreDamageUnique__2"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7732 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, + ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 10421 }, level = 1, group = "MaximumShockOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4007740198] = { "+40% to Maximum Effect of Shock" }, } }, + ["AttacksShockAsIfDealingMoreDamageUniqueBow10"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7728 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, + ["AttacksShockAsIfDealingMoreDamageUnique__2"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7728 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, ["EnemiesExplodeOnDeathUniqueTwoHandMace7"] = { affix = "", "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage", statOrder = { 2477 }, level = 1, group = "EnemiesExplodeOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3457687358] = { "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage" }, } }, ["DisplaySocketedGemGetsReducedManaCostUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 361 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 10 Inspiration" }, } }, ["DisplaySocketedGemsGetFasterCastUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 366 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 10 Faster Casting" }, } }, @@ -3202,9 +3196,9 @@ return { ["FrenzyChargeOnIgniteUniqueTwoHandSword6"] = { affix = "", "Gain a Frenzy Charge if an Attack Ignites an Enemy", statOrder = { 2593 }, level = 1, group = "FrenzyChargeOnIgnite", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3598983877] = { "Gain a Frenzy Charge if an Attack Ignites an Enemy" }, } }, ["CullingAgainstBurningEnemiesUniqueTwoHandSword6"] = { affix = "", "Culling Strike against Burning Enemies", statOrder = { 2592 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777334641] = { "Culling Strike against Burning Enemies" }, } }, ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2595 }, level = 1, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [496011033] = { "-(40-30) Chaos Damage taken" }, } }, - ["IncreasedCurseDurationUniqueShieldDex4"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5934 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, - ["IncreasedCurseDurationUniqueShieldStrDex2"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5934 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, - ["IncreasedCurseDurationUniqueHelmetInt9"] = { affix = "", "Curse Skills have (30-50)% increased Skill Effect Duration", statOrder = { 5934 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (30-50)% increased Skill Effect Duration" }, } }, + ["IncreasedCurseDurationUniqueShieldDex4"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5930 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, + ["IncreasedCurseDurationUniqueShieldStrDex2"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5930 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, + ["IncreasedCurseDurationUniqueHelmetInt9"] = { affix = "", "Curse Skills have (30-50)% increased Skill Effect Duration", statOrder = { 5930 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (30-50)% increased Skill Effect Duration" }, } }, ["IncreaseSocketedCurseGemLevelUniqueShieldDex4"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 144 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+3 to Level of Socketed Curse Gems" }, } }, ["IncreaseSocketedCurseGemLevelUniqueHelmetInt9"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 144 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, ["IncreaseSocketedCurseGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 144 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, @@ -3222,8 +3216,8 @@ return { ["LocalIncreaseSocketedVaalGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Vaal Gems", statOrder = { 148 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+2 to Level of Socketed Vaal Gems" }, } }, ["CriticalStrikesLeechInstantlyUniqueGlovesStr3"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2319 }, level = 94, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3389184522] = { "Leech from Critical Hits is instant" }, } }, ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { affix = "", "(270-340)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 94, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(270-340)% increased Armour, Evasion and Energy Shield" }, } }, - ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4434 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3647471922] = { "Arrows deal 50% increased Damage with Hits to Targets they Pierce" }, } }, - ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4433 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1019891080] = { "Arrows deal 50% increased Damage with Hits to Targets they Pierce" }, } }, + ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4431 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3647471922] = { "Arrows deal 50% increased Damage with Hits to Targets they Pierce" }, } }, + ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4430 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1019891080] = { "Arrows deal 50% increased Damage with Hits to Targets they Pierce" }, } }, ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2669 }, level = 1, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2654043939] = { "You gain Onslaught for 20 seconds on using a Vaal Skill" }, } }, ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 149 }, level = 94, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, ["LocalIncreaseSocketedSupportGemLevelUniqueStaff12"] = { affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 149 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, @@ -3248,7 +3242,7 @@ return { ["IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "(15-20)% increased Lightning Damage per Frenzy Charge", statOrder = { 2681 }, level = 1, group = "IncreaseLightningDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3693130674] = { "(15-20)% increased Lightning Damage per Frenzy Charge" }, } }, ["LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "20 Life gained on Kill per Frenzy Charge", statOrder = { 2682 }, level = 1, group = "LifeGainedOnEnemyDeathPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1269609669] = { "20 Life gained on Kill per Frenzy Charge" }, } }, ["CannotBeKnockedBack"] = { affix = "", "Cannot be Knocked Back", statOrder = { 1410 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } }, - ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10724 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10714 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, ["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 1032 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "40% reduced Energy Shield Recharge Rate" }, } }, ["LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6"] = { affix = "", "Recover (75-100)% of maximum Life on use", statOrder = { 644 }, level = 1, group = "LocalFlaskInstantRecoverPercentOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2629106530] = { "Recover (75-100)% of maximum Life on use" }, } }, ["LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6"] = { affix = "", "25% of Maximum Life taken as Chaos Damage per second", statOrder = { 645 }, level = 1, group = "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealing", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "flask", "damage", "chaos" }, tradeHashes = { [3232201443] = { "25% of Maximum Life taken as Chaos Damage per second" }, } }, @@ -3262,12 +3256,12 @@ return { ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { affix = "", "(10-20)% increased Cast Speed while Ignited", statOrder = { 2690 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [3660039923] = { "(10-20)% increased Cast Speed while Ignited" }, } }, ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2694 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1618339429] = { "+25% chance to be Ignited" }, } }, ["IncreasedChanceToBeIgnitedUnique__1"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2694 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1618339429] = { "+25% chance to be Ignited" }, } }, - ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Hit", statOrder = { 7812 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [374737750] = { "50% chance to Cause Poison on Critical Hit" }, } }, + ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Hit", statOrder = { 7808 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [374737750] = { "50% chance to Cause Poison on Critical Hit" }, } }, ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Hits Poison the Enemy", statOrder = { 2533 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [2635385320] = { "Melee Critical Hits Poison the Enemy" }, } }, ["BlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(8-12)% Chance to Block Attack Damage during Effect", statOrder = { 775 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [2519106214] = { "+(8-12)% Chance to Block Attack Damage during Effect" }, } }, ["BlockIncreasedDuringFlaskEffectUnique__1"] = { affix = "", "+(35-50)% Chance to Block Attack Damage during Effect", statOrder = { 775 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [2519106214] = { "+(35-50)% Chance to Block Attack Damage during Effect" }, } }, ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2692 }, level = 1, group = "EvasionRatingIncreasesWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [93696421] = { "1% increased Attack Damage per 450 Evasion Rating" }, } }, - ["IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { affix = "", "(25-40)% increased Damage with Hits against Ignited Enemies", statOrder = { 7187 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3585754616] = { "(25-40)% increased Damage with Hits against Ignited Enemies" }, } }, + ["IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { affix = "", "(25-40)% increased Damage with Hits against Ignited Enemies", statOrder = { 7183 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3585754616] = { "(25-40)% increased Damage with Hits against Ignited Enemies" }, } }, ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 2714 }, level = 1, group = "MovementSpeedWhileOnFullEnergyShield", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2825197711] = { "20% increased Movement Speed while on Full Energy Shield" }, } }, ["ChanceForEnemyToFleeOnBlockUniqueShieldDex4"] = { affix = "", "100% Chance to Cause Monster to Flee on Block", statOrder = { 2705 }, level = 1, group = "ChanceForEnemyToFleeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3212461220] = { "100% Chance to Cause Monster to Flee on Block" }, } }, ["IncreasedChaosDamageUniqueBodyStrDex4"] = { affix = "", "(50-80)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-80)% increased Chaos Damage" }, } }, @@ -3293,7 +3287,7 @@ return { ["HealOnRampageUniqueGlovesStrDex5"] = { affix = "", "Recover 20% of maximum Life on Rampage", statOrder = { 2699 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2737492258] = { "Recover 20% of maximum Life on Rampage" }, } }, ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2700 }, level = 1, group = "DispelStatusAilmentsOnRampage", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [627889781] = { "Removes Elemental Ailments on Rampage" }, } }, ["PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2"] = { affix = "", "Gain Immunity to Physical Damage for 1.5 seconds on Rampage", statOrder = { 2701 }, level = 1, group = "PhysicalDamageImmunityOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3100457893] = { "Gain Immunity to Physical Damage for 1.5 seconds on Rampage" }, } }, - ["VaalSoulsOnRampageUniqueGlovesStrDex5"] = { affix = "", "Kills grant an additional Vaal Soul if you have Rampaged Recently", statOrder = { 6743 }, level = 1, group = "AdditionalVaalSoulOnRampage", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [3271016161] = { "Kills grant an additional Vaal Soul if you have Rampaged Recently" }, } }, + ["VaalSoulsOnRampageUniqueGlovesStrDex5"] = { affix = "", "Kills grant an additional Vaal Soul if you have Rampaged Recently", statOrder = { 6739 }, level = 1, group = "AdditionalVaalSoulOnRampage", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [3271016161] = { "Kills grant an additional Vaal Soul if you have Rampaged Recently" }, } }, ["GroundSmokeOnRampageUniqueGlovesDexInt6"] = { affix = "", "Creates a Smoke Cloud on Rampage", statOrder = { 2712 }, level = 1, group = "GroundSmokeOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3321583955] = { "Creates a Smoke Cloud on Rampage" }, } }, ["PhasingOnRampageUniqueGlovesDexInt6"] = { affix = "", "Enemies do not block your movement for 4 seconds on Rampage", statOrder = { 2713 }, level = 1, group = "PhasingOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [376956212] = { "Enemies do not block your movement for 4 seconds on Rampage" }, } }, ["GlobalChanceToBlindOnHitUniqueSceptre8"] = { affix = "", "10% Global chance to Blind Enemies on Hit", statOrder = { 2703 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2221570601] = { "10% Global chance to Blind Enemies on Hit" }, } }, @@ -3303,12 +3297,12 @@ return { ["SpellDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Spell Damage per Level", statOrder = { 2709 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [797084288] = { "1% increased Spell Damage per Level" }, } }, ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit", statOrder = { 2710 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Hit" }, } }, ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2715 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2860779491] = { "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you" }, } }, - ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10665 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10665 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10665 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10664, 10664.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2889807051] = { "Melee Hits count as Rampage Kills", "Rampage" }, } }, - ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10665 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10665 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10655 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10655 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10655 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10654, 10654.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2889807051] = { "Melee Hits count as Rampage Kills", "Rampage" }, } }, + ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10655 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10655 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 2719 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 2719 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 2717 }, level = 1, group = "ManaGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1064067689] = { "Gain 1 Mana on Kill per Level" }, } }, @@ -3319,7 +3313,7 @@ return { ["LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7"] = { affix = "", "Gain 1 Life on Kill per Level", statOrder = { 2716 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4228691877] = { "Gain 1 Life on Kill per Level" }, } }, ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 443 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "skill", "damage", "elemental", "gem" }, tradeHashes = { [2605850929] = { "Socketed Gems have Elemental Equilibrium" }, } }, ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 445 }, level = 1, group = "SocketedGemHasSecretsOfSuffering", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "fire", "cold", "lightning", "critical", "ailment", "gem" }, tradeHashes = { [4051493629] = { "Socketed Gems have Secrets of Suffering" }, } }, - ["ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { affix = "", "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", statOrder = { 10368 }, level = 1, group = "ImmuneToElementalAilmentsWhileLifeAndManaClose", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [2716882575] = { "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500" }, } }, + ["ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { affix = "", "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", statOrder = { 10359 }, level = 1, group = "ImmuneToElementalAilmentsWhileLifeAndManaClose", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [2716882575] = { "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500" }, } }, ["FireResistanceWhenSocketedWithRedGemUniqueRing25"] = { affix = "", "+(75-100)% to Fire Resistance when Socketed with a Red Gem", statOrder = { 1485 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance", "gem" }, tradeHashes = { [3051845758] = { "+(75-100)% to Fire Resistance when Socketed with a Red Gem" }, } }, ["LightningResistanceWhenSocketedWithBlueGemUniqueRing25"] = { affix = "", "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", statOrder = { 1491 }, level = 1, group = "LightningResistanceWhenSocketedWithBlueGem", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance", "gem" }, tradeHashes = { [289814996] = { "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem" }, } }, ["ColdResistanceWhenSocketedWithGreenGemUniqueRing25"] = { affix = "", "+(75-100)% to Cold Resistance when Socketed with a Green Gem", statOrder = { 1488 }, level = 1, group = "ColdResistanceWhenSocketedWithGreenGem", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance", "gem" }, tradeHashes = { [1064331314] = { "+(75-100)% to Cold Resistance when Socketed with a Green Gem" }, } }, @@ -3327,8 +3321,8 @@ return { ["LightningPenetrationUnique__1"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 20% Lightning Resistance" }, } }, ["FirePenetrationUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance", statOrder = { 2724 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 396 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [85122299] = { "Enemies slain by Socketed Gems drop 10% increased item quantity" }, } }, - ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits against Blinded Enemies", statOrder = { 7198 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(40-60)% increased Damage with Hits against Blinded Enemies" }, } }, - ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits against Blinded Enemies", statOrder = { 7198 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(25-40)% increased Damage with Hits against Blinded Enemies" }, } }, + ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits against Blinded Enemies", statOrder = { 7194 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(40-60)% increased Damage with Hits against Blinded Enemies" }, } }, + ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits against Blinded Enemies", statOrder = { 7194 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(25-40)% increased Damage with Hits against Blinded Enemies" }, } }, ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2358 }, level = 1, group = "SmokeCloudWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [953314356] = { "25% chance to create a Smoke Cloud when Hit" }, } }, ["IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10"] = { affix = "", "30% increased Elemental Damage with Attack Skills during any Flask Effect", statOrder = { 2519 }, level = 1, group = "IncreasedWeaponElementalDamageDuringFlask", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "flask", "damage", "elemental", "attack" }, tradeHashes = { [782323220] = { "30% increased Elemental Damage with Attack Skills during any Flask Effect" }, } }, ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 1967 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "20% increased Fire Damage taken" }, } }, @@ -3357,17 +3351,17 @@ return { ["FreezeDurationUnique__1"] = { affix = "", "25% increased Freeze Duration on Enemies", statOrder = { 1614 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "25% increased Freeze Duration on Enemies" }, } }, ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } }, ["ElementalPenetrationMarakethSceptreImplicit2"] = { affix = "", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, - ["UniqueEnemiesInPresenceHaveFireExposure1"] = { affix = "", "Enemies in your Presence have Exposure", statOrder = { 6362 }, level = 1, group = "EnemiesInPresenceHaveExposure", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [724806967] = { "Enemies in your Presence have Exposure" }, } }, + ["UniqueEnemiesInPresenceHaveFireExposure1"] = { affix = "", "Enemies in your Presence have Exposure", statOrder = { 6358 }, level = 1, group = "EnemiesInPresenceHaveExposure", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [724806967] = { "Enemies in your Presence have Exposure" }, } }, ["UniqueBearSkillDamageConvertedToFire1"] = { affix = "", "Bear Skills Convert 80% of Physical Damage to Fire Damage", statOrder = { 1703 }, level = 1, group = "UniqueBearSkillDamageConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4287372938] = { "Bear Skills Convert 80% of Physical Damage to Fire Damage" }, } }, - ["UniqueSkillsGainXGloryEvery2Seconds1"] = { affix = "", "Skills which require Glory generate (2-5) Glory every 2 seconds", statOrder = { 4110 }, level = 1, group = "UniqueSkillsGainXGloryEvery2Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2480962043] = { "Skills which require Glory generate (2-5) Glory every 2 seconds" }, } }, + ["UniqueSkillsGainXGloryEvery2Seconds1"] = { affix = "", "Skills which require Glory generate (2-5) Glory every 2 seconds", statOrder = { 4107 }, level = 1, group = "UniqueSkillsGainXGloryEvery2Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2480962043] = { "Skills which require Glory generate (2-5) Glory every 2 seconds" }, } }, ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 2759 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have 10% increased Area of Effect" }, } }, ["MinionAreaOfEffectUnique__1"] = { affix = "", "Minions have (6-8)% increased Area of Effect", statOrder = { 2759 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (6-8)% increased Area of Effect" }, } }, ["PhysicalDamageToSelfOnMinionDeathUniqueRing33"] = { affix = "", "350 Physical Damage taken on Minion Death", statOrder = { 2762 }, level = 25, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "350 Physical Damage taken on Minion Death" }, } }, ["PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_"] = { affix = "", "8% of Maximum Energy Shield taken as Physical Damage on Minion Death", statOrder = { 2758 }, level = 1, group = "SelfPhysicalDamageOnMinionDeathPerES", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1617739170] = { "8% of Maximum Energy Shield taken as Physical Damage on Minion Death" }, } }, ["DealNoPhysicalDamageUniqueBelt14"] = { affix = "", "Deal no Physical Damage", statOrder = { 2550 }, level = 65, group = "DealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3900877792] = { "Deal no Physical Damage" }, } }, ["DealNoNonPhysicalDamageUniqueBelt__1"] = { affix = "", "Deal no Non-Physical Damage", statOrder = { 2551 }, level = 65, group = "DealNoNonPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [282353000] = { "Deal no Non-Physical Damage" }, } }, - ["RangedAttacksConsumeAmmoUniqueBelt__1"] = { affix = "", "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard", statOrder = { 4581 }, level = 1, group = "RangedAttacksConsumeAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [591162856] = { "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard" }, } }, - ["AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1"] = { affix = "", "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards", statOrder = { 9921, 9921.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2511521167] = { "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards" }, } }, + ["RangedAttacksConsumeAmmoUniqueBelt__1"] = { affix = "", "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard", statOrder = { 4578 }, level = 1, group = "RangedAttacksConsumeAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [591162856] = { "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard" }, } }, + ["AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1"] = { affix = "", "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards", statOrder = { 9912, 9912.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2511521167] = { "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards" }, } }, ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2348 }, level = 65, group = "FasterBurnFromAttacksEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [1420236871] = { "Ignites you inflict with Attacks deal Damage 35% faster" }, } }, ["SocketedGemsProjectilesNovaUniqueStaff10"] = { affix = "", "Socketed Gems fire Projectiles in a circle", statOrder = { 448 }, level = 1, group = "DisplaySocketedGemsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [967556848] = { "Socketed Gems fire Projectiles in a circle" }, } }, ["SocketedGemsProjectilesNovaUnique__1"] = { affix = "", "Socketed Projectile Spells fire Projectiles in a circle", statOrder = { 449 }, level = 1, group = "DisplaySocketedSpellsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3235941702] = { "Socketed Projectile Spells fire Projectiles in a circle" }, } }, @@ -3391,7 +3385,7 @@ return { ["LifeRegenerationRatePercentageUniqueAmulet21"] = { affix = "", "Regenerate 4% of maximum Life per second", statOrder = { 1691 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 4% of maximum Life per second" }, } }, ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, ["LifeRegenerationRatePercentageUniqueJewel24"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem", statOrder = { 10585 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1496370423] = { "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem" }, } }, + ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem", statOrder = { 10575 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1496370423] = { "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem" }, } }, ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of maximum Life per second" }, } }, ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 10% of maximum Life per second" }, } }, ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of maximum Life per second" }, } }, @@ -3400,10 +3394,10 @@ return { ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of maximum Life per second" }, } }, ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1668 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(40-60)% increased Mine Throwing Speed" }, } }, ["RemoteMineLayingSpeedUnique__1"] = { affix = "", "(10-15)% reduced Mine Throwing Speed", statOrder = { 1668 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(10-15)% reduced Mine Throwing Speed" }, } }, - ["RemoteMineArmingSpeedUnique__1"] = { affix = "", "Mines have (40-50)% increased Detonation Speed", statOrder = { 8949 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (40-50)% increased Detonation Speed" }, } }, + ["RemoteMineArmingSpeedUnique__1"] = { affix = "", "Mines have (40-50)% increased Detonation Speed", statOrder = { 8940 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (40-50)% increased Detonation Speed" }, } }, ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1155 }, level = 1, group = "LessMineDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3298440988] = { "35% less Mine Damage" }, } }, ["SupportedByRemoteMineUniqueStaff11"] = { affix = "", "Socketed Gems are Supported by Level 10 Blastchain Mine", statOrder = { 364 }, level = 1, group = "SupportedByRemoteMineLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 10 Blastchain Mine" }, } }, - ["ColdWeaponDamageUniqueOneHandMace4"] = { affix = "", "(30-40)% increased Cold Damage with Attack Skills", statOrder = { 5692 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(30-40)% increased Cold Damage with Attack Skills" }, } }, + ["ColdWeaponDamageUniqueOneHandMace4"] = { affix = "", "(30-40)% increased Cold Damage with Attack Skills", statOrder = { 5688 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(30-40)% increased Cold Damage with Attack Skills" }, } }, ["AddedLightningDamageWhileUnarmedUniqueGloves_1"] = { affix = "", "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits", statOrder = { 2189 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3835522656] = { "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits" }, } }, ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2189 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3835522656] = { "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits" }, } }, ["AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4"] = { affix = "", "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed", statOrder = { 2190 }, level = 1, group = "AddedLightningDamagetoSpellsWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3597806437] = { "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed" }, } }, @@ -3438,11 +3432,11 @@ return { ["PowerChargeOnStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun", statOrder = { 2531 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "30% chance to gain a Power Charge when you Stun" }, } }, ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, ["ChanceToAvoidElementalStatusAilmentsUniqueJewel46"] = { affix = "", "10% chance to Avoid Elemental Ailments", statOrder = { 1599 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "10% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 9563 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457679290] = { "Enemy Projectiles Pierce you" }, } }, - ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10712 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, + ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 9554 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457679290] = { "Enemy Projectiles Pierce you" }, } }, + ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10702 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 479 }, level = 7, group = "DisplayGluttonyOfElements", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3321235265] = { "Grants Level 10 Gluttony of Elements Skill" }, } }, ["SocketedGemsSupportedByPierceUniqueBodyStr6"] = { affix = "", "Socketed Gems are Supported by Level 15 Pierce", statOrder = { 375 }, level = 1, group = "DisplaySupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [254728692] = { "Socketed Gems are Supported by Level 15 Pierce" }, } }, - ["LifeRegenPerActiveBuffUniqueBodyInt12"] = { affix = "", "Regenerate (12-20) Life per second per Buff on you", statOrder = { 7490 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [996053100] = { "Regenerate (12-20) Life per second per Buff on you" }, } }, + ["LifeRegenPerActiveBuffUniqueBodyInt12"] = { affix = "", "Regenerate (12-20) Life per second per Buff on you", statOrder = { 7486 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [996053100] = { "Regenerate (12-20) Life per second per Buff on you" }, } }, ["MaceDamageJewel"] = { affix = "Brutal", "(14-16)% increased Damage with Maces", statOrder = { 1249 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "mace", "specific_weapon", "not_str", "jewel", }, weightVal = { 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(14-16)% increased Damage with Maces" }, } }, ["AxeDamageJewel"] = { affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1233 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "axe", "specific_weapon", "not_int", "jewel", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(14-16)% increased Damage with Axes" }, } }, ["SwordDamageJewel"] = { affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1259 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "sword", "specific_weapon", "not_int", "jewel", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(14-16)% increased Damage with Swords" }, } }, @@ -3609,7 +3603,7 @@ return { ["ManaCostReductionJewel"] = { affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(3-5)% reduced Mana Cost of Skills" }, } }, ["ManaCostReductionUniqueJewel44"] = { affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "3% reduced Mana Cost of Skills" }, } }, ["ManaCostIncreasedUniqueCorruptedJewel3"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "50% increased Mana Cost of Skills" }, } }, - ["FasterAilmentDamageJewel"] = { affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 6068 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (4-6)% faster" }, } }, + ["FasterAilmentDamageJewel"] = { affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 6064 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (4-6)% faster" }, } }, ["AuraRadiusJewel"] = { affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 1949 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(10-15)% increased Area of Effect of Aura Skills" }, } }, ["CurseRadiusJewel"] = { affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-10)% increased Area of Effect of Curses" }, } }, ["AvoidIgniteJewel"] = { affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1602 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(6-8)% chance to Avoid being Ignited" }, } }, @@ -3627,31 +3621,31 @@ return { ["BlockDualWieldingJewel"] = { affix = "Parrying", "+1% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "staff", "two_handed_mod", "shield_mod", "jewel", }, weightVal = { 0, 0, 0, 1 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+1% Chance to Block Attack Damage while Dual Wielding" }, } }, ["BlockShieldJewel"] = { affix = "Shielding", "+1% Chance to Block Attack Damage while holding a Shield", statOrder = { 1125 }, level = 1, group = "BlockShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "jewel", }, weightVal = { 0, 0, 1 }, modTags = { "block" }, tradeHashes = { [4061558269] = { "+1% Chance to Block Attack Damage while holding a Shield" }, } }, ["BlockStaffJewel"] = { affix = "Deflecting", "+1% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1128 }, level = 1, group = "BlockStaffForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "jewel", }, weightVal = { 0, 1, 0, 0, 0, 1, 0 }, modTags = { "block" }, tradeHashes = { [1778298516] = { "+1% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["FreezeDurationJewel"] = { affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5642 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1308198396] = { "(12-16)% increased Chill and Freeze Duration on Enemies" }, } }, + ["FreezeDurationJewel"] = { affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5638 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1308198396] = { "(12-16)% increased Chill and Freeze Duration on Enemies" }, } }, ["ShockDurationJewel"] = { affix = "of the Storm", "(12-16)% increased Shock Duration", statOrder = { 1613 }, level = 1, group = "ShockDurationForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration" }, } }, ["IgniteDurationJewel"] = { affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "BurnDurationForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(3-5)% increased Ignite Duration on Enemies" }, } }, - ["ChillAndShockEffectOnYouJewel"] = { affix = "of Insulation", "15% reduced effect of Chill and Shock on you", statOrder = { 9857 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1984113628] = { "15% reduced effect of Chill and Shock on you" }, } }, + ["ChillAndShockEffectOnYouJewel"] = { affix = "of Insulation", "15% reduced effect of Chill and Shock on you", statOrder = { 9848 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1984113628] = { "15% reduced effect of Chill and Shock on you" }, } }, ["CurseEffectOnYouJewel"] = { affix = "of Hexwarding", "(25-30)% reduced effect of Curses on you", statOrder = { 1911 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "curse" }, tradeHashes = { [3407849389] = { "(25-30)% reduced effect of Curses on you" }, } }, ["IgniteDurationOnYouJewel"] = { affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-35)% reduced Ignite Duration on you" }, } }, ["ChillEffectOnYouJewel"] = { affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1495 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(30-35)% reduced Effect of Chill on you" }, } }, - ["ShockEffectOnYouJewel"] = { affix = "of the Stormdweller", "(30-35)% reduced effect of Shock on you", statOrder = { 9859 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(30-35)% reduced effect of Shock on you" }, } }, + ["ShockEffectOnYouJewel"] = { affix = "of the Stormdweller", "(30-35)% reduced effect of Shock on you", statOrder = { 9850 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(30-35)% reduced effect of Shock on you" }, } }, ["PoisonDurationOnYouJewel"] = { affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 1067 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(30-35)% reduced Poison Duration on you" }, } }, - ["BleedDurationOnYouJewel"] = { affix = "of Stemming", "(30-35)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-35)% reduced Duration of Bleeding on You" }, } }, + ["BleedDurationOnYouJewel"] = { affix = "of Stemming", "(30-35)% reduced Duration of Bleeding on You", statOrder = { 9795 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-35)% reduced Duration of Bleeding on You" }, } }, ["ManaReservationEfficiencyJewel"] = { affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 1953 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(2-3)% increased Mana Reservation Efficiency of Skills" }, } }, ["FlaskDurationJewel"] = { affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(6-10)% increased Flask Effect Duration" }, } }, ["FreezeChanceAndDurationJewel"] = { affix = "of Freezing", "(3-5)% chance to Freeze", "(12-16)% increased Freeze Duration on Enemies", statOrder = { 1056, 1614 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(12-16)% increased Freeze Duration on Enemies" }, [2309614417] = { "(3-5)% chance to Freeze" }, } }, ["ShockChanceAndDurationJewel"] = { affix = "of Shocking", "(3-5)% chance to Shock", "(12-16)% increased Shock Duration", statOrder = { 1058, 1613 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration" }, [1538773178] = { "(3-5)% chance to Shock" }, } }, ["IgniteChanceAndDurationJewel"] = { affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(6-8)% increased Ignite Duration on Enemies" }, } }, ["PoisonChanceAndDurationForJewel"] = { affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 2896, 2899 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(6-8)% increased Poison Duration" }, [795138349] = { "(3-5)% chance to Poison on Hit" }, } }, - ["BleedChanceAndDurationForJewel__"] = { affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2270, 4660 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (3-5)% chance to cause Bleeding" }, [1459321413] = { "(12-16)% increased Bleeding Duration" }, } }, - ["ImpaleChanceForJewel_"] = { affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4590 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(5-7)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["BleedChanceAndDurationForJewel__"] = { affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2270, 4657 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (3-5)% chance to cause Bleeding" }, [1459321413] = { "(12-16)% increased Bleeding Duration" }, } }, + ["ImpaleChanceForJewel_"] = { affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4587 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(5-7)% chance to Impale Enemies on Hit with Attacks" }, } }, ["BurningDamageForJewel"] = { affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1627 }, level = 1, group = "BurningDamageForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(16-20)% increased Burning Damage" }, } }, ["EnergyShieldDelayJewel"] = { affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(4-6)% faster start of Energy Shield Recharge" }, } }, ["EnergyShieldRateJewel"] = { affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRechargeRateForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(6-8)% increased Energy Shield Recharge Rate" }, } }, ["MinionBlockJewel"] = { affix = "of the Wall", "Minions have +(2-4)% Chance to Block Attack Damage", statOrder = { 2661 }, level = 1, group = "MinionBlockForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(2-4)% Chance to Block Attack Damage" }, } }, ["MinionLifeJewel"] = { affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLifeForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (8-12)% increased maximum Life" }, } }, ["MinionElementalResistancesJewel"] = { affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "elemental_resistance", "minion_resistance", "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(11-15)% to all Elemental Resistances" }, } }, - ["MinionAccuracyRatingJewel"] = { affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 8996 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(22-26)% increased Minion Accuracy Rating" }, } }, + ["MinionAccuracyRatingJewel"] = { affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 8987 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(22-26)% increased Minion Accuracy Rating" }, } }, ["MinionElementalResistancesUnique__1"] = { affix = "", "Minions have +(7-10)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "minion_resistance", "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(7-10)% to all Elemental Resistances" }, } }, ["TotemDamageJewel"] = { affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1152 }, level = 1, group = "TotemDamageForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(12-16)% increased Totem Damage" }, } }, ["ReducedTotemDamageUniqueJewel26"] = { affix = "", "(30-50)% reduced Totem Damage", statOrder = { 1152 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(30-50)% reduced Totem Damage" }, } }, @@ -3683,7 +3677,7 @@ return { ["AttacksCostNoManaUniqueTwoHandAxe9"] = { affix = "", "Your Attacks do not cost Mana", statOrder = { 1642 }, level = 1, group = "AttacksCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4080656180] = { "Your Attacks do not cost Mana" }, } }, ["CannotLeechOrRegenerateManaUniqueTwoHandAxe9"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2351 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, ["CannotLeechOrRegenerateManaUnique__1_"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2351 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, - ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10730 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, + ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10720 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 814 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077035099] = { "Passives in Radius can be Allocated without being connected to your tree" }, } }, ["JewelRingRadiusValuesUnique__1"] = { affix = "", "Only affects Passives in Very Small Ring", statOrder = { 15 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Very Small Ring" }, } }, ["JewelRingRadiusValuesUnique__2"] = { affix = "", "Only affects Passives in Medium-Large Ring", statOrder = { 15 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Medium-Large Ring" }, } }, @@ -3735,16 +3729,16 @@ return { ["AllAttributesPerAssignedKeystoneUniqueJewel32"] = { affix = "", "4% increased Attributes per allocated Keystone", statOrder = { 2815 }, level = 1, group = "AllAttributesPerAssignedKeystone", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1212897608] = { "4% increased Attributes per allocated Keystone" }, } }, ["LifeOnHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks", statOrder = { 2804 }, level = 1, group = "LifeOnHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1609999275] = { "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks" }, } }, ["LifeOnSpellHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells", statOrder = { 2805 }, level = 1, group = "LifeOnSpellHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [622657842] = { "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells" }, } }, - ["ItemLimitUniqueJewel8"] = { affix = "", "Survival", statOrder = { 10641 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, - ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 10641 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, - ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 10641 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, + ["ItemLimitUniqueJewel8"] = { affix = "", "Survival", statOrder = { 10631 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, + ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 10631 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, + ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 10631 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2313 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1560540713] = { "Nearby Allies have Culling Strike" }, } }, ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1465 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1722463112] = { "Nearby Allies have 30% increased Item Rarity" }, } }, - ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Damage Bonus", statOrder = { 7670 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3152714748] = { "Nearby Allies have +50% to Critical Damage Bonus" }, } }, - ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7672 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [244825991] = { "Nearby Allies have +10 Fortification" }, } }, + ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Damage Bonus", statOrder = { 7666 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3152714748] = { "Nearby Allies have +50% to Critical Damage Bonus" }, } }, + ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7668 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [244825991] = { "Nearby Allies have +10 Fortification" }, } }, ["AdditionalVaalSoulOnKillUniqueCorruptedJewel4_"] = { affix = "", "(20-30)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2832 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(20-30)% chance to gain an additional Vaal Soul on Kill" }, } }, ["VaalSkillDurationUniqueCorruptedJewel5"] = { affix = "", "(15-20)% increased Vaal Skill Effect Duration", statOrder = { 2833 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "(15-20)% increased Vaal Skill Effect Duration" }, } }, - ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 10443 }, level = 1, group = "VaalSkillRefundChance", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2833218772] = { "Vaal Skills have (15-20)% chance to regain consumed Souls when used" }, } }, + ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 10433 }, level = 1, group = "VaalSkillRefundChance", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2833218772] = { "Vaal Skills have (15-20)% chance to regain consumed Souls when used" }, } }, ["VaalSkillCriticalStrikeChanceCorruptedJewel6"] = { affix = "", "(80-120)% increased Vaal Skill Critical Hit Chance", statOrder = { 2835 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Hit Chance" }, } }, ["VaalSkillCriticalStrikeMultiplierCorruptedJewel6"] = { affix = "", "+(22-30)% to Vaal Skill Critical Damage Bonus", statOrder = { 2836 }, level = 1, group = "VaalSkillCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "vaal" }, tradeHashes = { [2070982674] = { "+(22-30)% to Vaal Skill Critical Damage Bonus" }, } }, ["AttackDamageUniqueJewel42"] = { affix = "", "10% increased Attack Damage", statOrder = { 1156 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "10% increased Attack Damage" }, } }, @@ -3796,7 +3790,7 @@ return { ["SpellAddedFireDamageUnique__2_"] = { affix = "", "Adds (20-30) to 40 Fire Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-30) to 40 Fire Damage to Spells" }, } }, ["SpellAddedFireDamageUnique__3"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-24) to (38-46) Fire Damage to Spells" }, } }, ["SpellAddedFireDamageUnique__4"] = { affix = "", "Adds (2-3) to (5-6) Fire Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (2-3) to (5-6) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 10684 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 10674 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-16) to (30-32) Fire Damage to Spells" }, } }, ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (25-30) to (40-50) Cold Damage to Spells" }, } }, ["SpellAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 100 to 100 Cold Damage to Spells" }, } }, @@ -3830,7 +3824,7 @@ return { ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 3049 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2614654450] = { "100% increased Global Physical Damage while Frozen" }, } }, ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Hits that Stun inflict Bleeding", statOrder = { 2265 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1454946771] = { "Hits that Stun inflict Bleeding" }, } }, ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 3083 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1924591908] = { "5% chance to grant Onslaught to nearby Enemies on Kill" }, } }, - ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on kill", statOrder = { 5535 }, level = 1, group = "OnslaugtOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2453026567] = { "10% chance to gain Onslaught for 10 seconds on kill" }, } }, + ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on kill", statOrder = { 5531 }, level = 1, group = "OnslaugtOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2453026567] = { "10% chance to gain Onslaught for 10 seconds on kill" }, } }, ["MaximumLifeOnKillPercentUnique__1"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of maximum Life on Kill" }, } }, ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of maximum Life on Kill" }, } }, @@ -3847,7 +3841,7 @@ return { ["GroundSlamThresholdUnique__2"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy", statOrder = { 2968, 2968.1 }, level = 1, group = "GroundSlamThreshold2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1559361866] = { "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy" }, } }, ["SummonSkeletonsThresholdUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", statOrder = { 2958 }, level = 1, group = "SummonSkeletonsThreshold", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3088991881] = { "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages" }, } }, ["AddedDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", statOrder = { 3093 }, level = 1, group = "AddedDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2066426995] = { "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity" }, } }, - ["AddedDamagePerStrengthUnique__1"] = { affix = "", "1 to 3 Added Attack Physical Damage per 25 Strength", statOrder = { 4545 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [787185456] = { "1 to 3 Added Attack Physical Damage per 25 Strength" }, } }, + ["AddedDamagePerStrengthUnique__1"] = { affix = "", "1 to 3 Added Attack Physical Damage per 25 Strength", statOrder = { 4542 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [787185456] = { "1 to 3 Added Attack Physical Damage per 25 Strength" }, } }, ["DisplayBlindAuraUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3094 }, level = 1, group = "DisplayBlindAura", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2826979740] = { "Nearby Enemies are Blinded" }, } }, ["DisplayNearbyEnemiesAreSlowedUnique__1"] = { affix = "", "Nearby Enemies are Hindered, with 25% reduced Movement Speed", statOrder = { 3101 }, level = 1, group = "DisplayNearbyEnemiesAreSlowed", weightKey = { }, weightVal = { }, modTags = { "speed", "aura" }, tradeHashes = { [607839150] = { "Nearby Enemies are Hindered, with 25% reduced Movement Speed" }, } }, ["DisplaySupportedByHypothermiaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Hypothermia", statOrder = { 376 }, level = 1, group = "DisplaySupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [13669281] = { "Socketed Gems are Supported by Level 15 Hypothermia" }, } }, @@ -3927,7 +3921,7 @@ return { ["MaximumGolemsUnique__3"] = { affix = "", "+3 to maximum number of Summoned Golems", statOrder = { 3368 }, level = 43, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "+3 to maximum number of Summoned Golems" }, } }, ["MaximumGolemsUnique__4_"] = { affix = "", "-1 to maximum number of Summoned Golems", statOrder = { 3368 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "-1 to maximum number of Summoned Golems" }, } }, ["GrantsLevel12StoneGolem"] = { affix = "", "Grants Level 12 Summon Stone Golem Skill", statOrder = { 462 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3056188914] = { "Grants Level 12 Summon Stone Golem Skill" }, } }, - ["ZealotsOathUnique__1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9727 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, + ["ZealotsOathUnique__1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9718 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3453 }, level = 1, group = "CountsAsAllOneHandMeleeWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1524882321] = { "Counts as all One Handed Melee Weapon Types" }, } }, ["SocketedGemsSupportedByFortifyUnique____1"] = { affix = "", "Socketed Gems are Supported by Level 12 Fortify", statOrder = { 363 }, level = 1, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 12 Fortify" }, } }, ["CannotBePoisonedUnique__1"] = { affix = "", "Cannot be Poisoned", statOrder = { 3073 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, @@ -3952,13 +3946,13 @@ return { ["ReducedReservationForSocketedCurseGemsUnique__1"] = { affix = "", "Socketed Curse Gems have 30% increased Reservation Efficiency", statOrder = { 453 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [1471600638] = { "Socketed Curse Gems have 30% increased Reservation Efficiency" }, } }, ["ReducedReservationForSocketedCurseGemsUnique__2"] = { affix = "", "Socketed Curse Gems have 80% increased Reservation Efficiency", statOrder = { 453 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [1471600638] = { "Socketed Curse Gems have 80% increased Reservation Efficiency" }, } }, ["GrantAlliesPowerChargeOnKillUnique__1"] = { affix = "", "10% chance to grant a Power Charge to nearby Allies on Kill", statOrder = { 3084 }, level = 1, group = "GrantAlliesPowerChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2367680009] = { "10% chance to grant a Power Charge to nearby Allies on Kill" }, } }, - ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to Allies in your Presence on Hit", statOrder = { 5542 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [991168463] = { "5% chance to grant a Frenzy Charge to Allies in your Presence on Hit" }, } }, + ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to Allies in your Presence on Hit", statOrder = { 5538 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [991168463] = { "5% chance to grant a Frenzy Charge to Allies in your Presence on Hit" }, } }, ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 568 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3751996449] = { "25% chance to Trigger Level 10 Summon Raging Spirit on Kill" }, } }, ["PhysicalDamageConvertedToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 3782 }, level = 1, group = "FishingDetection", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931560398] = { "Glows while in an Area containing a Unique Fish" }, } }, ["LocalMaimOnHitUnique__1"] = { affix = "", "Attacks with this Weapon Maim on hit", statOrder = { 3786 }, level = 1, group = "LocalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3418949024] = { "Attacks with this Weapon Maim on hit" }, } }, - ["LocalMaimOnHit2HImplicit_1"] = { affix = "", "25% chance to Maim on Hit", statOrder = { 7798 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "25% chance to Maim on Hit" }, } }, + ["LocalMaimOnHit2HImplicit_1"] = { affix = "", "25% chance to Maim on Hit", statOrder = { 7794 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "25% chance to Maim on Hit" }, } }, ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critical Hit Shocked Enemies", statOrder = { 3789 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3481428688] = { "Always Critical Hit Shocked Enemies" }, } }, ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Hits against non-Shocked Enemies", statOrder = { 3790 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3344493315] = { "You cannot deal Critical Hits against non-Shocked Enemies" }, } }, ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 3808 }, level = 1, group = "MinionChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2939409392] = { "Minions have 15% chance to Blind Enemies on hit" }, } }, @@ -3978,57 +3972,57 @@ return { ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 3819 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [308799121] = { "+1 to Minimum Power Charges per Grand Spectrum" }, } }, ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1580 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 10 to 20 Cold Damage to Spells per Power Charge" }, } }, ["AddedColdDamagePerPowerChargeUnique__2"] = { affix = "", "Adds 50 to 70 Cold Damage to Spells per Power Charge", statOrder = { 1580 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 50 to 70 Cold Damage to Spells per Power Charge" }, } }, - ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 9681 }, level = 1, group = "GainManaOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3304801725] = { "+(20-25) Mana gained on Killing a Frozen Enemy" }, } }, + ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 9672 }, level = 1, group = "GainManaOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3304801725] = { "+(20-25) Mana gained on Killing a Frozen Enemy" }, } }, ["GainPowerChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "Gain a Power Charge on killing a Frozen enemy", statOrder = { 1579 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3607154250] = { "Gain a Power Charge on killing a Frozen enemy" }, } }, - ["IncreasedDamageIfFrozenRecentlyUnique__1"] = { affix = "", "60% increased Damage if you've Frozen an Enemy Recently", statOrder = { 5992 }, level = 44, group = "IncreasedDamageIfFrozenRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1064477264] = { "60% increased Damage if you've Frozen an Enemy Recently" }, } }, - ["AddedLightningDamagePerIntelligenceUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4542 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, - ["AddedLightningDamagePerIntelligenceUnique__2"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4542 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, + ["IncreasedDamageIfFrozenRecentlyUnique__1"] = { affix = "", "60% increased Damage if you've Frozen an Enemy Recently", statOrder = { 5988 }, level = 44, group = "IncreasedDamageIfFrozenRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1064477264] = { "60% increased Damage if you've Frozen an Enemy Recently" }, } }, + ["AddedLightningDamagePerIntelligenceUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4539 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, + ["AddedLightningDamagePerIntelligenceUnique__2"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4539 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, ["IncreasedAttackSpeedPerDexterityUnique__1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2324 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [720908147] = { "1% increased Attack Speed per 20 Dexterity" }, } }, - ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 9173 }, level = 1, group = "MovementVelocityWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [696659555] = { "20% increased Movement Speed while Bleeding" }, } }, + ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 9164 }, level = 1, group = "MovementVelocityWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [696659555] = { "20% increased Movement Speed while Bleeding" }, } }, ["IncreasedPhysicalDamageTakenWhileMovingUnique__1"] = { affix = "", "10% increased Physical Damage taken while moving", statOrder = { 3985 }, level = 1, group = "IncreasedPhysicalDamageTakenWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [4052714663] = { "10% increased Physical Damage taken while moving" }, } }, ["PhysicalDamageReductionWhileNotMovingUnique__1"] = { affix = "", "10% additional Physical Damage Reduction while stationary", statOrder = { 3983 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2181129193] = { "10% additional Physical Damage Reduction while stationary" }, } }, - ["AddedLightningDamagePerShockedEnemyKilledUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 8972 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4222857095] = { "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently" }, } }, - ["ColdPenetrationAgainstChilledEnemiesUnique__1"] = { affix = "", "Damage Penetrates 20% Cold Resistance against Chilled Enemies", statOrder = { 5698 }, level = 81, group = "ColdPenetrationAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1477032229] = { "Damage Penetrates 20% Cold Resistance against Chilled Enemies" }, } }, - ["GainLifeOnIgnitingEnemyUnique__1"] = { affix = "", "Recover (40-60) Life when you Ignite an Enemy", statOrder = { 9679 }, level = 81, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (40-60) Life when you Ignite an Enemy" }, } }, - ["GainLifeOnIgnitingEnemyUnique__2"] = { affix = "", "Recover (20-30) Life when you Ignite an Enemy", statOrder = { 9679 }, level = 36, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (20-30) Life when you Ignite an Enemy" }, } }, - ["ReflectsShocksUnique__1"] = { affix = "", "Shock Reflection", statOrder = { 9715 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } }, - ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", statOrder = { 5581 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [2319040925] = { "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life" }, } }, - ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6794 }, level = 1, group = "FrenzyChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2977774856] = { "Gain a Frenzy Charge on Hit while Bleeding" }, } }, - ["IncreasedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5683 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, - ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5683 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, - ["OnHitBlindChilledEnemiesUnique__1_"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4925 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled enemies on Hit" }, } }, + ["AddedLightningDamagePerShockedEnemyKilledUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 8963 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4222857095] = { "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently" }, } }, + ["ColdPenetrationAgainstChilledEnemiesUnique__1"] = { affix = "", "Damage Penetrates 20% Cold Resistance against Chilled Enemies", statOrder = { 5694 }, level = 81, group = "ColdPenetrationAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1477032229] = { "Damage Penetrates 20% Cold Resistance against Chilled Enemies" }, } }, + ["GainLifeOnIgnitingEnemyUnique__1"] = { affix = "", "Recover (40-60) Life when you Ignite an Enemy", statOrder = { 9670 }, level = 81, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (40-60) Life when you Ignite an Enemy" }, } }, + ["GainLifeOnIgnitingEnemyUnique__2"] = { affix = "", "Recover (20-30) Life when you Ignite an Enemy", statOrder = { 9670 }, level = 36, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (20-30) Life when you Ignite an Enemy" }, } }, + ["ReflectsShocksUnique__1"] = { affix = "", "Shock Reflection", statOrder = { 9706 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } }, + ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", statOrder = { 5577 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [2319040925] = { "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life" }, } }, + ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6790 }, level = 1, group = "FrenzyChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2977774856] = { "Gain a Frenzy Charge on Hit while Bleeding" }, } }, + ["IncreasedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5679 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, + ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5679 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, + ["OnHitBlindChilledEnemiesUnique__1_"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4921 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled enemies on Hit" }, } }, ["GainLifeOnBlockUnique__1"] = { affix = "", "Recover (250-500) Life when you Block", statOrder = { 1522 }, level = 1, group = "RecoverLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [1678831767] = { "Recover (250-500) Life when you Block" }, } }, ["GrantsLevel30ReckoningUnique__1"] = { affix = "", "Grants Level 30 Reckoning Skill", statOrder = { 489 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2434330144] = { "Grants Level 30 Reckoning Skill" }, } }, - ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9112 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2602664175] = { "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy" }, } }, + ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9103 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2602664175] = { "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy" }, } }, ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3286 }, level = 1, group = "WhenReachingMaxPowerChargesGainAFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2732344760] = { "Gain a Frenzy Charge on reaching Maximum Power Charges" }, } }, ["GrantsEnvyUnique__1"] = { affix = "", "Grants Level 25 Envy Skill", statOrder = { 488 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 25 Envy Skill" }, } }, ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 488 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 15 Envy Skill" }, } }, - ["GainArmourIfBlockedRecentlyUnique__1"] = { affix = "", "+(1500-3000) Armour if you've Blocked Recently", statOrder = { 4106 }, level = 1, group = "GainArmourIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4091848539] = { "+(1500-3000) Armour if you've Blocked Recently" }, } }, - ["EnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 9428 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate enemies on Block" }, } }, + ["GainArmourIfBlockedRecentlyUnique__1"] = { affix = "", "+(1500-3000) Armour if you've Blocked Recently", statOrder = { 4103 }, level = 1, group = "GainArmourIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4091848539] = { "+(1500-3000) Armour if you've Blocked Recently" }, } }, + ["EnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 9419 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate enemies on Block" }, } }, ["MinionsPoisonEnemiesOnHitUnique__1"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2900 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } }, ["MinionsPoisonEnemiesOnHitUnique__2"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2900 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } }, ["GrantsLevel20BoneNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy", statOrder = { 553 }, level = 1, group = "GrantsLevel20BoneNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [2634885412] = { "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy" }, } }, ["GrantsLevel20IcicleNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 590 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [1357672429] = { "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy" }, } }, - ["AttacksCauseBleedingOnCursedEnemyHitUnique__1"] = { affix = "", "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", statOrder = { 4586 }, level = 1, group = "AttacksCauseBleedingOnCursedEnemyHit25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2591028853] = { "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies" }, } }, - ["ReceiveBleedingWhenHitUnique__1_"] = { affix = "", "50% chance to be inflicted with Bleeding when Hit", statOrder = { 9654 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "50% chance to be inflicted with Bleeding when Hit" }, } }, - ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4419 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [713266390] = { "Armour is increased by Uncapped Fire Resistance" }, } }, - ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6498 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, - ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Hit Chance is increased by Overcapped Lightning Resistance", statOrder = { 5840 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Hit Chance is increased by Overcapped Lightning Resistance" }, } }, - ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4327 }, level = 44, group = "CoverInAshWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3748879662] = { "Cover Enemies in Ash when they Hit you" }, } }, + ["AttacksCauseBleedingOnCursedEnemyHitUnique__1"] = { affix = "", "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", statOrder = { 4583 }, level = 1, group = "AttacksCauseBleedingOnCursedEnemyHit25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2591028853] = { "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies" }, } }, + ["ReceiveBleedingWhenHitUnique__1_"] = { affix = "", "50% chance to be inflicted with Bleeding when Hit", statOrder = { 9645 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "50% chance to be inflicted with Bleeding when Hit" }, } }, + ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4416 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [713266390] = { "Armour is increased by Uncapped Fire Resistance" }, } }, + ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6494 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, + ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Hit Chance is increased by Overcapped Lightning Resistance", statOrder = { 5836 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Hit Chance is increased by Overcapped Lightning Resistance" }, } }, + ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4324 }, level = 44, group = "CoverInAshWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3748879662] = { "Cover Enemies in Ash when they Hit you" }, } }, ["CriticalStrikesDealIncreasedLightningDamageUnique__1"] = { affix = "", "50% increased Lightning Damage", statOrder = { 875 }, level = 87, group = "CriticalStrikesDealIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "50% increased Lightning Damage" }, } }, ["MaximumEnergyShieldAsPercentageOfLifeUnique__1"] = { affix = "", "Gain (4-6)% of maximum Life as Extra maximum Energy Shield", statOrder = { 1435 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1228337241] = { "Gain (4-6)% of maximum Life as Extra maximum Energy Shield" }, } }, ["MaximumEnergyShieldAsPercentageOfLifeUnique__2"] = { affix = "", "Gain (5-10)% of maximum Life as Extra maximum Energy Shield", statOrder = { 1435 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1228337241] = { "Gain (5-10)% of maximum Life as Extra maximum Energy Shield" }, } }, ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 2867 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2459809121] = { "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%" }, } }, ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 59 }, level = 1, group = "OnlySocketCorruptedGems", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [608438307] = { "You can only Socket Corrupted Gems in this item" }, } }, ["CurseLevel10VulnerabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2304 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2213584313] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 7879, 7879.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3931143552] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value" }, } }, - ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 7880, 7880.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1645524575] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill" }, } }, - ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 7857, 7857.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [509677462] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill" }, } }, - ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 7893, 7893.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [926444104] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill" }, } }, + ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 7875, 7875.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3931143552] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value" }, } }, + ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 7876, 7876.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1645524575] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill" }, } }, + ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 7853, 7853.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [509677462] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill" }, } }, + ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 7889, 7889.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [926444104] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill" }, } }, ["LightningStrikesOnCritUnique__1"] = { affix = "", "Trigger Level 12 Lightning Bolt when you deal a Critical Hit", statOrder = { 559 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 12 Lightning Bolt when you deal a Critical Hit" }, } }, ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Hit", statOrder = { 559 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 30 Lightning Bolt when you deal a Critical Hit" }, } }, ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 3679 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995612171] = { "50% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4355 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1483066460] = { "Arctic Armour has no Reservation" }, } }, + ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4352 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1483066460] = { "Arctic Armour has no Reservation" }, } }, ["BleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3169, 3169.1 }, level = 1, group = "BleedingEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3133323410] = { "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage" }, } }, ["HeraldOfIceDamageUnique__1_"] = { affix = "", "50% increased Herald of Ice Damage", statOrder = { 3393 }, level = 1, group = "HeraldOfIceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3910961021] = { "50% increased Herald of Ice Damage" }, } }, ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 3088 }, level = 1, group = "IncreasedLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "40% increased Lightning Damage taken" }, } }, @@ -4053,7 +4047,7 @@ return { ["ReducedDamageIfTakenASavageHitRecentlyUnique_1"] = { affix = "", "10% increased Damage taken if you've taken a Savage Hit Recently", statOrder = { 3827 }, level = 1, group = "ReducedDamageIfTakenASavageHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2415592273] = { "10% increased Damage taken if you've taken a Savage Hit Recently" }, } }, ["IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemiesUnique___1"] = { affix = "", "20% increased Damage with Hits for each Level higher the Enemy is than you", statOrder = { 3845 }, level = 1, group = "IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4095359151] = { "20% increased Damage with Hits for each Level higher the Enemy is than you" }, } }, ["IncreasedCostOfMovementSkillsUnique_1"] = { affix = "", "25% increased Movement Skill Mana Cost", statOrder = { 3835 }, level = 1, group = "IncreasedCostOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3992153900] = { "25% increased Movement Skill Mana Cost" }, } }, - ["ChanceToDodgeSpellsWhilePhasing_Unique_1"] = { affix = "", "30% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4607 }, level = 1, group = "AvoidElementalStatusAilmentsPhasing", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [115351487] = { "30% chance to Avoid Elemental Ailments while Phasing" }, } }, + ["ChanceToDodgeSpellsWhilePhasing_Unique_1"] = { affix = "", "30% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4604 }, level = 1, group = "AvoidElementalStatusAilmentsPhasing", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [115351487] = { "30% chance to Avoid Elemental Ailments while Phasing" }, } }, ["IncreasedEvasionWithOnslaughtUnique_1"] = { affix = "", "100% increased Evasion Rating during Onslaught", statOrder = { 1425 }, level = 1, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [156734303] = { "100% increased Evasion Rating during Onslaught" }, } }, ["IIQFromMaimedEnemiesUnique_1"] = { affix = "", "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", statOrder = { 3825 }, level = 1, group = "IIQFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3122365625] = { "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies" }, } }, ["IIRFromMaimedEnemiesUnique_1"] = { affix = "", "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies", statOrder = { 3826 }, level = 1, group = "IIRFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2085001246] = { "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies" }, } }, @@ -4074,7 +4068,7 @@ return { ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 3854 }, level = 1, group = "IncreasedLifeWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2217962305] = { "(8-12)% increased Maximum Life if no Equipped Items are Corrupted" }, } }, ["LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Life per second if no Equipped Items are Corrupted", statOrder = { 3855 }, level = 1, group = "LifeRegenerationPerMinuteWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2497198283] = { "Regenerate 400 Life per second if no Equipped Items are Corrupted" }, } }, ["EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted", statOrder = { 3856 }, level = 1, group = "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4156715241] = { "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted" }, } }, - ["BaseManaRegenerationWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 35 Mana per second if all Equipped Items are Corrupted", statOrder = { 7992 }, level = 1, group = "BaseManaRegenerationWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2760138143] = { "Regenerate 35 Mana per second if all Equipped Items are Corrupted" }, } }, + ["BaseManaRegenerationWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 35 Mana per second if all Equipped Items are Corrupted", statOrder = { 7988 }, level = 1, group = "BaseManaRegenerationWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2760138143] = { "Regenerate 35 Mana per second if all Equipped Items are Corrupted" }, } }, ["AddedChaosDamageToAttacksAndSpellsUnique__1"] = { affix = "", "Adds (13-17) to (29-37) Chaos Damage", statOrder = { 1287 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (13-17) to (29-37) Chaos Damage" }, } }, ["AddedChaosDamageToAttacksAndSpellsUnique__2"] = { affix = "", "Adds (13-17) to (23-29) Chaos Damage", statOrder = { 1287 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (13-17) to (23-29) Chaos Damage" }, } }, ["GlobalAddedChaosDamageUnique__1"] = { affix = "", "Adds (17-19) to (23-29) Chaos Damage", statOrder = { 1287 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-19) to (23-29) Chaos Damage" }, } }, @@ -4109,7 +4103,7 @@ return { ["ItemRarityWhileWearingANormalItemUnique__1"] = { affix = "", "(80-100)% increased Rarity of Items found with a Normal Item Equipped", statOrder = { 3862 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4151190513] = { "(80-100)% increased Rarity of Items found with a Normal Item Equipped" }, } }, ["AdditionalAttackTotemsUnique__1"] = { affix = "", "Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 3895 }, level = 1, group = "AdditionalAttackTotems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3266394681] = { "Attack Skills have +1 to maximum number of Summoned Totems" }, } }, ["MinionColdResistUnique__1"] = { affix = "", "Minions have +40% to Cold Resistance", statOrder = { 3841 }, level = 1, group = "MinionColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "minion_resistance", "elemental", "cold", "resistance", "minion" }, tradeHashes = { [2200407711] = { "Minions have +40% to Cold Resistance" }, } }, - ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 9055 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "minion_resistance", "elemental", "fire", "resistance", "minion" }, tradeHashes = { [1889350679] = { "Minions have +40% to Fire Resistance" }, } }, + ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 9046 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "minion_resistance", "elemental", "fire", "resistance", "minion" }, tradeHashes = { [1889350679] = { "Minions have +40% to Fire Resistance" }, } }, ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of their Physical Damage as Extra Cold Damage", statOrder = { 3843 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "minion_damage", "physical_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [351413557] = { "Minions gain 20% of their Physical Damage as Extra Cold Damage" }, } }, ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 740 }, level = 1, group = "FlaskStunImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3589217170] = { "Cannot be Stunned during Effect" }, } }, ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 3891 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [144887967] = { "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy" }, } }, @@ -4127,7 +4121,7 @@ return { ["ControlledDestructionSupportUnique__1New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 387 }, level = 45, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3718597497] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, ["ColdDamageIgnitesUnique__1"] = { affix = "", "Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 2624 }, level = 30, group = "ColdDamageAlsoIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1888494262] = { "Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes" }, } }, ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 0.2% of maximum Life per second per Endurance Charge", statOrder = { 1444 }, level = 40, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of maximum Life per second per Endurance Charge" }, } }, - ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4369 }, level = 1, group = "AreaOfEffectPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448279015] = { "2% increased Area of Effect per Endurance Charge" }, } }, + ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4366 }, level = 1, group = "AreaOfEffectPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448279015] = { "2% increased Area of Effect per Endurance Charge" }, } }, ["ChanceForDoubleStunDurationUnique__1"] = { affix = "", "50% chance to double Stun Duration", statOrder = { 3249 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2622251413] = { "50% chance to double Stun Duration" }, } }, ["ChanceForDoubleStunDurationImplicitMace_1"] = { affix = "", "25% chance to double Stun Duration", statOrder = { 3249 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2622251413] = { "25% chance to double Stun Duration" }, } }, ["PhysicalAddedAsFireUnique__1"] = { affix = "", "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3448 }, level = 30, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3606204707] = { "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks" }, } }, @@ -4147,7 +4141,7 @@ return { ["CannotLeechFromCriticalStrikesUnique___1"] = { affix = "", "Cannot Leech Life from Critical Hits", statOrder = { 3922 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [3243534964] = { "Cannot Leech Life from Critical Hits" }, } }, ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Hit", statOrder = { 3923 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "30% chance to Blind Enemies on Critical Hit" }, } }, ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Hit", statOrder = { 3923 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "(40-50)% chance to Blind Enemies on Critical Hit" }, } }, - ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7638 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, + ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7634 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 3921 }, level = 48, group = "StunDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2562665460] = { "Stun Threshold is based on Energy Shield instead of Life" }, } }, ["TakeNoExtraDamageFromCriticalStrikesUnique__1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3931 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Hits" }, } }, ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 3932 }, level = 1, group = "ShockedEnemyCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4107150355] = { "Enemies you Shock have 30% reduced Cast Speed" }, } }, @@ -4155,173 +4149,173 @@ return { ["IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1"] = { affix = "", "100% increased Burning Damage if you've Ignited an Enemy Recently", statOrder = { 3969 }, level = 1, group = "IncreasedBurningDamageIfYouHaveIgnitedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3919557483] = { "100% increased Burning Damage if you've Ignited an Enemy Recently" }, } }, ["RecoverLifePercentOnIgniteUnique__1"] = { affix = "", "Recover 1% of maximum Life when you Ignite an Enemy", statOrder = { 3970 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3112776239] = { "Recover 1% of maximum Life when you Ignite an Enemy" }, } }, ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 3971 }, level = 1, group = "IncreasedMeleePhysicalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1332534089] = { "100% increased Melee Physical Damage against Ignited Enemies" }, } }, - ["NormalMonsterItemQuantityUnique__1"] = { affix = "", "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", statOrder = { 9311 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1342790450] = { "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies" }, } }, - ["MagicMonsterItemRarityUnique__1"] = { affix = "", "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", statOrder = { 7949 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3433676080] = { "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies" }, } }, - ["HeistContractChestRewardsDuplicated"] = { affix = "", "Heist Chests have a 100% chance to Duplicate their contents", "Monsters have 100% more Life", statOrder = { 5403, 8316 }, level = 1, group = "HeistContractChestRewardsDuplicated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3026134008] = { "Monsters have 100% more Life" }, [2747693610] = { "Heist Chests have a 100% chance to Duplicate their contents" }, } }, - ["HeistContractAdditionalIntelligence"] = { affix = "", "Completing a Heist generates 3 additional Reveals", "Heist Chests have 25% chance to contain nothing", statOrder = { 8312, 8313 }, level = 1, group = "HeistContractAdditionalIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3038236553] = { "Heist Chests have 25% chance to contain nothing" }, [2309146693] = { "Completing a Heist generates 3 additional Reveals" }, } }, - ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 6165, 8317 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429193272] = { "50% reduced time before Lockdown" }, [898812928] = { "Rogue Perks are doubled" }, } }, - ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 8314, 8315 }, level = 1, group = "HeistContractBetterTargetValue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3009603087] = { "200% more Rogue's Marker value of primary Heist Target" }, [1045213941] = { "Rogue Equipment cannot be found" }, } }, + ["NormalMonsterItemQuantityUnique__1"] = { affix = "", "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", statOrder = { 9302 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1342790450] = { "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies" }, } }, + ["MagicMonsterItemRarityUnique__1"] = { affix = "", "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", statOrder = { 7945 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3433676080] = { "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies" }, } }, + ["HeistContractChestRewardsDuplicated"] = { affix = "", "Heist Chests have a 100% chance to Duplicate their contents", "Monsters have 100% more Life", statOrder = { 5399, 8309 }, level = 1, group = "HeistContractChestRewardsDuplicated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3026134008] = { "Monsters have 100% more Life" }, [2747693610] = { "Heist Chests have a 100% chance to Duplicate their contents" }, } }, + ["HeistContractAdditionalIntelligence"] = { affix = "", "Completing a Heist generates 3 additional Reveals", "Heist Chests have 25% chance to contain nothing", statOrder = { 8305, 8306 }, level = 1, group = "HeistContractAdditionalIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3038236553] = { "Heist Chests have 25% chance to contain nothing" }, [2309146693] = { "Completing a Heist generates 3 additional Reveals" }, } }, + ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 6161, 8310 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429193272] = { "50% reduced time before Lockdown" }, [898812928] = { "Rogue Perks are doubled" }, } }, + ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 8307, 8308 }, level = 1, group = "HeistContractBetterTargetValue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3009603087] = { "200% more Rogue's Marker value of primary Heist Target" }, [1045213941] = { "Rogue Equipment cannot be found" }, } }, ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Hit Chance with arrows that Fork", statOrder = { 3972 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4169623196] = { "(150-200)% increased Critical Hit Chance with arrows that Fork" }, } }, ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 3975 }, level = 1, group = "ArrowsAlwaysCritAfterPiercing", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1997151732] = { "Arrows Pierce all Targets after Chaining" }, } }, ["ArrowsThatPierceCauseBleedingUnique__1"] = { affix = "", "Arrows that Pierce have 50% chance to inflict Bleeding", statOrder = { 3974 }, level = 1, group = "ArrowsThatPierceCauseBleeding25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1812251528] = { "Arrows that Pierce have 50% chance to inflict Bleeding" }, } }, ["IncreaseProjectileAttackDamagePerAccuracyUnique__1"] = { affix = "", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 3978 }, level = 1, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [4157767905] = { "1% increased Projectile Attack Damage per 200 Accuracy Rating" }, } }, ["AdditionalSpellProjectilesUnique__1"] = { affix = "", "Spells fire an additional Projectile", statOrder = { 3976 }, level = 85, group = "AdditionalSpellProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1011373762] = { "Spells fire an additional Projectile" }, } }, - ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { affix = "", "Minions deal 70% increased Damage if you've Hit Recently", statOrder = { 9039 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal 70% increased Damage if you've Hit Recently" }, } }, - ["MinionDamageAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 4232 }, level = 1, group = "MinionDamageAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1433144735] = { "Increases and Reductions to Minion Damage also affect you at 150% of their value" }, } }, - ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Hit Chance against Chilled Enemies", statOrder = { 6902 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3699490848] = { "60% increased Critical Hit Chance against Chilled Enemies" }, } }, + ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { affix = "", "Minions deal 70% increased Damage if you've Hit Recently", statOrder = { 9030 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal 70% increased Damage if you've Hit Recently" }, } }, + ["MinionDamageAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 4229 }, level = 1, group = "MinionDamageAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1433144735] = { "Increases and Reductions to Minion Damage also affect you at 150% of their value" }, } }, + ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Hit Chance against Chilled Enemies", statOrder = { 6898 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3699490848] = { "60% increased Critical Hit Chance against Chilled Enemies" }, } }, ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", statOrder = { 606 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, tradeHashes = { [2295303426] = { "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown" }, } }, - ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "20% increased Area of Effect for Attacks" }, } }, - ["IncreasedAttackAreaOfEffectUnique__2_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "20% increased Area of Effect for Attacks" }, } }, - ["IncreasedAttackAreaOfEffectUnique__3"] = { affix = "", "(-40-40)% reduced Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(-40-40)% reduced Area of Effect for Attacks" }, } }, + ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "20% increased Area of Effect for Attacks" }, } }, + ["IncreasedAttackAreaOfEffectUnique__2_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "20% increased Area of Effect for Attacks" }, } }, + ["IncreasedAttackAreaOfEffectUnique__3"] = { affix = "", "(-40-40)% reduced Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(-40-40)% reduced Area of Effect for Attacks" }, } }, ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Physical Damage from Hits also Contributes to Shock Chance", statOrder = { 2640 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3848047105] = { "Physical Damage from Hits also Contributes to Shock Chance" }, } }, - ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6088 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, - ["DealNoElementalDamageUnique__2"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6088 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, - ["DealNoElementalDamageUnique__3"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6088 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, - ["TakeFireDamageOnIgniteUnique__1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6578 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, - ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 7913 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2390273715] = { "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill" }, } }, - ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 9140 }, level = 1, group = "MovementSkillsDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4114010855] = { "Movement Skills deal no Physical Damage" }, } }, - ["GainPhasingIfKilledRecentlyUnique__1"] = { affix = "", "You have Phasing if you've Killed Recently", statOrder = { 6837 }, level = 1, group = "GainPhasingIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3489372920] = { "You have Phasing if you've Killed Recently" }, } }, + ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6084 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, + ["DealNoElementalDamageUnique__2"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6084 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, + ["DealNoElementalDamageUnique__3"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6084 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, + ["TakeFireDamageOnIgniteUnique__1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6574 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, + ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 7909 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2390273715] = { "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill" }, } }, + ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 9131 }, level = 1, group = "MovementSkillsDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4114010855] = { "Movement Skills deal no Physical Damage" }, } }, + ["GainPhasingIfKilledRecentlyUnique__1"] = { affix = "", "You have Phasing if you've Killed Recently", statOrder = { 6833 }, level = 1, group = "GainPhasingIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3489372920] = { "You have Phasing if you've Killed Recently" }, } }, ["MovementSkillsCostNoManaUnique__1"] = { affix = "", "Movement Skills Cost no Mana", statOrder = { 3161 }, level = 1, group = "MovementSkillsCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3086866381] = { "Movement Skills Cost no Mana" }, } }, ["ProjectileAttackDamageImplicitGloves1"] = { affix = "", "(14-18)% increased Projectile Attack Damage", statOrder = { 1739 }, level = 1, group = "ProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2162876159] = { "(14-18)% increased Projectile Attack Damage" }, } }, ["ManaPerStrengthUnique__1__"] = { affix = "", "+1 Mana per 4 Strength", statOrder = { 1766 }, level = 1, group = "ManaPerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [507075051] = { "+1 Mana per 4 Strength" }, } }, - ["EnergyShieldPerStrengthUnique__1"] = { affix = "", "1% increased Energy Shield per 10 Strength", statOrder = { 6434 }, level = 1, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [506942497] = { "1% increased Energy Shield per 10 Strength" }, } }, + ["EnergyShieldPerStrengthUnique__1"] = { affix = "", "1% increased Energy Shield per 10 Strength", statOrder = { 6430 }, level = 1, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [506942497] = { "1% increased Energy Shield per 10 Strength" }, } }, ["LifePerDexterityUnique__1"] = { affix = "", "+1 Life per 4 Dexterity", statOrder = { 1765 }, level = 1, group = "LifePerDexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2042405614] = { "+1 Life per 4 Dexterity" }, } }, - ["MeleePhysicalDamagePerDexterityUnique__1_"] = { affix = "", "2% increased Melee Physical Damage per 10 Dexterity", statOrder = { 8924 }, level = 1, group = "MeleePhysicalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2355151849] = { "2% increased Melee Physical Damage per 10 Dexterity" }, } }, + ["MeleePhysicalDamagePerDexterityUnique__1_"] = { affix = "", "2% increased Melee Physical Damage per 10 Dexterity", statOrder = { 8915 }, level = 1, group = "MeleePhysicalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2355151849] = { "2% increased Melee Physical Damage per 10 Dexterity" }, } }, ["AccuracyPerIntelligenceUnique__1"] = { affix = "", "+4 Accuracy Rating per 2 Intelligence", statOrder = { 1764 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2196657026] = { "+4 Accuracy Rating per 2 Intelligence" }, } }, - ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6485 }, level = 1, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [810772344] = { "2% increased Evasion Rating per 10 Intelligence" }, } }, - ["ChanceToGainFrenzyChargeOnStunUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when you Stun an Enemy", statOrder = { 5531 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1695720239] = { "15% chance to gain a Frenzy Charge when you Stun an Enemy" }, } }, - ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 9572 }, level = 1, group = "PrrojectilesPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2636403786] = { "Projectiles Pierce all Targets while you have Phasing" }, } }, - ["AdditionalPierceWhilePhasingUnique__1"] = { affix = "", "Projectiles Pierce 5 additional Targets while you have Phasing", statOrder = { 9573 }, level = 1, group = "AdditionalPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [97250660] = { "Projectiles Pierce 5 additional Targets while you have Phasing" }, } }, - ["ChanceToAvoidProjectilesWhilePhasingUnique__1"] = { affix = "", "20% chance to Avoid Projectiles while Phasing", statOrder = { 4615 }, level = 1, group = "ChanceToAvoidProjectilesWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635120731] = { "20% chance to Avoid Projectiles while Phasing" }, } }, + ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6481 }, level = 1, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [810772344] = { "2% increased Evasion Rating per 10 Intelligence" }, } }, + ["ChanceToGainFrenzyChargeOnStunUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when you Stun an Enemy", statOrder = { 5527 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1695720239] = { "15% chance to gain a Frenzy Charge when you Stun an Enemy" }, } }, + ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 9563 }, level = 1, group = "PrrojectilesPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2636403786] = { "Projectiles Pierce all Targets while you have Phasing" }, } }, + ["AdditionalPierceWhilePhasingUnique__1"] = { affix = "", "Projectiles Pierce 5 additional Targets while you have Phasing", statOrder = { 9564 }, level = 1, group = "AdditionalPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [97250660] = { "Projectiles Pierce 5 additional Targets while you have Phasing" }, } }, + ["ChanceToAvoidProjectilesWhilePhasingUnique__1"] = { affix = "", "20% chance to Avoid Projectiles while Phasing", statOrder = { 4612 }, level = 1, group = "ChanceToAvoidProjectilesWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635120731] = { "20% chance to Avoid Projectiles while Phasing" }, } }, ["FlaskAdditionalProjectilesDuringEffectUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles during Effect", statOrder = { 761 }, level = 85, group = "FlaskAdditionalProjectilesDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [323705912] = { "Skills fire 2 additional Projectiles during Effect" }, } }, ["FlaskIncreasedAreaOfEffectDuringEffectUnique__1_"] = { affix = "", "(10-20)% increased Area of Effect during Effect", statOrder = { 738 }, level = 1, group = "FlaskIncreasedAreaOfEffectDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [215882879] = { "(10-20)% increased Area of Effect during Effect" }, } }, - ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 10752 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50381303] = { "Celestial Footprints" }, } }, + ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 10742 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50381303] = { "Celestial Footprints" }, } }, ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2664 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (10-15)% increased Attack Speed" }, } }, - ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 9337 }, level = 1, group = "GolemPerPrimordialJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [920385757] = { "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped" }, } }, - ["PrimordialJewelCountUnique__1"] = { affix = "", "Primordial", statOrder = { 10643 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 10643 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 10643 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 10643 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6923 }, level = 1, group = "GolemLifeUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1750735210] = { "Golems have (18-22)% increased Maximum Life" }, } }, - ["GolemLifeRegenerationUnique__1"] = { affix = "", "Summoned Golems Regenerate 2% of their maximum Life per second", statOrder = { 6922 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2235163762] = { "Summoned Golems Regenerate 2% of their maximum Life per second" }, } }, + ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 9328 }, level = 1, group = "GolemPerPrimordialJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [920385757] = { "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped" }, } }, + ["PrimordialJewelCountUnique__1"] = { affix = "", "Primordial", statOrder = { 10633 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 10633 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 10633 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 10633 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6919 }, level = 1, group = "GolemLifeUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1750735210] = { "Golems have (18-22)% increased Maximum Life" }, } }, + ["GolemLifeRegenerationUnique__1"] = { affix = "", "Summoned Golems Regenerate 2% of their maximum Life per second", statOrder = { 6918 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2235163762] = { "Summoned Golems Regenerate 2% of their maximum Life per second" }, } }, ["IncreasedDamageIfGolemSummonedRecently__1"] = { affix = "", "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", statOrder = { 3376 }, level = 1, group = "IncreasedDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3384291300] = { "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds" }, } }, ["IncreasedGolemDamageIfGolemSummonedRecently__1_"] = { affix = "", "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage", statOrder = { 3377 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage" }, } }, ["IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1"] = { affix = "", "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", statOrder = { 3377 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage" }, } }, ["GolemSkillsCooldownRecoveryUnique__1"] = { affix = "", "Golem Skills have (20-30)% increased Cooldown Recovery Rate", statOrder = { 3036 }, level = 1, group = "GolemSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [729180395] = { "Golem Skills have (20-30)% increased Cooldown Recovery Rate" }, } }, ["GolemsSkillsCooldownRecoveryUnique__1_"] = { affix = "", "Summoned Golems have (30-45)% increased Cooldown Recovery Rate", statOrder = { 3037 }, level = 1, group = "GolemsSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3246099900] = { "Summoned Golems have (30-45)% increased Cooldown Recovery Rate" }, } }, - ["GolemBuffEffectUnique__1"] = { affix = "", "30% increased Effect of Buffs granted by your Golems", statOrder = { 6920 }, level = 1, group = "GolemBuffEffectUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2109043683] = { "30% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemAttackAndCastSpeedUnique__1"] = { affix = "", "Golems have (16-20)% increased Attack and Cast Speed", statOrder = { 6918 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [56225773] = { "Golems have (16-20)% increased Attack and Cast Speed" }, } }, - ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6926 }, level = 1, group = "GolemArmourRatingUnique", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "minion" }, tradeHashes = { [1020786773] = { "Golems have +(800-1000) to Armour" }, } }, - ["ArmourPerTotemUnique__1"] = { affix = "", "+300 Armour per Summoned Totem", statOrder = { 4107 }, level = 1, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1429385513] = { "+300 Armour per Summoned Totem" }, } }, - ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", statOrder = { 10013 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [467806158] = { "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds" }, } }, - ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", statOrder = { 10003 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1550015622] = { "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently" }, } }, - ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Hits deal no Damage", statOrder = { 5896 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3245481061] = { "Critical Hits deal no Damage" }, } }, + ["GolemBuffEffectUnique__1"] = { affix = "", "30% increased Effect of Buffs granted by your Golems", statOrder = { 6916 }, level = 1, group = "GolemBuffEffectUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2109043683] = { "30% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemAttackAndCastSpeedUnique__1"] = { affix = "", "Golems have (16-20)% increased Attack and Cast Speed", statOrder = { 6914 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [56225773] = { "Golems have (16-20)% increased Attack and Cast Speed" }, } }, + ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6922 }, level = 1, group = "GolemArmourRatingUnique", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "minion" }, tradeHashes = { [1020786773] = { "Golems have +(800-1000) to Armour" }, } }, + ["ArmourPerTotemUnique__1"] = { affix = "", "+300 Armour per Summoned Totem", statOrder = { 4104 }, level = 1, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1429385513] = { "+300 Armour per Summoned Totem" }, } }, + ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", statOrder = { 10004 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [467806158] = { "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds" }, } }, + ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", statOrder = { 9994 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1550015622] = { "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently" }, } }, + ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Hits deal no Damage", statOrder = { 5892 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3245481061] = { "Critical Hits deal no Damage" }, } }, ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 3986 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "60% increased Mana Regeneration Rate while stationary" }, } }, ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 3984 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+1500 Armour while stationary" }, } }, - ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { affix = "", "15% chance to create Chilled Ground when Hit with an Attack", statOrder = { 5654 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [358040686] = { "15% chance to create Chilled Ground when Hit with an Attack" }, } }, - ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 9220 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, - ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 9220 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5867 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5867 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, - ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies killed by your Hits are destroyed", statOrder = { 6343 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, + ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { affix = "", "15% chance to create Chilled Ground when Hit with an Attack", statOrder = { 5650 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [358040686] = { "15% chance to create Chilled Ground when Hit with an Attack" }, } }, + ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 9211 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, + ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 9211 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, + ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5863 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, + ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5863 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, + ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies killed by your Hits are destroyed", statOrder = { 6339 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of maximum Life on Kill" }, } }, ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of maximum Life on Kill" }, } }, ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage", statOrder = { 2908 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [956384511] = { "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage" }, } }, - ["AttackDamagePerLowestArmourOrEvasionUnique__1"] = { affix = "", "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", statOrder = { 4524 }, level = 98, group = "AttackDamagePerLowestArmourOrEvasion", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1358422215] = { "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating" }, } }, - ["FortifyOnMeleeStunUnique__1"] = { affix = "", "Melee Hits which Stun Fortify", statOrder = { 5516 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206381437] = { "Melee Hits which Stun Fortify" }, } }, - ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6835 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493590317] = { "You have Onslaught while Fortified" }, } }, - ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7749 }, level = 1, group = "StatsDoubledInBreach", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [202275580] = { "Properties are doubled while in a Breach" }, } }, + ["AttackDamagePerLowestArmourOrEvasionUnique__1"] = { affix = "", "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", statOrder = { 4521 }, level = 98, group = "AttackDamagePerLowestArmourOrEvasion", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1358422215] = { "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating" }, } }, + ["FortifyOnMeleeStunUnique__1"] = { affix = "", "Melee Hits which Stun Fortify", statOrder = { 5512 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206381437] = { "Melee Hits which Stun Fortify" }, } }, + ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6831 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493590317] = { "You have Onslaught while Fortified" }, } }, + ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7745 }, level = 1, group = "StatsDoubledInBreach", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [202275580] = { "Properties are doubled while in a Breach" }, } }, ["SummonSpidersOnKillUnique__1"] = { affix = "", "100% chance to Trigger Level 1 Raise Spiders on Kill", statOrder = { 567 }, level = 1, group = "GrantsSpiderMinion", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3844016207] = { "100% chance to Trigger Level 1 Raise Spiders on Kill" }, } }, - ["CannotCastSpellsUnique__1"] = { affix = "", "Cannot Cast Spells", statOrder = { 5292 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3965442551] = { "Cannot Cast Spells" }, } }, - ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 10033 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [291644318] = { "Spell Skills deal no Damage" }, } }, - ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 10756 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3576153145] = { "Burning Hoofprints" }, } }, - ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6568 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2241902512] = { "1% increased Fire Damage per 20 Strength" }, } }, - ["GolemLargerAggroRadiusUnique__1"] = { affix = "", "Summoned Golems are Aggressive", statOrder = { 10657 }, level = 1, group = "GolemLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3630426972] = { "Summoned Golems are Aggressive" }, } }, - ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "20% of Maximum Life Converted to Energy Shield" }, } }, - ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "50% of Maximum Life Converted to Energy Shield" }, } }, - ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit with this weapon" }, } }, - ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "60% chance to Poison on Hit with this weapon" }, } }, - ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, - ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, + ["CannotCastSpellsUnique__1"] = { affix = "", "Cannot Cast Spells", statOrder = { 5288 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3965442551] = { "Cannot Cast Spells" }, } }, + ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 10024 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [291644318] = { "Spell Skills deal no Damage" }, } }, + ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 10746 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3576153145] = { "Burning Hoofprints" }, } }, + ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6564 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2241902512] = { "1% increased Fire Damage per 20 Strength" }, } }, + ["GolemLargerAggroRadiusUnique__1"] = { affix = "", "Summoned Golems are Aggressive", statOrder = { 10647 }, level = 1, group = "GolemLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3630426972] = { "Summoned Golems are Aggressive" }, } }, + ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 8875 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "20% of Maximum Life Converted to Energy Shield" }, } }, + ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 8875 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "50% of Maximum Life Converted to Energy Shield" }, } }, + ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit with this weapon", statOrder = { 7809 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit with this weapon" }, } }, + ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit with this weapon", statOrder = { 7809 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "60% chance to Poison on Hit with this weapon" }, } }, + ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7809 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, + ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7809 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "25% chance to Poison on Hit" }, } }, - ["IncreasedSpellDamageWhileShockedUnique__1"] = { affix = "", "50% increased Spell Damage while Shocked", statOrder = { 10023 }, level = 1, group = "IncreasedSpellDamageWhileShocked", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2088288068] = { "50% increased Spell Damage while Shocked" }, } }, - ["MaximumResistanceWithNoEnduranceChargesUnique__1__"] = { affix = "", "+2% to all maximum Resistances while you have no Endurance Charges", statOrder = { 4206 }, level = 1, group = "MaximumResistanceWithNoEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3635566977] = { "+2% to all maximum Resistances while you have no Endurance Charges" }, } }, - ["OnslaughtWithMaxEnduranceChargesUnique__1"] = { affix = "", "You have Onslaught while at maximum Endurance Charges", statOrder = { 6831 }, level = 1, group = "OnslaughtWithMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3101915418] = { "You have Onslaught while at maximum Endurance Charges" }, } }, - ["MinionsGainYourStrengthUnique__1"] = { affix = "", "Half of your Strength is added to your Minions", statOrder = { 9103 }, level = 1, group = "MinionsGainYourStrength", weightKey = { }, weightVal = { }, modTags = { "minion", "attribute" }, tradeHashes = { [2195137717] = { "Half of your Strength is added to your Minions" }, } }, - ["AdditionalZombiesPerXStrengthUnique__1"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Strength", statOrder = { 9344 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4056985119] = { "+1 to maximum number of Raised Zombies per 500 Strength" }, } }, - ["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 4660 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "25% reduced Bleeding Duration" }, } }, - ["IncreasedRarityPerRampageStacksUnique__1"] = { affix = "", "1% increased Rarity of Items found per 15 Rampage Kills", statOrder = { 7393 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4260403588] = { "1% increased Rarity of Items found per 15 Rampage Kills" }, } }, - ["ImmuneToBurningShockedChilledGroundUnique__1"] = { affix = "", "Immune to Burning Ground, Shocked Ground and Chilled Ground", statOrder = { 7282 }, level = 1, group = "ImmuneToBurningShockedChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3705740723] = { "Immune to Burning Ground, Shocked Ground and Chilled Ground" }, } }, - ["MaximumLifePer10DexterityUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Dexterity", statOrder = { 8881 }, level = 1, group = "FlatLifePer10Dexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3806100539] = { "+2 to Maximum Life per 10 Dexterity" }, } }, - ["LifeRegenerationWhileMovingUnique__1"] = { affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7499 }, level = 1, group = "LifeRegenerationWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2841027131] = { "Regenerate 100 Life per second while moving" }, } }, - ["SpellsAreDisabledUnique__1"] = { affix = "", "Your Spells are disabled", statOrder = { 10627 }, level = 1, group = "SpellsAreDisabled", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1981749265] = { "Your Spells are disabled" }, } }, - ["MaximumLifePerItemRarityUnique__1"] = { affix = "", "+1 Life per 2% increased Rarity of Items found", statOrder = { 8883 }, level = 1, group = "MaxLifePerItemRarity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1457265483] = { "+1 Life per 2% increased Rarity of Items found" }, } }, - ["PercentDamagePerItemQuantityUnique__1"] = { affix = "", "Your Increases and Reductions to Quantity of Items found also apply to Damage", statOrder = { 6002 }, level = 1, group = "PercentDamagePerItemQuantity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2675627948] = { "Your Increases and Reductions to Quantity of Items found also apply to Damage" }, } }, - ["ItemQuantityPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% increased Quantity of Items found per Chest opened Recently", statOrder = { 7392 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3729758391] = { "2% increased Quantity of Items found per Chest opened Recently" }, } }, - ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 9167 }, level = 1, group = "MovementSpeedPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [718844908] = { "2% reduced Movement Speed per Chest opened Recently" }, } }, - ["WarcryKnockbackUnique__1"] = { affix = "", "Warcries Knock Back and Interrupt Enemies in a smaller Area", statOrder = { 10505 }, level = 1, group = "WarcryKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [519622288] = { "Warcries Knock Back and Interrupt Enemies in a smaller Area" }, } }, + ["IncreasedSpellDamageWhileShockedUnique__1"] = { affix = "", "50% increased Spell Damage while Shocked", statOrder = { 10014 }, level = 1, group = "IncreasedSpellDamageWhileShocked", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2088288068] = { "50% increased Spell Damage while Shocked" }, } }, + ["MaximumResistanceWithNoEnduranceChargesUnique__1__"] = { affix = "", "+2% to all maximum Resistances while you have no Endurance Charges", statOrder = { 4203 }, level = 1, group = "MaximumResistanceWithNoEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3635566977] = { "+2% to all maximum Resistances while you have no Endurance Charges" }, } }, + ["OnslaughtWithMaxEnduranceChargesUnique__1"] = { affix = "", "You have Onslaught while at maximum Endurance Charges", statOrder = { 6827 }, level = 1, group = "OnslaughtWithMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3101915418] = { "You have Onslaught while at maximum Endurance Charges" }, } }, + ["MinionsGainYourStrengthUnique__1"] = { affix = "", "Half of your Strength is added to your Minions", statOrder = { 9094 }, level = 1, group = "MinionsGainYourStrength", weightKey = { }, weightVal = { }, modTags = { "minion", "attribute" }, tradeHashes = { [2195137717] = { "Half of your Strength is added to your Minions" }, } }, + ["AdditionalZombiesPerXStrengthUnique__1"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Strength", statOrder = { 9335 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4056985119] = { "+1 to maximum number of Raised Zombies per 500 Strength" }, } }, + ["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 4657 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "25% reduced Bleeding Duration" }, } }, + ["IncreasedRarityPerRampageStacksUnique__1"] = { affix = "", "1% increased Rarity of Items found per 15 Rampage Kills", statOrder = { 7389 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4260403588] = { "1% increased Rarity of Items found per 15 Rampage Kills" }, } }, + ["ImmuneToBurningShockedChilledGroundUnique__1"] = { affix = "", "Immune to Burning Ground, Shocked Ground and Chilled Ground", statOrder = { 7278 }, level = 1, group = "ImmuneToBurningShockedChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3705740723] = { "Immune to Burning Ground, Shocked Ground and Chilled Ground" }, } }, + ["MaximumLifePer10DexterityUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Dexterity", statOrder = { 8872 }, level = 1, group = "FlatLifePer10Dexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3806100539] = { "+2 to Maximum Life per 10 Dexterity" }, } }, + ["LifeRegenerationWhileMovingUnique__1"] = { affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7495 }, level = 1, group = "LifeRegenerationWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2841027131] = { "Regenerate 100 Life per second while moving" }, } }, + ["SpellsAreDisabledUnique__1"] = { affix = "", "Your Spells are disabled", statOrder = { 10617 }, level = 1, group = "SpellsAreDisabled", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1981749265] = { "Your Spells are disabled" }, } }, + ["MaximumLifePerItemRarityUnique__1"] = { affix = "", "+1 Life per 2% increased Rarity of Items found", statOrder = { 8874 }, level = 1, group = "MaxLifePerItemRarity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1457265483] = { "+1 Life per 2% increased Rarity of Items found" }, } }, + ["PercentDamagePerItemQuantityUnique__1"] = { affix = "", "Your Increases and Reductions to Quantity of Items found also apply to Damage", statOrder = { 5998 }, level = 1, group = "PercentDamagePerItemQuantity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2675627948] = { "Your Increases and Reductions to Quantity of Items found also apply to Damage" }, } }, + ["ItemQuantityPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% increased Quantity of Items found per Chest opened Recently", statOrder = { 7388 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3729758391] = { "2% increased Quantity of Items found per Chest opened Recently" }, } }, + ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 9158 }, level = 1, group = "MovementSpeedPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [718844908] = { "2% reduced Movement Speed per Chest opened Recently" }, } }, + ["WarcryKnockbackUnique__1"] = { affix = "", "Warcries Knock Back and Interrupt Enemies in a smaller Area", statOrder = { 10495 }, level = 1, group = "WarcryKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [519622288] = { "Warcries Knock Back and Interrupt Enemies in a smaller Area" }, } }, ["AttackAndCastSpeedOnUsingMovementSkillUnique__1"] = { affix = "", "15% increased Attack and Cast Speed if you've used a Movement Skill Recently", statOrder = { 3162 }, level = 1, group = "AttackAndCastSpeedOnUsingMovementSkill", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2831922878] = { "15% increased Attack and Cast Speed if you've used a Movement Skill Recently" }, } }, ["CannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", statOrder = { 2913 }, level = 1, group = "CannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [628716294] = { "Action Speed cannot be modified to below base value" }, } }, ["MovementCannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Movement Speed cannot be modified to below base value", statOrder = { 2914 }, level = 1, group = "MovementCannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3875592188] = { "Movement Speed cannot be modified to below base value" }, } }, - ["EnergyShieldStartsAtZero"] = { affix = "", "Your Energy Shield starts at zero", statOrder = { 10080 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2342431054] = { "Your Energy Shield starts at zero" }, } }, + ["EnergyShieldStartsAtZero"] = { affix = "", "Your Energy Shield starts at zero", statOrder = { 10071 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2342431054] = { "Your Energy Shield starts at zero" }, } }, ["FlaskElementalPenetrationOfHighestResistUnique__1"] = { affix = "", "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest", statOrder = { 807 }, level = 1, group = "FlaskElementalPenetrationOfHighestResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "flask", "damage", "elemental" }, tradeHashes = { [2444301311] = { "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest" }, } }, ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { affix = "", "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", statOrder = { 806 }, level = 1, group = "FlaskElementalDamageTakenOfLowestResist", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1869678332] = { "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest" }, } }, ["SocketedGemsSupportedByEnduranceChargeOnStunUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 388 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } }, - ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 7199 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2097550886] = { "(15-20)% increased Damage with Hits against Chilled Enemies" }, } }, + ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 7195 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2097550886] = { "(15-20)% increased Damage with Hits against Chilled Enemies" }, } }, ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "100% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "100% increased Fire Damage" }, } }, - ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { affix = "", "Immune to Freeze and Chill while Ignited", statOrder = { 7294 }, level = 1, group = "ImmuneToFreezeAndChillWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1512695141] = { "Immune to Freeze and Chill while Ignited" }, } }, - ["FirePenetrationIfBlockedRecentlyUnique__1"] = { affix = "", "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", statOrder = { 6585 }, level = 1, group = "FirePenetrationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2341811700] = { "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently" }, } }, + ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { affix = "", "Immune to Freeze and Chill while Ignited", statOrder = { 7290 }, level = 1, group = "ImmuneToFreezeAndChillWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1512695141] = { "Immune to Freeze and Chill while Ignited" }, } }, + ["FirePenetrationIfBlockedRecentlyUnique__1"] = { affix = "", "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", statOrder = { 6581 }, level = 1, group = "FirePenetrationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2341811700] = { "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently" }, } }, ["DisplayGrantsBloodOfferingUnique__1_"] = { affix = "", "Grants Level 15 Blood Offering Skill", statOrder = { 502 }, level = 1, group = "DisplayGrantsBloodOffering", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3985468650] = { "Grants Level 15 Blood Offering Skill" }, } }, ["TriggeredSummonLesserShrineUnique__1"] = { affix = "", "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 497 }, level = 1, group = "TriggeredSummonLesserShrine", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1010340836] = { "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy" }, } }, ["CastLevel1SummonLesserShrineOnKillUnique"] = { affix = "", "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 497 }, level = 1, group = "CastLevel1SummonLesserShrineOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1010340836] = { "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy" }, } }, - ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4294 }, level = 1, group = "AlwaysIgniteWhileBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2636728487] = { "You always Ignite while Burning" }, } }, - ["AdditionalBlockWhileNotCursedUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while not Cursed", statOrder = { 4182 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3619054484] = { "+10% Chance to Block Attack Damage while not Cursed" }, } }, - ["LifePerLevelUnique__1"] = { affix = "", "+1 Maximum Life per Level", statOrder = { 7470 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1982144275] = { "+1 Maximum Life per Level" }, } }, - ["ManaPerLevelUnique__1"] = { affix = "", "+1 Maximum Mana per Level", statOrder = { 7990 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2563691316] = { "+1 Maximum Mana per Level" }, } }, - ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+1 Maximum Energy Shield per Level", statOrder = { 6433 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3864993324] = { "+1 Maximum Energy Shield per Level" }, } }, + ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4291 }, level = 1, group = "AlwaysIgniteWhileBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2636728487] = { "You always Ignite while Burning" }, } }, + ["AdditionalBlockWhileNotCursedUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while not Cursed", statOrder = { 4179 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3619054484] = { "+10% Chance to Block Attack Damage while not Cursed" }, } }, + ["LifePerLevelUnique__1"] = { affix = "", "+1 Maximum Life per Level", statOrder = { 7466 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1982144275] = { "+1 Maximum Life per Level" }, } }, + ["ManaPerLevelUnique__1"] = { affix = "", "+1 Maximum Mana per Level", statOrder = { 7986 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2563691316] = { "+1 Maximum Mana per Level" }, } }, + ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+1 Maximum Energy Shield per Level", statOrder = { 6429 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3864993324] = { "+1 Maximum Energy Shield per Level" }, } }, ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 495 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [825352061] = { "Trigger Level 20 Death Aura when Equipped" }, } }, - ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 7143 }, level = 1, group = "HeraldsAlwaysCost45", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [262773569] = { "Mana Reservation of Herald Skills is always 45%" }, } }, - ["StunAvoidancePerHeraldUnique__1"] = { affix = "", "35% chance to avoid being Stunned for each Herald Buff affecting you", statOrder = { 4617 }, level = 1, group = "StunAvoidancePerHerald", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493090598] = { "35% chance to avoid being Stunned for each Herald Buff affecting you" }, } }, - ["IncreasedDamageIfShockedRecentlyUnique__1"] = { affix = "", "(20-50)% increased Damage if you have Shocked an Enemy Recently", statOrder = { 5993 }, level = 1, group = "IncreasedDamageIfShockedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [908650225] = { "(20-50)% increased Damage if you have Shocked an Enemy Recently" }, } }, - ["ShockedEnemiesExplodeUnique__1_"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 9860, 9860.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock" }, } }, - ["UnaffectedByShockUnique__1"] = { affix = "", "Unaffected by Shock", statOrder = { 10371 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 10371 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["MinionAttackSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Attack Speed per 50 Dexterity", statOrder = { 9010 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [4047895119] = { "2% increased Minion Attack Speed per 50 Dexterity" }, } }, - ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 9069 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [4017879067] = { "2% increased Minion Movement Speed per 50 Dexterity" }, } }, - ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 9108 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1736403946] = { "Minions' Hits can only Kill Ignited Enemies" }, } }, + ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 7139 }, level = 1, group = "HeraldsAlwaysCost45", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [262773569] = { "Mana Reservation of Herald Skills is always 45%" }, } }, + ["StunAvoidancePerHeraldUnique__1"] = { affix = "", "35% chance to avoid being Stunned for each Herald Buff affecting you", statOrder = { 4614 }, level = 1, group = "StunAvoidancePerHerald", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493090598] = { "35% chance to avoid being Stunned for each Herald Buff affecting you" }, } }, + ["IncreasedDamageIfShockedRecentlyUnique__1"] = { affix = "", "(20-50)% increased Damage if you have Shocked an Enemy Recently", statOrder = { 5989 }, level = 1, group = "IncreasedDamageIfShockedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [908650225] = { "(20-50)% increased Damage if you have Shocked an Enemy Recently" }, } }, + ["ShockedEnemiesExplodeUnique__1_"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 9851, 9851.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock" }, } }, + ["UnaffectedByShockUnique__1"] = { affix = "", "Unaffected by Shock", statOrder = { 10362 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, + ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 10362 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, + ["MinionAttackSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Attack Speed per 50 Dexterity", statOrder = { 9001 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [4047895119] = { "2% increased Minion Attack Speed per 50 Dexterity" }, } }, + ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 9060 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [4017879067] = { "2% increased Minion Movement Speed per 50 Dexterity" }, } }, + ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 9099 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1736403946] = { "Minions' Hits can only Kill Ignited Enemies" }, } }, ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 142 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1344805487] = { "+2 to Level of Socketed Herald Gems" }, } }, ["LocalIncreaseSocketedHeraldLevelUnique__2"] = { affix = "", "+4 to Level of Socketed Herald Gems", statOrder = { 142 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1344805487] = { "+4 to Level of Socketed Herald Gems" }, } }, ["IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_"] = { affix = "", "15% increased Area of Effect while you have no Frenzy Charges", statOrder = { 1791 }, level = 1, group = "IncreasedAreaOfSkillsWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4180687797] = { "15% increased Area of Effect while you have no Frenzy Charges" }, } }, ["GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1"] = { affix = "", "+50% Global Critical Damage Bonus while you have no Frenzy Charges", statOrder = { 1790 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3062763405] = { "+50% Global Critical Damage Bonus while you have no Frenzy Charges" }, } }, - ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4149 }, level = 1, group = "AccuracyRatingWithMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3213407110] = { "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges" }, } }, - ["ReducedAttackSpeedOfMovementSkillsUnique__1"] = { affix = "", "Movement Attack Skills have 40% reduced Attack Speed", statOrder = { 9137 }, level = 1, group = "ReducedAttackSpeedOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1176492594] = { "Movement Attack Skills have 40% reduced Attack Speed" }, } }, - ["IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", statOrder = { 5679 }, level = 1, group = "IncreasedColdDamageIfUsedFireSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3612256591] = { "(20-30)% increased Cold Damage if you have used a Fire Skill Recently" }, } }, - ["IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", statOrder = { 6567 }, level = 1, group = "IncreasedFireDamageIfUsedColdSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4167600809] = { "(20-30)% increased Fire Damage if you have used a Cold Skill Recently" }, } }, - ["IncreasedDamagePerPowerChargeUnique__1"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6009 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["ChanceToGainMaximumPowerChargesUnique__1_"] = { affix = "", "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6816, 6816.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, + ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4146 }, level = 1, group = "AccuracyRatingWithMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3213407110] = { "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges" }, } }, + ["ReducedAttackSpeedOfMovementSkillsUnique__1"] = { affix = "", "Movement Attack Skills have 40% reduced Attack Speed", statOrder = { 9128 }, level = 1, group = "ReducedAttackSpeedOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1176492594] = { "Movement Attack Skills have 40% reduced Attack Speed" }, } }, + ["IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", statOrder = { 5675 }, level = 1, group = "IncreasedColdDamageIfUsedFireSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3612256591] = { "(20-30)% increased Cold Damage if you have used a Fire Skill Recently" }, } }, + ["IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", statOrder = { 6563 }, level = 1, group = "IncreasedFireDamageIfUsedColdSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4167600809] = { "(20-30)% increased Fire Damage if you have used a Cold Skill Recently" }, } }, + ["IncreasedDamagePerPowerChargeUnique__1"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6005 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, + ["ChanceToGainMaximumPowerChargesUnique__1_"] = { affix = "", "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6812, 6812.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, ["FireDamageCanPoisonUnique__1"] = { affix = "", "Fire Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2619 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1985969957] = { "Fire Damage from Hits also Contributes to Poison Magnitude" }, } }, ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Cold Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2618 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1917124426] = { "Cold Damage from Hits also Contributes to Poison Magnitude" }, } }, ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Lightning Damage from Hits also Contributes to Poison Magntiude", statOrder = { 2620 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1604984482] = { "Lightning Damage from Hits also Contributes to Poison Magntiude" }, } }, - ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6589 }, level = 1, group = "FireSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2424717327] = { "Fire Skills have 20% chance to Poison on Hit" }, } }, - ["ColdSkillsChanceToPoisonUnique__1"] = { affix = "", "Cold Skills have 20% chance to Poison on Hit", statOrder = { 5706 }, level = 1, group = "ColdSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2373079502] = { "Cold Skills have 20% chance to Poison on Hit" }, } }, - ["LightningSkillsChanceToPoisonUnique__1_"] = { affix = "", "Lightning Skills have 20% chance to Poison on Hit", statOrder = { 7568 }, level = 1, group = "LightningSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [949718413] = { "Lightning Skills have 20% chance to Poison on Hit" }, } }, + ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6585 }, level = 1, group = "FireSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2424717327] = { "Fire Skills have 20% chance to Poison on Hit" }, } }, + ["ColdSkillsChanceToPoisonUnique__1"] = { affix = "", "Cold Skills have 20% chance to Poison on Hit", statOrder = { 5702 }, level = 1, group = "ColdSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2373079502] = { "Cold Skills have 20% chance to Poison on Hit" }, } }, + ["LightningSkillsChanceToPoisonUnique__1_"] = { affix = "", "Lightning Skills have 20% chance to Poison on Hit", statOrder = { 7564 }, level = 1, group = "LightningSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [949718413] = { "Lightning Skills have 20% chance to Poison on Hit" }, } }, ["GainManaAsExtraEnergyShieldUnique__1"] = { affix = "", "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1431 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3027830452] = { "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield" }, } }, ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 493 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2498303876] = { "Grants Level 20 Doryani's Touch Skill" }, } }, ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 466 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Rhoa Skill" }, } }, ["GrantsSummonBeastUrsaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Ursa Skill", statOrder = { 466 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Ursa Skill" }, } }, ["GrantsSummonBeastSnakeUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Snake Skill", statOrder = { 466 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Snake Skill" }, } }, - ["ChaosResistDoubledUnique__1"] = { affix = "", "Chaos Resistance is doubled", statOrder = { 5590 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1573646535] = { "Chaos Resistance is doubled" }, } }, - ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10729 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 9086 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(10-15)% reduced Mana Cost of Minion Skills" }, } }, - ["MinionSkillManaCostUnique__2"] = { affix = "", "(20-30)% reduced Mana Cost of Minion Skills", statOrder = { 9086 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(20-30)% reduced Mana Cost of Minion Skills" }, } }, + ["ChaosResistDoubledUnique__1"] = { affix = "", "Chaos Resistance is doubled", statOrder = { 5586 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1573646535] = { "Chaos Resistance is doubled" }, } }, + ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10719 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, + ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 9077 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(10-15)% reduced Mana Cost of Minion Skills" }, } }, + ["MinionSkillManaCostUnique__2"] = { affix = "", "(20-30)% reduced Mana Cost of Minion Skills", statOrder = { 9077 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(20-30)% reduced Mana Cost of Minion Skills" }, } }, ["TriggeredAbyssalCryUnique__1"] = { affix = "", "Trigger Level 1 Intimidating Cry on Hit", statOrder = { 604 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1795756125] = { "Trigger Level 1 Intimidating Cry on Hit" }, } }, ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 542 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHashes = { [1527893390] = { "Trigger Level 15 Lightning Warp on Hit with this Weapon" }, } }, ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 3661 }, level = 1, group = "SummonSkeletonsNumberOfSkeletonsToSummon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1589090910] = { "Summon 4 additional Skeletons with Summon Skeletons" }, } }, - ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 10172 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3013430129] = { "+1 second to Summon Skeleton Cooldown" }, } }, - ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 6447 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [788946728] = { "Energy Shield Recharge starts when you are Stunned" }, } }, + ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 10163 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3013430129] = { "+1 second to Summon Skeleton Cooldown" }, } }, + ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 6443 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [788946728] = { "Energy Shield Recharge starts when you are Stunned" }, } }, ["TrapCooldownRecoveryUnique__1"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3150 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3417757416] = { "(10-15)% increased Cooldown Recovery Rate for throwing Traps" }, } }, - ["ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1"] = { affix = "", "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges", statOrder = { 6544 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3544527742] = { "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges" }, } }, + ["ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1"] = { affix = "", "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges", statOrder = { 6540 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3544527742] = { "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges" }, } }, ["PhysAddedAsChaosWithMaxPowerChargesUnique__1"] = { affix = "", "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", statOrder = { 3160 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [3655758456] = { "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges" }, } }, ["ScorchingRaySkillUnique__1"] = { affix = "", "Grants Level 25 Scorching Ray Skill", statOrder = { 486 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1540840] = { "Grants Level 25 Scorching Ray Skill" }, } }, ["BlightSkillUnique__1"] = { affix = "", "Grants Level 22 Blight Skill", statOrder = { 490 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1198418726] = { "Grants Level 22 Blight Skill" }, } }, @@ -4337,7 +4331,7 @@ return { ["HarbingerSkillOnEquipUnique2_4"] = { affix = "", "Grants Summon Greater Harbinger of Directions Skill", statOrder = { 469 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Directions Skill" }, } }, ["HarbingerSkillOnEquipUnique2_5"] = { affix = "", "Grants Summon Greater Harbinger of Storms Skill", statOrder = { 469 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Storms Skill" }, } }, ["HarbingerSkillOnEquipUnique2_6"] = { affix = "", "Grants Summon Greater Harbinger of Brutality Skill", statOrder = { 469 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Brutality Skill" }, } }, - ["ChannelledSkillDamageUnique__1"] = { affix = "", "Channelling Skills deal (50-70)% increased Damage", statOrder = { 5578 }, level = 1, group = "ChannelledSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2733285506] = { "Channelling Skills deal (50-70)% increased Damage" }, } }, + ["ChannelledSkillDamageUnique__1"] = { affix = "", "Channelling Skills deal (50-70)% increased Damage", statOrder = { 5574 }, level = 1, group = "ChannelledSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2733285506] = { "Channelling Skills deal (50-70)% increased Damage" }, } }, ["VolkuurLessPoisonDurationUnique__1"] = { affix = "", "50% less Poison Duration", statOrder = { 2897 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1237693206] = { "50% less Poison Duration" }, } }, ["ProjectileAttackCriticalStrikeChanceUnique__1"] = { affix = "", "Projectile Attack Skills have (40-60)% increased Critical Hit Chance", statOrder = { 3987 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4095169720] = { "Projectile Attack Skills have (40-60)% increased Critical Hit Chance" }, } }, ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 385 }, level = 1, group = "SupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 10 Chance to Poison" }, } }, @@ -4346,20 +4340,20 @@ return { ["SupportedByInnervateUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Innervate", statOrder = { 383 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1106668565] = { "Socketed Gems are Supported by Level 15 Innervate" }, } }, ["SupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Ice Bite", statOrder = { 377 }, level = 1, group = "SupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1384629003] = { "Socketed Gems are Supported by Level 18 Ice Bite" }, } }, ["GrantsVoidGazeUnique__1"] = { affix = "", "Trigger Level 10 Void Gaze when you use a Skill", statOrder = { 541 }, level = 1, group = "GrantsVoidGaze", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1869144397] = { "Trigger Level 10 Void Gaze when you use a Skill" }, } }, - ["AddedChaosDamageVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons", statOrder = { 8958, 8958.1 }, level = 1, group = "AddedChaosDamageVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3829706447] = { "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons" }, } }, - ["PoisonDurationPerPowerChargeUnique__1"] = { affix = "", "3% increased Poison Duration per Power Charge", statOrder = { 9494 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3491499175] = { "3% increased Poison Duration per Power Charge" }, } }, - ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6798 }, level = 1, group = "GainFrenzyChargeOnKillVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [496822696] = { "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons" }, } }, - ["GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1"] = { affix = "", "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", statOrder = { 6846 }, level = 1, group = "GainPowerChargeOnKillVsEnemiesWithLessThan5Poisons", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [352612932] = { "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons" }, } }, - ["PoisonDurationWithOver150IntelligenceUnique__1"] = { affix = "", "(15-25)% increased Poison Duration if you have at least 150 Intelligence", statOrder = { 9495 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2771181375] = { "(15-25)% increased Poison Duration if you have at least 150 Intelligence" }, } }, - ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 10591 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 10591 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["LocalMaimOnHitChanceUnique__1"] = { affix = "", "(15-20)% chance to Maim on Hit", statOrder = { 7798 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-20)% chance to Maim on Hit" }, } }, - ["BlightSecondarySkillEffectDurationUnique__1"] = { affix = "", "Blight has (20-30)% increased Hinder Duration", statOrder = { 4880 }, level = 1, group = "BlightSecondarySkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4170725899] = { "Blight has (20-30)% increased Hinder Duration" }, } }, - ["GlobalCooldownRecoveryUnique__1"] = { affix = "", "(15-20)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-20)% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(15-30)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-30)% increased Cooldown Recovery Rate" }, } }, - ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 6099 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (15-20)% faster" }, } }, - ["DebuffTimePassedUnique__2"] = { affix = "", "Debuffs on you expire (80-100)% faster", statOrder = { 6099 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (80-100)% faster" }, } }, - ["DebuffTimePassedUnique__3"] = { affix = "", "Debuffs on you expire 100% faster", statOrder = { 6099 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire 100% faster" }, } }, + ["AddedChaosDamageVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons", statOrder = { 8949, 8949.1 }, level = 1, group = "AddedChaosDamageVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3829706447] = { "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons" }, } }, + ["PoisonDurationPerPowerChargeUnique__1"] = { affix = "", "3% increased Poison Duration per Power Charge", statOrder = { 9485 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3491499175] = { "3% increased Poison Duration per Power Charge" }, } }, + ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6794 }, level = 1, group = "GainFrenzyChargeOnKillVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [496822696] = { "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons" }, } }, + ["GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1"] = { affix = "", "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", statOrder = { 6842 }, level = 1, group = "GainPowerChargeOnKillVsEnemiesWithLessThan5Poisons", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [352612932] = { "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons" }, } }, + ["PoisonDurationWithOver150IntelligenceUnique__1"] = { affix = "", "(15-25)% increased Poison Duration if you have at least 150 Intelligence", statOrder = { 9486 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2771181375] = { "(15-25)% increased Poison Duration if you have at least 150 Intelligence" }, } }, + ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 10581 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, + ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 10581 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, + ["LocalMaimOnHitChanceUnique__1"] = { affix = "", "(15-20)% chance to Maim on Hit", statOrder = { 7794 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-20)% chance to Maim on Hit" }, } }, + ["BlightSecondarySkillEffectDurationUnique__1"] = { affix = "", "Blight has (20-30)% increased Hinder Duration", statOrder = { 4876 }, level = 1, group = "BlightSecondarySkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4170725899] = { "Blight has (20-30)% increased Hinder Duration" }, } }, + ["GlobalCooldownRecoveryUnique__1"] = { affix = "", "(15-20)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-20)% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(15-30)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-30)% increased Cooldown Recovery Rate" }, } }, + ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 6095 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (15-20)% faster" }, } }, + ["DebuffTimePassedUnique__2"] = { affix = "", "Debuffs on you expire (80-100)% faster", statOrder = { 6095 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (80-100)% faster" }, } }, + ["DebuffTimePassedUnique__3"] = { affix = "", "Debuffs on you expire 100% faster", statOrder = { 6095 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire 100% faster" }, } }, ["LifeAndEnergyShieldRecoveryRateUnique_1"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", "(10-15)% increased Life Recovery rate", statOrder = { 1440, 1445 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [988575597] = { "(10-15)% increased Energy Shield Recovery rate" }, [3240073117] = { "(10-15)% increased Life Recovery rate" }, } }, ["LocalGrantsStormCascadeOnAttackUnique__1"] = { affix = "", "Trigger Level 20 Storm Cascade when you Attack", statOrder = { 543 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [818329660] = { "Trigger Level 20 Storm Cascade when you Attack" }, } }, ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion", statOrder = { 3988, 3988.1 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4058504226] = { "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion" }, } }, @@ -4369,10 +4363,10 @@ return { ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 3992 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2152491486] = { "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion" }, } }, ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 3993 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3597737983] = { "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion" }, } }, ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 540 }, level = 1, group = "GrantsDarktongueKiss", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3670477918] = { "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell" }, } }, - ["ShockEffectUnique__1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Magnitude of Shock you inflict" }, } }, - ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7536 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(1-50)% increased Effect of Lightning Ailments" }, } }, - ["ShockEffectUnique__3"] = { affix = "", "30% increased Effect of Lightning Ailments", statOrder = { 7536 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "30% increased Effect of Lightning Ailments" }, } }, - ["LightningAilmentEffectUnique__1"] = { affix = "", "100% increased Effect of Lightning Ailments", statOrder = { 7536 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "100% increased Effect of Lightning Ailments" }, } }, + ["ShockEffectUnique__1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9836 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Magnitude of Shock you inflict" }, } }, + ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7532 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(1-50)% increased Effect of Lightning Ailments" }, } }, + ["ShockEffectUnique__3"] = { affix = "", "30% increased Effect of Lightning Ailments", statOrder = { 7532 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "30% increased Effect of Lightning Ailments" }, } }, + ["LightningAilmentEffectUnique__1"] = { affix = "", "100% increased Effect of Lightning Ailments", statOrder = { 7532 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "100% increased Effect of Lightning Ailments" }, } }, ["LocalCanSocketIgnoringColourUnique__1"] = { affix = "", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 77 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [899329924] = { "Gems can be Socketed in this Item ignoring Socket Colour" }, } }, ["LocalNoAttributeRequirementsUnique__1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 823 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 823 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, @@ -4381,22 +4375,22 @@ return { ["SocketedGemsInRedSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Red Sockets have +2 to Level", statOrder = { 126 }, level = 1, group = "SocketedGemsInRedSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2886998024] = { "Gems Socketed in Red Sockets have +2 to Level" }, } }, ["SocketedGemsInGreenSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Green Sockets have +30% to Quality", statOrder = { 127 }, level = 1, group = "SocketedGemsInGreenSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3799930101] = { "Gems Socketed in Green Sockets have +30% to Quality" }, } }, ["SocketedGemsInBlueSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Blue Sockets gain 100% increased Experience", statOrder = { 128 }, level = 1, group = "SocketedGemsInBlueSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2236460050] = { "Gems Socketed in Blue Sockets gain 100% increased Experience" }, } }, - ["GainThaumaturgyBuffRotationUnique__1_"] = { affix = "", "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", statOrder = { 10248 }, level = 1, group = "GainThaumaturgyBuffRotation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2918150296] = { "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence" }, } }, - ["FireBeamLengthUnique__1"] = { affix = "", "10% increased Scorching Ray beam length", statOrder = { 6560 }, level = 1, group = "FireBeamLength", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [702909553] = { "10% increased Scorching Ray beam length" }, } }, + ["GainThaumaturgyBuffRotationUnique__1_"] = { affix = "", "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", statOrder = { 10239 }, level = 1, group = "GainThaumaturgyBuffRotation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2918150296] = { "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence" }, } }, + ["FireBeamLengthUnique__1"] = { affix = "", "10% increased Scorching Ray beam length", statOrder = { 6556 }, level = 1, group = "FireBeamLength", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [702909553] = { "10% increased Scorching Ray beam length" }, } }, ["GrantsPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 459 }, level = 1, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 25 Purity of Fire Skill" }, } }, ["GrantsPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 465 }, level = 1, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 25 Purity of Ice Skill" }, } }, ["GrantsPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 467 }, level = 1, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 25 Purity of Lightning Skill" }, } }, ["GrantsVaalPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Fire Skill", statOrder = { 534 }, level = 1, group = "VaalPurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2700934265] = { "Grants Level 25 Vaal Impurity of Fire Skill" }, } }, ["GrantsVaalPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Ice Skill", statOrder = { 535 }, level = 1, group = "VaalPurityOfIceSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1300125165] = { "Grants Level 25 Vaal Impurity of Ice Skill" }, } }, ["GrantsVaalPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Lightning Skill", statOrder = { 536 }, level = 1, group = "VaalPurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2959369472] = { "Grants Level 25 Vaal Impurity of Lightning Skill" }, } }, - ["SpectreLifeUnique__1___"] = { affix = "", "+1000 to Spectre maximum Life", statOrder = { 9980 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3111456397] = { "+1000 to Spectre maximum Life" }, } }, + ["SpectreLifeUnique__1___"] = { affix = "", "+1000 to Spectre maximum Life", statOrder = { 9971 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3111456397] = { "+1000 to Spectre maximum Life" }, } }, ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Spectres have (50-100)% increased maximum Life", statOrder = { 1529 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3035514623] = { "Spectres have (50-100)% increased maximum Life" }, } }, - ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7665 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } }, + ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7661 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } }, ["IncreasedCastSpeedPerPowerChargeUnique__1"] = { affix = "", "2% increased Cast Speed per Power Charge", statOrder = { 1349 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [1604393896] = { "2% increased Cast Speed per Power Charge" }, } }, - ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 8007 }, level = 1, group = "ManaRegeneratedPerSecondPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4084763463] = { "Regenerate 2 Mana per Second per Power Charge" }, } }, - ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { affix = "", "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", statOrder = { 6853 }, level = 1, group = "GainARandomChargePerSecondWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1438403666] = { "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary" }, } }, - ["LoseAllChargesOnMoveUnique__1"] = { affix = "", "Lose all Frenzy, Endurance, and Power Charges when you Move", statOrder = { 7930 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [31415336] = { "Lose all Frenzy, Endurance, and Power Charges when you Move" }, } }, - ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 7902, 7903 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [607548408] = { "50% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, } }, + ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 8003 }, level = 1, group = "ManaRegeneratedPerSecondPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4084763463] = { "Regenerate 2 Mana per Second per Power Charge" }, } }, + ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { affix = "", "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", statOrder = { 6849 }, level = 1, group = "GainARandomChargePerSecondWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1438403666] = { "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary" }, } }, + ["LoseAllChargesOnMoveUnique__1"] = { affix = "", "Lose all Frenzy, Endurance, and Power Charges when you Move", statOrder = { 7926 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [31415336] = { "Lose all Frenzy, Endurance, and Power Charges when you Move" }, } }, + ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 7898, 7899 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [607548408] = { "50% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, } }, ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 803, 804 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "flask", "attack", "caster", "speed" }, tradeHashes = { [1878928358] = { "50% increased Attack, Cast and Movement Speed during Effect" }, [3625168971] = { "Reduce Attack, Cast and Movement Speed 10% every second during Effect" }, } }, ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 557 }, level = 1, group = "TriggeredFireAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1128763150] = { "Triggers Level 20 Fire Aegis when Equipped" }, } }, ["TriggeredColdAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Cold Aegis when Equipped", statOrder = { 555 }, level = 1, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3918947537] = { "Triggers Level 20 Cold Aegis when Equipped" }, } }, @@ -4406,74 +4400,74 @@ return { ["SupportedByBlasphemyUnique"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 382 }, level = 1, group = "SupportedByBlasphemyUnique", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 20 Blasphemy" }, } }, ["GrantCursePillarSkillUnique"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills", statOrder = { 503, 503.1, 503.2, 503.3 }, level = 1, group = "GrantCursePillarSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1757548756] = { "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills" }, } }, ["GrantCursePillarSkillUnique__"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", statOrder = { 504, 504.1, 504.2 }, level = 1, group = "GrantCursePillarSkillUnique__", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1517357911] = { "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses" }, } }, - ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you", statOrder = { 9503 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, } }, - ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 4820 }, level = 1, group = "ReflectBleedingToSelf", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2658399404] = { "Bleeding you inflict is Reflected to you" }, } }, - ["ChaosResistancePerPoisonOnSelfUnique__1"] = { affix = "", "+1% to Chaos Resistance per Poison on you", statOrder = { 5591 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [175362265] = { "+1% to Chaos Resistance per Poison on you" }, } }, - ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 6008 }, level = 1, group = "DamagePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1034580601] = { "15% increased Damage for each Poison on you up to a maximum of 75%" }, } }, - ["MovementSpeedPerPoisonOnSelfUnique__1_"] = { affix = "", "10% increased Movement Speed for each Poison on you up to a maximum of 50%", statOrder = { 9170 }, level = 1, group = "MovementSpeedPerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1360723495] = { "10% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, - ["TravelSkillsReflectPoisonUnique__1"] = { affix = "", "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you", statOrder = { 10315, 10315.1 }, level = 57, group = "TravelSkillsReflectPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [130616495] = { "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you" }, } }, - ["IncreasedArmourWhileBleedingUnique__1"] = { affix = "", "(30-40)% increased Armour while Bleeding", statOrder = { 4430 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2466912132] = { "(30-40)% increased Armour while Bleeding" }, } }, - ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 5271 }, level = 1, group = "CannotBeIgnitedWithStrHigherThanDex", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [676883595] = { "Cannot be Ignited if Strength is higher than Dexterity" }, } }, - ["CannotBeFrozenWithDexHigherThanIntUnique__1"] = { affix = "", "Cannot be Frozen if Dexterity is higher than Intelligence", statOrder = { 5266 }, level = 1, group = "CannotBeFrozenWithDexHigherThanInt", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3881126302] = { "Cannot be Frozen if Dexterity is higher than Intelligence" }, } }, - ["CannotBeShockedWithIntHigherThanStrUnique__1"] = { affix = "", "Cannot be Shocked if Intelligence is higher than Strength", statOrder = { 5284 }, level = 1, group = "CannotBeShockedWithIntHigherThanStr", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3024242403] = { "Cannot be Shocked if Intelligence is higher than Strength" }, } }, - ["IncreasedDamagePerLowestAttributeUnique__1"] = { affix = "", "1% increased Damage per 5 of your lowest Attribute", statOrder = { 6003 }, level = 85, group = "IncreasedDamagePerLowestAttribute", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [35476451] = { "1% increased Damage per 5 of your lowest Attribute" }, } }, + ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you", statOrder = { 9494 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, } }, + ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 4816 }, level = 1, group = "ReflectBleedingToSelf", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2658399404] = { "Bleeding you inflict is Reflected to you" }, } }, + ["ChaosResistancePerPoisonOnSelfUnique__1"] = { affix = "", "+1% to Chaos Resistance per Poison on you", statOrder = { 5587 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [175362265] = { "+1% to Chaos Resistance per Poison on you" }, } }, + ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 6004 }, level = 1, group = "DamagePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1034580601] = { "15% increased Damage for each Poison on you up to a maximum of 75%" }, } }, + ["MovementSpeedPerPoisonOnSelfUnique__1_"] = { affix = "", "10% increased Movement Speed for each Poison on you up to a maximum of 50%", statOrder = { 9161 }, level = 1, group = "MovementSpeedPerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1360723495] = { "10% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, + ["TravelSkillsReflectPoisonUnique__1"] = { affix = "", "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you", statOrder = { 10306, 10306.1 }, level = 57, group = "TravelSkillsReflectPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [130616495] = { "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you" }, } }, + ["IncreasedArmourWhileBleedingUnique__1"] = { affix = "", "(30-40)% increased Armour while Bleeding", statOrder = { 4427 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2466912132] = { "(30-40)% increased Armour while Bleeding" }, } }, + ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 5267 }, level = 1, group = "CannotBeIgnitedWithStrHigherThanDex", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [676883595] = { "Cannot be Ignited if Strength is higher than Dexterity" }, } }, + ["CannotBeFrozenWithDexHigherThanIntUnique__1"] = { affix = "", "Cannot be Frozen if Dexterity is higher than Intelligence", statOrder = { 5262 }, level = 1, group = "CannotBeFrozenWithDexHigherThanInt", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3881126302] = { "Cannot be Frozen if Dexterity is higher than Intelligence" }, } }, + ["CannotBeShockedWithIntHigherThanStrUnique__1"] = { affix = "", "Cannot be Shocked if Intelligence is higher than Strength", statOrder = { 5280 }, level = 1, group = "CannotBeShockedWithIntHigherThanStr", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3024242403] = { "Cannot be Shocked if Intelligence is higher than Strength" }, } }, + ["IncreasedDamagePerLowestAttributeUnique__1"] = { affix = "", "1% increased Damage per 5 of your lowest Attribute", statOrder = { 5999 }, level = 85, group = "IncreasedDamagePerLowestAttribute", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [35476451] = { "1% increased Damage per 5 of your lowest Attribute" }, } }, ["IncreasedAilmentDurationUnique__1"] = { affix = "", "40% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "40% increased Duration of Ailments on Enemies" }, } }, ["IncreasedAilmentDurationUnique__2"] = { affix = "", "30% reduced Duration of Ailments on Enemies", statOrder = { 1616 }, level = 88, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "30% reduced Duration of Ailments on Enemies" }, } }, ["IncreasedAilmentDurationUnique__3_"] = { affix = "", "(10-20)% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-20)% increased Duration of Ailments on Enemies" }, } }, ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 594 }, level = 1, group = "CreateSmokeCloudWhenTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [208447205] = { "Trigger Level 20 Fog of War when your Trap is triggered" }, } }, - ["FlammabilityReservationCostUnique__1"] = { affix = "", "Flammability has no Reservation if Cast as an Aura", statOrder = { 6635 }, level = 1, group = "FlammabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1195140808] = { "Flammability has no Reservation if Cast as an Aura" }, } }, - ["FrostbiteReservationCostUnique__1"] = { affix = "", "Frostbite has no Reservation if Cast as an Aura", statOrder = { 6688 }, level = 1, group = "FrostbiteNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3062707366] = { "Frostbite has no Reservation if Cast as an Aura" }, } }, - ["ConductivityReservationCostUnique__1"] = { affix = "", "Conductivity has no Reservation if Cast as an Aura", statOrder = { 5743 }, level = 1, group = "ConductivityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1233358566] = { "Conductivity has no Reservation if Cast as an Aura" }, } }, - ["VulnerabilityReservationCostUnique__1_"] = { affix = "", "Vulnerability has no Reservation if Cast as an Aura", statOrder = { 10495 }, level = 1, group = "VulnerabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [531868030] = { "Vulnerability has no Reservation if Cast as an Aura" }, } }, - ["DespairReservationCostUnique__1"] = { affix = "", "Despair has no Reservation if Cast as an Aura", statOrder = { 6133 }, level = 1, group = "DespairNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [450601566] = { "Despair has no Reservation if Cast as an Aura" }, } }, - ["TemporalChainsReservationCostUnique__1"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10245 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, - ["TemporalChainsReservationCostUnique__2"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10245 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, - ["PunishmentReservationCostUnique__1"] = { affix = "", "Punishment has no Reservation if Cast as an Aura", statOrder = { 9576 }, level = 1, group = "PunishmentNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2097195894] = { "Punishment has no Reservation if Cast as an Aura" }, } }, - ["EnfeebleReservationCostUnique__1"] = { affix = "", "Enfeeble has no Reservation if Cast as an Aura", statOrder = { 6463 }, level = 1, group = "EnfeebleNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [56919069] = { "Enfeeble has no Reservation if Cast as an Aura" }, } }, - ["ElementalWeaknessReservationCostUnique__1"] = { affix = "", "Elemental Weakness has no Reservation if Cast as an Aura", statOrder = { 6313 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3416664215] = { "Elemental Weakness has no Reservation if Cast as an Aura" }, } }, - ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5687 }, level = 1, group = "IncreasedColdDamageWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3520048646] = { "(100-200)% increased Cold Damage while your Off Hand is empty" }, } }, - ["DisplayIronReflexesFor8SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Iron Reflexes for 8 seconds", statOrder = { 10741 }, level = 1, group = "DisplayIronReflexesFor8Seconds", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2200114771] = { "Every 16 seconds you gain Iron Reflexes for 8 seconds" }, } }, - ["ArborixMoreDamageAtCloseRangeUnique__1"] = { affix = "", "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", statOrder = { 10746 }, level = 1, group = "ArborixMoreDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [304032021] = { "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes" }, } }, - ["FarShotWhileYouDoNotHaveIronReflexesUnique__1_"] = { affix = "", "You have Far Shot while you do not have Iron Reflexes", statOrder = { 10750 }, level = 1, group = "FarShotWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3284029342] = { "You have Far Shot while you do not have Iron Reflexes" }, } }, - ["AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1"] = { affix = "", "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", statOrder = { 10749 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [3476327198] = { "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes" }, } }, + ["FlammabilityReservationCostUnique__1"] = { affix = "", "Flammability has no Reservation if Cast as an Aura", statOrder = { 6631 }, level = 1, group = "FlammabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1195140808] = { "Flammability has no Reservation if Cast as an Aura" }, } }, + ["FrostbiteReservationCostUnique__1"] = { affix = "", "Frostbite has no Reservation if Cast as an Aura", statOrder = { 6684 }, level = 1, group = "FrostbiteNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3062707366] = { "Frostbite has no Reservation if Cast as an Aura" }, } }, + ["ConductivityReservationCostUnique__1"] = { affix = "", "Conductivity has no Reservation if Cast as an Aura", statOrder = { 5739 }, level = 1, group = "ConductivityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1233358566] = { "Conductivity has no Reservation if Cast as an Aura" }, } }, + ["VulnerabilityReservationCostUnique__1_"] = { affix = "", "Vulnerability has no Reservation if Cast as an Aura", statOrder = { 10485 }, level = 1, group = "VulnerabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [531868030] = { "Vulnerability has no Reservation if Cast as an Aura" }, } }, + ["DespairReservationCostUnique__1"] = { affix = "", "Despair has no Reservation if Cast as an Aura", statOrder = { 6129 }, level = 1, group = "DespairNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [450601566] = { "Despair has no Reservation if Cast as an Aura" }, } }, + ["TemporalChainsReservationCostUnique__1"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10236 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, + ["TemporalChainsReservationCostUnique__2"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10236 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, + ["PunishmentReservationCostUnique__1"] = { affix = "", "Punishment has no Reservation if Cast as an Aura", statOrder = { 9567 }, level = 1, group = "PunishmentNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2097195894] = { "Punishment has no Reservation if Cast as an Aura" }, } }, + ["EnfeebleReservationCostUnique__1"] = { affix = "", "Enfeeble has no Reservation if Cast as an Aura", statOrder = { 6459 }, level = 1, group = "EnfeebleNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [56919069] = { "Enfeeble has no Reservation if Cast as an Aura" }, } }, + ["ElementalWeaknessReservationCostUnique__1"] = { affix = "", "Elemental Weakness has no Reservation if Cast as an Aura", statOrder = { 6309 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3416664215] = { "Elemental Weakness has no Reservation if Cast as an Aura" }, } }, + ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5683 }, level = 1, group = "IncreasedColdDamageWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3520048646] = { "(100-200)% increased Cold Damage while your Off Hand is empty" }, } }, + ["DisplayIronReflexesFor8SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Iron Reflexes for 8 seconds", statOrder = { 10731 }, level = 1, group = "DisplayIronReflexesFor8Seconds", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2200114771] = { "Every 16 seconds you gain Iron Reflexes for 8 seconds" }, } }, + ["ArborixMoreDamageAtCloseRangeUnique__1"] = { affix = "", "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", statOrder = { 10736 }, level = 1, group = "ArborixMoreDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [304032021] = { "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes" }, } }, + ["FarShotWhileYouDoNotHaveIronReflexesUnique__1_"] = { affix = "", "You have Far Shot while you do not have Iron Reflexes", statOrder = { 10740 }, level = 1, group = "FarShotWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3284029342] = { "You have Far Shot while you do not have Iron Reflexes" }, } }, + ["AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1"] = { affix = "", "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", statOrder = { 10739 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [3476327198] = { "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes" }, } }, ["ElementalDamageCanShockUnique__1__"] = { affix = "", "All Elemental Damage from Hits Contributes to Shock Chance", statOrder = { 2630 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2933625540] = { "All Elemental Damage from Hits Contributes to Shock Chance" }, } }, - ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6260, 6260.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, + ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6256, 6256.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 573 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [651875072] = { "Triggers Level 20 Death Walk when Equipped" }, } }, - ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7628 }, level = 1, group = "IntimidateOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [642457541] = { "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks" }, } }, - ["FortifyOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", statOrder = { 7706 }, level = 1, group = "FortifyOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [186482813] = { "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify" }, } }, - ["RageOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second", statOrder = { 7704 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3892691596] = { "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second" }, } }, - ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7629 }, level = 1, group = "MaimOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2750004091] = { "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks" }, } }, - ["BlindOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", statOrder = { 7636 }, level = 1, group = "BlindOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2044840211] = { "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks" }, } }, - ["OnslaughtOnKillWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", statOrder = { 7625 }, level = 1, group = "OnslaughtOnKillWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2863332749] = { "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill" }, } }, - ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 6091 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [4031851097] = { "Deal no Non-Elemental Damage" }, } }, + ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7624 }, level = 1, group = "IntimidateOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [642457541] = { "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks" }, } }, + ["FortifyOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", statOrder = { 7702 }, level = 1, group = "FortifyOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [186482813] = { "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify" }, } }, + ["RageOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second", statOrder = { 7700 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3892691596] = { "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second" }, } }, + ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7625 }, level = 1, group = "MaimOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2750004091] = { "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks" }, } }, + ["BlindOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", statOrder = { 7632 }, level = 1, group = "BlindOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2044840211] = { "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks" }, } }, + ["OnslaughtOnKillWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", statOrder = { 7621 }, level = 1, group = "OnslaughtOnKillWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2863332749] = { "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill" }, } }, + ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 6087 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [4031851097] = { "Deal no Non-Elemental Damage" }, } }, ["DisplaySupportedByElementalPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Elemental Penetration", statOrder = { 208 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 25 Elemental Penetration" }, } }, ["DisplaySupportedByElementalPenetrationUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 1 Elemental Penetration", statOrder = { 208 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 1 Elemental Penetration" }, } }, ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 4044 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [570644802] = { "Gain a Spirit Charge on Kill" }, } }, ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of maximum Life when you lose a Spirit Charge", statOrder = { 4046 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [305634887] = { "Recover (2-3)% of maximum Life when you lose a Spirit Charge" }, } }, ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge", statOrder = { 4047 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1996775727] = { "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge" }, } }, - ["PhysAddedAsEachElementPerSpiritChargeUnique__1"] = { affix = "", "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", statOrder = { 9298 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [3137640399] = { "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge" }, } }, + ["PhysAddedAsEachElementPerSpiritChargeUnique__1"] = { affix = "", "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", statOrder = { 9289 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [3137640399] = { "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge" }, } }, ["LocalDisplayGrantLevelXSpiritBurstUnique__1"] = { affix = "", "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge", statOrder = { 595 }, level = 1, group = "LocalDisplayGrantLevelXSpiritBurst", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1992516007] = { "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge" }, } }, ["GainSpiritChargeEverySecondUnique__1"] = { affix = "", "Gain a Spirit Charge every second", statOrder = { 4043 }, level = 1, group = "GainSpiritChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [328131617] = { "Gain a Spirit Charge every second" }, } }, ["LoseSpiritChargesOnSavageHitUnique__1_"] = { affix = "", "You lose all Spirit Charges when taking a Savage Hit", statOrder = { 4045 }, level = 1, group = "LoseSpiritChargesOnSavageHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2663792764] = { "You lose all Spirit Charges when taking a Savage Hit" }, } }, ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__1"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 4041 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4053097676] = { "+1 to Maximum Spirit Charges per Abyss Jewel affecting you" }, } }, ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__2"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 4041 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4053097676] = { "+1 to Maximum Spirit Charges per Abyss Jewel affecting you" }, } }, - ["GainDebilitatingPresenceUnique__1"] = { affix = "", "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", statOrder = { 10637 }, level = 1, group = "GainDebilitatingPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3442107889] = { "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy" }, } }, + ["GainDebilitatingPresenceUnique__1"] = { affix = "", "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", statOrder = { 10627 }, level = 1, group = "GainDebilitatingPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3442107889] = { "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy" }, } }, ["LocalDisplayGrantLevelXShadeFormUnique__1"] = { affix = "", "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", statOrder = { 578 }, level = 1, group = "LocalDisplayGrantLevelXShadeForm", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3308936917] = { "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill" }, } }, ["TriggerShadeFormWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Shade Form when Hit", statOrder = { 579 }, level = 1, group = "TriggerShadeFormWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2603798371] = { "Trigger Level 20 Shade Form when Hit" }, } }, - ["AddedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "Adds 5 to 8 Physical Damage per Endurance Charge", statOrder = { 8977 }, level = 1, group = "AddedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [173438493] = { "Adds 5 to 8 Physical Damage per Endurance Charge" }, } }, - ["ChaosResistancePerEnduranceChargeUnique__1_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5589 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, - ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 6284 }, level = 1, group = "ReducedElementalDamageTakenHitsPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1686913105] = { "1% reduced Elemental Damage taken from Hits per Endurance Charge" }, } }, - ["ArmourPerEnduranceChargeUnique__1"] = { affix = "", "+500 to Armour per Endurance Charge", statOrder = { 9461 }, level = 1, group = "ArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [513221334] = { "+500 to Armour per Endurance Charge" }, } }, + ["AddedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "Adds 5 to 8 Physical Damage per Endurance Charge", statOrder = { 8968 }, level = 1, group = "AddedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [173438493] = { "Adds 5 to 8 Physical Damage per Endurance Charge" }, } }, + ["ChaosResistancePerEnduranceChargeUnique__1_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5585 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, + ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 6280 }, level = 1, group = "ReducedElementalDamageTakenHitsPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1686913105] = { "1% reduced Elemental Damage taken from Hits per Endurance Charge" }, } }, + ["ArmourPerEnduranceChargeUnique__1"] = { affix = "", "+500 to Armour per Endurance Charge", statOrder = { 9452 }, level = 1, group = "ArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [513221334] = { "+500 to Armour per Endurance Charge" }, } }, ["AddedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "12 to 14 Added Cold Damage per Frenzy Charge", statOrder = { 3918 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "12 to 14 Added Cold Damage per Frenzy Charge" }, } }, ["AvoidElementalDamagePerFrenzyChargeUnique__1"] = { affix = "", "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge", statOrder = { 3076 }, level = 1, group = "AvoidElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1649883131] = { "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge" }, } }, ["MovementVelocityPerFrenzyChargeUnique__1"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1557 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "4% increased Movement Speed per Frenzy Charge" }, } }, ["MovementVelocityPerFrenzyChargeUnique__2"] = { affix = "", "6% increased Movement Speed per Frenzy Charge", statOrder = { 1557 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "6% increased Movement Speed per Frenzy Charge" }, } }, - ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 8974 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [4085417083] = { "Adds 3 to 9 Lightning Damage to Spells per Power Charge" }, } }, - ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% Critical Hit Chance per Power Charge", statOrder = { 4187 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1818900806] = { "+0.3% Critical Hit Chance per Power Charge" }, } }, + ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 8965 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [4085417083] = { "Adds 3 to 9 Lightning Damage to Spells per Power Charge" }, } }, + ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% Critical Hit Chance per Power Charge", statOrder = { 4184 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1818900806] = { "+0.3% Critical Hit Chance per Power Charge" }, } }, ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "(6-10)% increased Critical Damage Bonus per Power Charge", statOrder = { 2990 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "(6-10)% increased Critical Damage Bonus per Power Charge" }, } }, - ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 9634 }, level = 1, group = "RaiseSpectreManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [262301496] = { "(40-50)% reduced Mana Cost of Raise Spectre" }, } }, + ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 9625 }, level = 1, group = "RaiseSpectreManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [262301496] = { "(40-50)% reduced Mana Cost of Raise Spectre" }, } }, ["VoidShotOnSkillUseUnique__1_"] = { affix = "", "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", statOrder = { 598 }, level = 1, group = "VoidShotOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3262369040] = { "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill" }, } }, - ["MaximumVoidArrowsUnique__1"] = { affix = "", "5 Maximum Void Charges", "Gain a Void Charge every 0.5 seconds", statOrder = { 4016, 6935 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34273389] = { "Gain a Void Charge every 0.5 seconds" }, [1209237645] = { "5 Maximum Void Charges" }, } }, + ["MaximumVoidArrowsUnique__1"] = { affix = "", "5 Maximum Void Charges", "Gain a Void Charge every 0.5 seconds", statOrder = { 4016, 6931 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34273389] = { "Gain a Void Charge every 0.5 seconds" }, [1209237645] = { "5 Maximum Void Charges" }, } }, ["CannotBeStunnedByAttacksElderItemUnique__1"] = { affix = "", "Cannot be Stunned by Attacks if your other Ring is an Elder Item", statOrder = { 3997 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2926399803] = { "Cannot be Stunned by Attacks if your other Ring is an Elder Item" }, } }, ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your other Ring is a Shaper Item", statOrder = { 3994 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1555962658] = { "(60-80)% increased Attack Damage if your other Ring is a Shaper Item" }, } }, ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your other Ring is an Elder Item", statOrder = { 3995 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2921373173] = { "(60-80)% increased Spell Damage if your other Ring is an Elder Item" }, } }, @@ -4482,7 +4476,7 @@ return { ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Recovery from Mana Flasks also applies to Life", statOrder = { 4004 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2262007777] = { "Non-instant Recovery from Mana Flasks also applies to Life" }, } }, ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 4006 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently" }, } }, ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 4005 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, - ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10684 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10674 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, ["SpellAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (6-8) to (10-12) Physical Damage to Spells", statOrder = { 1304 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "physical_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (6-8) to (10-12) Physical Damage to Spells" }, } }, ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 602 }, level = 100, group = "TentacleSmashOnKill", weightKey = { }, weightVal = { }, modTags = { "green_herring", "skill" }, tradeHashes = { [1350938937] = { "20% chance to Trigger Level 20 Tentacle Whip on Kill" }, } }, ["GlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 601 }, level = 1, group = "GlimpseOfEternityWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3141831683] = { "Trigger Level 20 Glimpse of Eternity when Hit" }, } }, @@ -4494,96 +4488,96 @@ return { ["GrantsIntimidatingCry1"] = { affix = "", "Grants Level 20 Intimidating Cry Skill", statOrder = { 524 }, level = 1, group = "GrantsIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [989878105] = { "Grants Level 20 Intimidating Cry Skill" }, } }, ["GrantsCrabAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 513 }, level = 1, group = "GrantsCrabAspect", weightKey = { }, weightVal = { }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, ["ItemQuantityOnLowLifeUnique__1"] = { affix = "", "(10-16)% increased Quantity of Items found when on Low Life", statOrder = { 1462 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [760855772] = { "(10-16)% increased Quantity of Items found when on Low Life" }, } }, - ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5998 }, level = 72, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, - ["DamagePer15DexterityUnique__2"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5998 }, level = 1, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, - ["LifeRegeneratedPerMinuteWhileIgnitedUnique__1"] = { affix = "", "Regenerate (75-125) Life per second while Ignited", statOrder = { 7498 }, level = 74, group = "LifeRegeneratedPerMinuteWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [952897668] = { "Regenerate (75-125) Life per second while Ignited" }, } }, - ["IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1"] = { affix = "", "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", statOrder = { 6265 }, level = 77, group = "IncreasedElementalDamageIfKilledCursedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [850820277] = { "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently" }, } }, - ["DoubleDamagePer500StrengthUnique__1"] = { affix = "", "6% chance to deal Double Damage per 500 Strength", statOrder = { 5505 }, level = 63, group = "DoubleDamagePer500Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4104492115] = { "6% chance to deal Double Damage per 500 Strength" }, } }, - ["BestiaryLeague"] = { affix = "", "Areas contain Beasts to hunt", statOrder = { 8676 }, level = 1, group = "BestiaryLeague", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158543967] = { "Areas contain Beasts to hunt" }, } }, - ["RagingSpiritDurationResetOnIgnitedEnemyUnique__1"] = { affix = "", "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", statOrder = { 9629 }, level = 1, group = "RagingSpiritDurationResetOnIgnitedEnemy", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2761732967] = { "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy" }, } }, + ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5994 }, level = 72, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, + ["DamagePer15DexterityUnique__2"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5994 }, level = 1, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, + ["LifeRegeneratedPerMinuteWhileIgnitedUnique__1"] = { affix = "", "Regenerate (75-125) Life per second while Ignited", statOrder = { 7494 }, level = 74, group = "LifeRegeneratedPerMinuteWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [952897668] = { "Regenerate (75-125) Life per second while Ignited" }, } }, + ["IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1"] = { affix = "", "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", statOrder = { 6261 }, level = 77, group = "IncreasedElementalDamageIfKilledCursedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [850820277] = { "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently" }, } }, + ["DoubleDamagePer500StrengthUnique__1"] = { affix = "", "6% chance to deal Double Damage per 500 Strength", statOrder = { 5501 }, level = 63, group = "DoubleDamagePer500Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4104492115] = { "6% chance to deal Double Damage per 500 Strength" }, } }, + ["BestiaryLeague"] = { affix = "", "Areas contain Beasts to hunt", statOrder = { 8667 }, level = 1, group = "BestiaryLeague", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158543967] = { "Areas contain Beasts to hunt" }, } }, + ["RagingSpiritDurationResetOnIgnitedEnemyUnique__1"] = { affix = "", "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", statOrder = { 9620 }, level = 1, group = "RagingSpiritDurationResetOnIgnitedEnemy", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2761732967] = { "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy" }, } }, ["FrenzyChargePer50RampageStacksUnique__1"] = { affix = "", "Gain a Frenzy Charge on every 50th Rampage Kill", statOrder = { 4037 }, level = 1, group = "FrenzyChargePer50RampageStacks", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [637690626] = { "Gain a Frenzy Charge on every 50th Rampage Kill" }, } }, ["AreaOfEffectPer25RampageStacksUnique__1_"] = { affix = "", "2% increased Area of Effect per 25 Rampage Kills", statOrder = { 4036 }, level = 1, group = "AreaOfEffectPer25RampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4119032338] = { "2% increased Area of Effect per 25 Rampage Kills" }, } }, ["UnaffectedByCursesUnique__1"] = { affix = "", "Unaffected by Curses", statOrder = { 2259 }, level = 85, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3809896400] = { "Unaffected by Curses" }, } }, - ["ChanceToChillAttackersOnBlockUnique__1"] = { affix = "", "(30-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5643 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(30-40)% chance to Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToChillAttackersOnBlockUnique__2__"] = { affix = "", "Chill Attackers for 4 seconds on Block", statOrder = { 5643 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockUnique__1_"] = { affix = "", "(30-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9842 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(30-40)% chance to Shock Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockUnique__2"] = { affix = "", "Shock Attackers for 4 seconds on Block", statOrder = { 9842 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "Shock Attackers for 4 seconds on Block" }, } }, + ["ChanceToChillAttackersOnBlockUnique__1"] = { affix = "", "(30-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5639 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(30-40)% chance to Chill Attackers for 4 seconds on Block" }, } }, + ["ChanceToChillAttackersOnBlockUnique__2__"] = { affix = "", "Chill Attackers for 4 seconds on Block", statOrder = { 5639 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "Chill Attackers for 4 seconds on Block" }, } }, + ["ChanceToShockAttackersOnBlockUnique__1_"] = { affix = "", "(30-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9833 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(30-40)% chance to Shock Attackers for 4 seconds on Block" }, } }, + ["ChanceToShockAttackersOnBlockUnique__2"] = { affix = "", "Shock Attackers for 4 seconds on Block", statOrder = { 9833 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "Shock Attackers for 4 seconds on Block" }, } }, ["SupportedByTrapAndMineDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", statOrder = { 334 }, level = 1, group = "SupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 16 Trap And Mine Damage" }, } }, ["SupportedByClusterTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Cluster Trap", statOrder = { 332 }, level = 1, group = "SupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2854183975] = { "Socketed Gems are Supported by Level 16 Cluster Trap" }, } }, - ["AviansMightColdDamageUnique__1"] = { affix = "", "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", statOrder = { 8964 }, level = 1, group = "AviansMightColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3485231932] = { "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might" }, } }, - ["AviansMightLightningDamageUnique__1_"] = { affix = "", "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", statOrder = { 8975 }, level = 1, group = "AviansMightLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [855634301] = { "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might" }, } }, - ["AviansMightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Might Duration", statOrder = { 4599 }, level = 1, group = "AviansMightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1251945210] = { "+(-2-2) seconds to Avian's Might Duration" }, } }, - ["GrantAviansAspectToAlliesUnique__1"] = { affix = "", "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", statOrder = { 4460 }, level = 1, group = "GrantAviansAspectToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2544408546] = { "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies" }, } }, - ["AvianAspectBuffEffectUnique__1"] = { affix = "", "100% increased Aspect of the Avian Buff Effect", statOrder = { 4459 }, level = 1, group = "AvianAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1746347097] = { "100% increased Aspect of the Avian Buff Effect" }, } }, - ["AviansFlightLifeRegenerationUnique__1"] = { affix = "", "Regenerate 100 Life per Second while you have Avian's Flight", statOrder = { 7500 }, level = 1, group = "AviansFlightLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2589482056] = { "Regenerate 100 Life per Second while you have Avian's Flight" }, } }, - ["AviansFlightManaRegenerationUnique__1_"] = { affix = "", "Regenerate 12 Mana per Second while you have Avian's Flight", statOrder = { 8015 }, level = 1, group = "AviansFlightManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1495376076] = { "Regenerate 12 Mana per Second while you have Avian's Flight" }, } }, - ["AviansFlightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Flight Duration", statOrder = { 4598 }, level = 1, group = "AviansFlightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1251731548] = { "+(-2-2) seconds to Avian's Flight Duration" }, } }, + ["AviansMightColdDamageUnique__1"] = { affix = "", "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", statOrder = { 8955 }, level = 1, group = "AviansMightColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3485231932] = { "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might" }, } }, + ["AviansMightLightningDamageUnique__1_"] = { affix = "", "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", statOrder = { 8966 }, level = 1, group = "AviansMightLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [855634301] = { "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might" }, } }, + ["AviansMightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Might Duration", statOrder = { 4596 }, level = 1, group = "AviansMightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1251945210] = { "+(-2-2) seconds to Avian's Might Duration" }, } }, + ["GrantAviansAspectToAlliesUnique__1"] = { affix = "", "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", statOrder = { 4457 }, level = 1, group = "GrantAviansAspectToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2544408546] = { "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies" }, } }, + ["AvianAspectBuffEffectUnique__1"] = { affix = "", "100% increased Aspect of the Avian Buff Effect", statOrder = { 4456 }, level = 1, group = "AvianAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1746347097] = { "100% increased Aspect of the Avian Buff Effect" }, } }, + ["AviansFlightLifeRegenerationUnique__1"] = { affix = "", "Regenerate 100 Life per Second while you have Avian's Flight", statOrder = { 7496 }, level = 1, group = "AviansFlightLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2589482056] = { "Regenerate 100 Life per Second while you have Avian's Flight" }, } }, + ["AviansFlightManaRegenerationUnique__1_"] = { affix = "", "Regenerate 12 Mana per Second while you have Avian's Flight", statOrder = { 8011 }, level = 1, group = "AviansFlightManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1495376076] = { "Regenerate 12 Mana per Second while you have Avian's Flight" }, } }, + ["AviansFlightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Flight Duration", statOrder = { 4595 }, level = 1, group = "AviansFlightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1251731548] = { "+(-2-2) seconds to Avian's Flight Duration" }, } }, ["GrantsAvianTornadoUnique__1__"] = { affix = "", "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", statOrder = { 580 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2554328719] = { "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight" }, } }, ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(10-15)% increased Elemental Damage" }, } }, - ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 7872, 7875 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [63111803] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire" }, [1813069390] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage" }, } }, - ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 7871, 7874 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [3286480398] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage" }, [2864618930] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold" }, } }, - ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 7873, 7876 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2053992416] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage" }, [637033100] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning" }, } }, + ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 7868, 7871 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [63111803] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire" }, [1813069390] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage" }, } }, + ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 7867, 7870 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [3286480398] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage" }, [2864618930] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold" }, } }, + ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 7869, 7872 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2053992416] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage" }, [637033100] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning" }, } }, ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 1864 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(20-40)% increased Endurance Charge Duration" }, } }, ["ChargeBonusFrenzyChargeDuration"] = { affix = "", "(20-40)% increased Frenzy Charge Duration", statOrder = { 1866 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(20-40)% increased Frenzy Charge Duration" }, } }, ["ChargeBonusPowerChargeDuration"] = { affix = "", "(20-40)% increased Power Charge Duration", statOrder = { 1881 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(20-40)% increased Power Charge Duration" }, } }, ["ChargeBonusEnduranceChargeOnKill"] = { affix = "", "10% chance to gain an Endurance Charge on kill", statOrder = { 2403 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "10% chance to gain an Endurance Charge on kill" }, } }, ["ChargeBonusFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on kill", statOrder = { 2405 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "10% chance to gain a Frenzy Charge on kill" }, } }, ["ChargeBonusPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on kill", statOrder = { 2407 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on kill" }, } }, - ["ChargeBonusMovementVelocityPerEnduranceCharge"] = { affix = "", "1% increased Movement Speed per Endurance Charge", statOrder = { 9168 }, level = 1, group = "MovementVelocityPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2116250000] = { "1% increased Movement Speed per Endurance Charge" }, } }, + ["ChargeBonusMovementVelocityPerEnduranceCharge"] = { affix = "", "1% increased Movement Speed per Endurance Charge", statOrder = { 9159 }, level = 1, group = "MovementVelocityPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2116250000] = { "1% increased Movement Speed per Endurance Charge" }, } }, ["ChargeBonusMovementVelocityPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1557 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "1% increased Movement Speed per Frenzy Charge" }, } }, - ["ChargeBonusMovementVelocityPerPowerCharge"] = { affix = "", "1% increased Movement Speed per Power Charge", statOrder = { 9171 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3774108776] = { "1% increased Movement Speed per Power Charge" }, } }, + ["ChargeBonusMovementVelocityPerPowerCharge"] = { affix = "", "1% increased Movement Speed per Power Charge", statOrder = { 9162 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3774108776] = { "1% increased Movement Speed per Power Charge" }, } }, ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Endurance Charge", statOrder = { 1444 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of maximum Life per second per Endurance Charge" }, } }, ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Frenzy Charge", statOrder = { 2402 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.3% of maximum Life per second per Frenzy Charge" }, } }, - ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Power Charge", statOrder = { 7520 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.3% of maximum Life per second per Power Charge" }, } }, + ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Power Charge", statOrder = { 7516 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.3% of maximum Life per second per Power Charge" }, } }, ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 2917 }, level = 1, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } }, ["ChargeBonusDamagePerFrenzyCharge"] = { affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 2994 }, level = 1, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, - ["ChargeBonusDamagePerPowerCharge"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6009 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["ChargeBonusAddedFireDamagePerEnduranceCharge"] = { affix = "", "(7-9) to (13-14) Fire Damage per Endurance Charge", statOrder = { 8967 }, level = 1, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(7-9) to (13-14) Fire Damage per Endurance Charge" }, } }, + ["ChargeBonusDamagePerPowerCharge"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6005 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, + ["ChargeBonusAddedFireDamagePerEnduranceCharge"] = { affix = "", "(7-9) to (13-14) Fire Damage per Endurance Charge", statOrder = { 8958 }, level = 1, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(7-9) to (13-14) Fire Damage per Endurance Charge" }, } }, ["ChargeBonusAddedColdDamagePerFrenzyCharge"] = { affix = "", "(6-8) to (12-13) Added Cold Damage per Frenzy Charge", statOrder = { 3918 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(6-8) to (12-13) Added Cold Damage per Frenzy Charge" }, } }, - ["ChargeBonusAddedLightningDamagePerPowerCharge"] = { affix = "", "(1-2) to (18-20) Lightning Damage per Power Charge", statOrder = { 8971 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (18-20) Lightning Damage per Power Charge" }, } }, - ["ChargeBonusBlockChancePerEnduranceCharge"] = { affix = "", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 4171 }, level = 1, group = "BlockChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2355741828] = { "+1% Chance to Block Attack Damage per Endurance Charge" }, } }, - ["ChargeBonusBlockChancePerFrenzyCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Frenzy Charge", statOrder = { 4172 }, level = 1, group = "BlockChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2148784747] = { "+1% Chance to Block Attack Damage per Frenzy Charge" }, } }, - ["ChargeBonusBlockChancePerPowerCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Power Charge", statOrder = { 4173 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2856326982] = { "+1% Chance to Block Attack Damage per Power Charge" }, } }, - ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 9286 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [700405539] = { "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge" }, } }, - ["ChargeBonusColdDamageAddedAsChaos"] = { affix = "", "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", statOrder = { 9285 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2764080642] = { "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge" }, } }, - ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Chaos Damage per Power Charge", statOrder = { 9288 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2650222338] = { "Gain 1% of Lightning Damage as Chaos Damage per Power Charge" }, } }, - ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 9463 }, level = 1, group = "IncreasedArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1447080724] = { "6% increased Armour per Endurance Charge" }, } }, + ["ChargeBonusAddedLightningDamagePerPowerCharge"] = { affix = "", "(1-2) to (18-20) Lightning Damage per Power Charge", statOrder = { 8962 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (18-20) Lightning Damage per Power Charge" }, } }, + ["ChargeBonusBlockChancePerEnduranceCharge"] = { affix = "", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 4168 }, level = 1, group = "BlockChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2355741828] = { "+1% Chance to Block Attack Damage per Endurance Charge" }, } }, + ["ChargeBonusBlockChancePerFrenzyCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Frenzy Charge", statOrder = { 4169 }, level = 1, group = "BlockChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2148784747] = { "+1% Chance to Block Attack Damage per Frenzy Charge" }, } }, + ["ChargeBonusBlockChancePerPowerCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Power Charge", statOrder = { 4170 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2856326982] = { "+1% Chance to Block Attack Damage per Power Charge" }, } }, + ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 9277 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [700405539] = { "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge" }, } }, + ["ChargeBonusColdDamageAddedAsChaos"] = { affix = "", "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", statOrder = { 9276 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2764080642] = { "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge" }, } }, + ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Chaos Damage per Power Charge", statOrder = { 9279 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2650222338] = { "Gain 1% of Lightning Damage as Chaos Damage per Power Charge" }, } }, + ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 9454 }, level = 1, group = "IncreasedArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1447080724] = { "6% increased Armour per Endurance Charge" }, } }, ["ChargeBonusEvasionPerFrenzyCharge"] = { affix = "", "8% increased Evasion Rating per Frenzy Charge", statOrder = { 1426 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [660404777] = { "8% increased Evasion Rating per Frenzy Charge" }, } }, - ["ChargeBonusEnergyShieldPerPowerCharge"] = { affix = "", "3% increased Energy Shield per Power Charge", statOrder = { 6435 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2189382346] = { "3% increased Energy Shield per Power Charge" }, } }, + ["ChargeBonusEnergyShieldPerPowerCharge"] = { affix = "", "3% increased Energy Shield per Power Charge", statOrder = { 6431 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2189382346] = { "3% increased Energy Shield per Power Charge" }, } }, ["ChargeBonusChanceToGainMaximumEnduranceCharges"] = { affix = "", "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 3888 }, level = 1, group = "ChanceToGainMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2713233613] = { "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges" }, } }, - ["ChargeBonusChanceToGainMaximumFrenzyCharges"] = { affix = "", "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 6815 }, level = 1, group = "ChanceToGainMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2119664154] = { "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" }, } }, - ["ChargeBonusChanceToGainMaximumPowerCharges"] = { affix = "", "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6816, 6816.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, - ["ChargeBonusEnduranceChargeIfHitRecently"] = { affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6780 }, level = 1, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, } }, + ["ChargeBonusChanceToGainMaximumFrenzyCharges"] = { affix = "", "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 6811 }, level = 1, group = "ChanceToGainMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2119664154] = { "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" }, } }, + ["ChargeBonusChanceToGainMaximumPowerCharges"] = { affix = "", "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6812, 6812.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, + ["ChargeBonusEnduranceChargeIfHitRecently"] = { affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6776 }, level = 1, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, } }, ["ChargeBonusFrenzyChargeOnHit__"] = { affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1588 }, level = 1, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, } }, ["ChargeBonusPowerChargeOnCrit"] = { affix = "", "20% chance to gain a Power Charge on Critical Hit", statOrder = { 1585 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "20% chance to gain a Power Charge on Critical Hit" }, } }, - ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4473 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [3618888098] = { "1% increased Attack and Cast Speed per Endurance Charge" }, } }, + ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4470 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [3618888098] = { "1% increased Attack and Cast Speed per Endurance Charge" }, } }, ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { affix = "", "10% increased Accuracy Rating per Frenzy Charge", statOrder = { 1785 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3700381193] = { "10% increased Accuracy Rating per Frenzy Charge" }, } }, - ["ChargeBonusAttackAndCastSpeedPerPowerCharge"] = { affix = "", "1% increased Attack and Cast Speed per Power Charge", statOrder = { 4474 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [987588151] = { "1% increased Attack and Cast Speed per Power Charge" }, } }, - ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Hit Chance per Endurance Charge", statOrder = { 5854 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2547511866] = { "6% increased Critical Hit Chance per Endurance Charge" }, } }, - ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Hit Chance per Frenzy Charge", statOrder = { 5855 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [707887043] = { "6% increased Critical Hit Chance per Frenzy Charge" }, } }, + ["ChargeBonusAttackAndCastSpeedPerPowerCharge"] = { affix = "", "1% increased Attack and Cast Speed per Power Charge", statOrder = { 4471 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [987588151] = { "1% increased Attack and Cast Speed per Power Charge" }, } }, + ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Hit Chance per Endurance Charge", statOrder = { 5850 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2547511866] = { "6% increased Critical Hit Chance per Endurance Charge" }, } }, + ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Hit Chance per Frenzy Charge", statOrder = { 5851 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [707887043] = { "6% increased Critical Hit Chance per Frenzy Charge" }, } }, ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "3% increased Critical Damage Bonus per Power Charge", statOrder = { 2990 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "3% increased Critical Damage Bonus per Power Charge" }, } }, - ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5589 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, - ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 9454 }, level = 1, group = "PhysicalDamageReductionPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1226049915] = { "1% additional Physical Damage Reduction per Frenzy Charge" }, } }, - ["ChargeBonusPhysicalDamageReductionPerPowerCharge_"] = { affix = "", "1% additional Physical Damage Reduction per Power Charge", statOrder = { 9456 }, level = 1, group = "PhysicalDamageReductionPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3986347319] = { "1% additional Physical Damage Reduction per Power Charge" }, } }, + ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5585 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, + ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 9445 }, level = 1, group = "PhysicalDamageReductionPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1226049915] = { "1% additional Physical Damage Reduction per Frenzy Charge" }, } }, + ["ChargeBonusPhysicalDamageReductionPerPowerCharge_"] = { affix = "", "1% additional Physical Damage Reduction per Power Charge", statOrder = { 9447 }, level = 1, group = "PhysicalDamageReductionPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3986347319] = { "1% additional Physical Damage Reduction per Power Charge" }, } }, ["ChargeBonusMaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["ChargeBonusIntimidateOnHitEnduranceCharges"] = { affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", statOrder = { 7381 }, level = 1, group = "IntimidateOnHitMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2877370216] = { "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges" }, } }, - ["ChargeBonusOnslaughtOnHitFrenzyCharges_"] = { affix = "", "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", statOrder = { 6828 }, level = 1, group = "OnslaughtOnHitMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2408544213] = { "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges" }, } }, - ["ChargeBonusArcaneSurgeOnHitPowerCharges"] = { affix = "", "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", statOrder = { 6749 }, level = 1, group = "ArcaneSurgeOnHitMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [813119588] = { "Gain Arcane Surge on Hit with Spells while at maximum Power Charges" }, } }, + ["ChargeBonusIntimidateOnHitEnduranceCharges"] = { affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", statOrder = { 7377 }, level = 1, group = "IntimidateOnHitMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2877370216] = { "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges" }, } }, + ["ChargeBonusOnslaughtOnHitFrenzyCharges_"] = { affix = "", "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", statOrder = { 6824 }, level = 1, group = "OnslaughtOnHitMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2408544213] = { "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges" }, } }, + ["ChargeBonusArcaneSurgeOnHitPowerCharges"] = { affix = "", "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", statOrder = { 6745 }, level = 1, group = "ArcaneSurgeOnHitMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [813119588] = { "Gain Arcane Surge on Hit with Spells while at maximum Power Charges" }, } }, ["ChargeBonusCannotBeStunnedEnduranceCharges__"] = { affix = "", "You cannot be Stunned while at maximum Endurance Charges", statOrder = { 3708 }, level = 1, group = "CannotBeStunnedMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3780437763] = { "You cannot be Stunned while at maximum Endurance Charges" }, } }, - ["ChargeBonusFlaskChargeOnCritFrenzyCharges"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", statOrder = { 6787 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3371432622] = { "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges" }, } }, - ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 9323 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [761598374] = { "You can apply an additional Curse while at maximum Power Charges" }, } }, - ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 10735 }, level = 1, group = "IronReflexesMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [1990354706] = { "You have Iron Reflexes while at maximum Frenzy Charges" }, } }, - ["ChargeBonusMindOverMatterPowerCharges"] = { affix = "", "You have Mind over Matter while at maximum Power Charges", statOrder = { 10736 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1876857497] = { "You have Mind over Matter while at maximum Power Charges" }, } }, + ["ChargeBonusFlaskChargeOnCritFrenzyCharges"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", statOrder = { 6783 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3371432622] = { "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges" }, } }, + ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 9314 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [761598374] = { "You can apply an additional Curse while at maximum Power Charges" }, } }, + ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 10725 }, level = 1, group = "IronReflexesMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [1990354706] = { "You have Iron Reflexes while at maximum Frenzy Charges" }, } }, + ["ChargeBonusMindOverMatterPowerCharges"] = { affix = "", "You have Mind over Matter while at maximum Power Charges", statOrder = { 10726 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1876857497] = { "You have Mind over Matter while at maximum Power Charges" }, } }, ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1944 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (10-20)% increased Cast Speed" }, } }, ["CurseCastSpeedUnique__2"] = { affix = "", "Curse Skills have (8-12)% increased Cast Speed", statOrder = { 1944 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (8-12)% increased Cast Speed" }, } }, ["TriggerSocketedCurseSkillsOnCurseUnique__1_"] = { affix = "", "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", statOrder = { 600 }, level = 1, group = "TriggerCurseOnCurse", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHashes = { [3657377047] = { "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown" }, } }, ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 4001 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "chaos" }, tradeHashes = { [1860646468] = { "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped" }, } }, - ["HitsIgnoreChaosResistanceAllShaperItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", statOrder = { 7217 }, level = 1, group = "HitsIgnoreChaosResistanceAllShaperItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4234677275] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items" }, } }, - ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", statOrder = { 7216 }, level = 1, group = "HitsIgnoreChaosResistanceAllElderItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [89314980] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items" }, } }, - ["ColdDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", statOrder = { 5678 }, level = 1, group = "ColdDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2517031897] = { "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%" }, } }, - ["LightningDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", statOrder = { 7547 }, level = 1, group = "LightningDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2642525868] = { "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%" }, } }, + ["HitsIgnoreChaosResistanceAllShaperItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", statOrder = { 7213 }, level = 1, group = "HitsIgnoreChaosResistanceAllShaperItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4234677275] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items" }, } }, + ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", statOrder = { 7212 }, level = 1, group = "HitsIgnoreChaosResistanceAllElderItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [89314980] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items" }, } }, + ["ColdDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", statOrder = { 5674 }, level = 1, group = "ColdDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2517031897] = { "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%" }, } }, + ["LightningDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", statOrder = { 7543 }, level = 1, group = "LightningDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2642525868] = { "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%" }, } }, ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 932 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(15-30)% reduced Duration" }, } }, ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 648 }, level = 1, group = "FlaskConsecratedGroundAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [806698863] = { "Consecrated Ground created by this Flask has Tripled Radius" }, } }, ["FlaskConsecratedGroundDamageTakenUnique__1"] = { affix = "", "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies", statOrder = { 745 }, level = 1, group = "FlaskConsecratedGroundDamageTaken", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [1866211373] = { "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies" }, } }, @@ -4592,228 +4586,227 @@ return { ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1655 }, level = 1, group = "ShockOnKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [209387074] = { "Enemies you kill are Shocked" }, } }, ["DivineChargeOnHitUnique__1_"] = { affix = "", "+10 to maximum Divine Charges", "Gain a Divine Charge on Hit", statOrder = { 4048, 4049 }, level = 1, group = "DivineChargeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [108334292] = { "Gain a Divine Charge on Hit" }, [3997368968] = { "+10 to maximum Divine Charges" }, } }, ["GainDivinityOnMaxDivineChargeUnique__1"] = { affix = "", "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity", statOrder = { 4051, 4051.1 }, level = 1, group = "GainDivinityOnMaxDivineCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1174243390] = { "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity" }, } }, - ["UniqueIncreasedMaximumDivinity1"] = { affix = "", "(0-100)% increased maximum Divinity", statOrder = { 8856 }, level = 1, group = "IncreasedMaximumDivinity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [878697053] = { "(0-100)% increased maximum Divinity" }, } }, - ["UniqueReducedMaximumDivinityPerCorruptedItem1"] = { affix = "", "20% reduced maximum Divinity per Corrupted Item Equipped", statOrder = { 8857 }, level = 1, group = "ReducedMaximumDivinityPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2189090852] = { "20% reduced maximum Divinity per Corrupted Item Equipped" }, } }, - ["UniqueEnergyShieldConvertedToDivinity1"] = { affix = "", "Convert 100% of maximum Energy Shield to maximum Divinity", statOrder = { 5770 }, level = 1, group = "EnergyShieldConvertedToDivinity", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2896801635] = { "Convert 100% of maximum Energy Shield to maximum Divinity" }, } }, - ["UniqueSkillAndLifeCostsConvertedToDivinity1"] = { affix = "", "Skills Cost Divinity instead of Mana or Life", statOrder = { 9918 }, level = 1, group = "SkillAndLifeCostsConvertedToDivinity", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [467146530] = { "Skills Cost Divinity instead of Mana or Life" }, } }, + ["UniqueIncreasedMaximumDivinity1"] = { affix = "", "(0-100)% increased maximum Divinity", statOrder = { 8847 }, level = 1, group = "IncreasedMaximumDivinity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [878697053] = { "(0-100)% increased maximum Divinity" }, } }, + ["UniqueReducedMaximumDivinityPerCorruptedItem1"] = { affix = "", "20% reduced maximum Divinity per Corrupted Item Equipped", statOrder = { 8848 }, level = 1, group = "ReducedMaximumDivinityPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2189090852] = { "20% reduced maximum Divinity per Corrupted Item Equipped" }, } }, + ["UniqueEnergyShieldConvertedToDivinity1"] = { affix = "", "Convert 100% of maximum Energy Shield to maximum Divinity", statOrder = { 5766 }, level = 1, group = "EnergyShieldConvertedToDivinity", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2896801635] = { "Convert 100% of maximum Energy Shield to maximum Divinity" }, } }, + ["UniqueSkillAndLifeCostsConvertedToDivinity1"] = { affix = "", "Skills Cost Divinity instead of Mana or Life", statOrder = { 9909 }, level = 1, group = "SkillAndLifeCostsConvertedToDivinity", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [467146530] = { "Skills Cost Divinity instead of Mana or Life" }, } }, ["UniqueCannotHaveEnergyShield1"] = { affix = "", "Cannot have Energy Shield", statOrder = { 2844 }, level = 1, group = "CannotHaveEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [410952253] = { "Cannot have Energy Shield" }, } }, - ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Never deal Critical Hits", "Nearby Enemies cannot deal Critical Hits", statOrder = { 1917, 7676 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1177959871] = { "Nearby Enemies cannot deal Critical Hits" }, [3638599682] = { "Never deal Critical Hits" }, } }, - ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", "Nearby Allies' Action Speed cannot be modified to below base value", statOrder = { 2913, 7669 }, level = 1, group = "NearbyAlliesCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1356468153] = { "Nearby Allies' Action Speed cannot be modified to below base value" }, [628716294] = { "Action Speed cannot be modified to below base value" }, } }, - ["ManaReservationPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8025 }, level = 1, group = "ManaReservationPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2676451350] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, - ["ManaReservationEfficiencyPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8026 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1212083058] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, + ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Never deal Critical Hits", "Nearby Enemies cannot deal Critical Hits", statOrder = { 1917, 7672 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1177959871] = { "Nearby Enemies cannot deal Critical Hits" }, [3638599682] = { "Never deal Critical Hits" }, } }, + ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", "Nearby Allies' Action Speed cannot be modified to below base value", statOrder = { 2913, 7665 }, level = 1, group = "NearbyAlliesCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1356468153] = { "Nearby Allies' Action Speed cannot be modified to below base value" }, [628716294] = { "Action Speed cannot be modified to below base value" }, } }, + ["ManaReservationPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8021 }, level = 1, group = "ManaReservationPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2676451350] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, + ["ManaReservationEfficiencyPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8022 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1212083058] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, ["DefencesPer100StrengthAuraUnique__1"] = { affix = "", "Nearby Allies have (4-6)% increased Armour, Evasion and Energy Shield per 100 Strength you have", statOrder = { 2738 }, level = 1, group = "DefencesPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1879586312] = { "Nearby Allies have (4-6)% increased Armour, Evasion and Energy Shield per 100 Strength you have" }, } }, ["BlockPer100StrengthAuraUnique__1___"] = { affix = "", "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", statOrder = { 2737 }, level = 1, group = "BlockPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3941641418] = { "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have" }, } }, ["CriticalMultiplierPer100DexterityAuraUnique__1"] = { affix = "", "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have", statOrder = { 2739 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1438488526] = { "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have" }, } }, ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 2740 }, level = 1, group = "CastSpeedPer100IntelligenceAura", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2373999301] = { "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have" }, } }, ["GrantsAccuracyAuraSkillUnique__1"] = { affix = "", "Grants Level 30 Precision Skill", statOrder = { 507 }, level = 81, group = "AccuracyAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2721815210] = { "Grants Level 30 Precision Skill" }, } }, - ["PrecisionAuraBonusUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9515 }, level = 1, group = "PrecisionAuraBonus", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1291925008] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, - ["PrecisionReservationEfficiencyUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9516 }, level = 1, group = "PrecisionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3859865977] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, + ["PrecisionAuraBonusUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9506 }, level = 1, group = "PrecisionAuraBonus", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1291925008] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, + ["PrecisionReservationEfficiencyUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9507 }, level = 1, group = "PrecisionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3859865977] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, ["SupportedByBlessingSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 185 }, level = 1, group = "SupportedByBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3274973940] = { "Socketed Gems are Supported by Level 25 Divine Blessing" }, } }, ["TriggerBowSkillsOnBowAttackUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", statOrder = { 549 }, level = 1, group = "TriggerBowSkillsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "gem" }, tradeHashes = { [3171958921] = { "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown" }, } }, ["TriggerBowSkillsOnCastUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown", statOrder = { 607, 607.1 }, level = 1, group = "TriggerBowSkillsOnCast", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [1378815167] = { "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown" }, } }, ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2928 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4224337800] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, - ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "5% chance to Blind Enemies on Hit with Attacks" }, } }, - ["AttacksBlindOnHitChanceUnique__2"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10639 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod2_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10639 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod3_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10639 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod4"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10639 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod5"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10639 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusThunderReservation"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7163 }, level = 1, group = "HeraldBonusThunderReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3959101898] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusThunderReservationEfficiency"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7164 }, level = 1, group = "HeraldBonusThunderReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3817220109] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusThunderLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Herald of Thunder", statOrder = { 7548 }, level = 1, group = "HeraldBonusThunderLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [536957] = { "(40-60)% increased Lightning Damage while affected by Herald of Thunder" }, } }, - ["HeraldBonusThunderEffect"] = { affix = "", "Herald of Thunder has (40-60)% increased Buff Effect", statOrder = { 7162 }, level = 1, group = "HeraldBonusThunderEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusThunderMaxLightningResist"] = { affix = "", "+1% to maximum Lightning Resistance while affected by Herald of Thunder", statOrder = { 8890 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [3259396413] = { "+1% to maximum Lightning Resistance while affected by Herald of Thunder" }, } }, - ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 7550 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [2687017988] = { "+(50-60)% to Lightning Resistance while affected by Herald of Thunder" }, } }, - ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7150 }, level = 1, group = "HeraldBonusAshReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3819451758] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAshReservationEfficiency__"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7151 }, level = 1, group = "HeraldBonusAshReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2500442851] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAshFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Herald of Ash", statOrder = { 6573 }, level = 1, group = "HeraldBonusAshFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2775776604] = { "(40-60)% increased Fire Damage while affected by Herald of Ash" }, } }, - ["HeraldBonusAshEffect"] = { affix = "", "Herald of Ash has (40-60)% increased Buff Effect", statOrder = { 7149 }, level = 1, group = "HeraldBonusAshEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusAshMaxFireResist"] = { affix = "", "+1% to maximum Fire Resistance while affected by Herald of Ash", statOrder = { 8867 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3716758077] = { "+1% to maximum Fire Resistance while affected by Herald of Ash" }, } }, - ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 6574 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [2675641469] = { "+(50-60)% to Fire Resistance while affected by Herald of Ash" }, } }, - ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7153 }, level = 1, group = "HeraldBonusIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3059700363] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusIceReservationEfficiency__"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7154 }, level = 1, group = "HeraldBonusIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3395872960] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusIceColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Herald of Ice", statOrder = { 5686 }, level = 1, group = "HeraldBonusIceColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1970606344] = { "(40-60)% increased Cold Damage while affected by Herald of Ice" }, } }, - ["HeraldBonusIceEffect_"] = { affix = "", "Herald of Ice has (40-60)% increased Buff Effect", statOrder = { 7152 }, level = 1, group = "HeraldBonusIceEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusMaxColdResist__"] = { affix = "", "+1% to maximum Cold Resistance while affected by Herald of Ice", statOrder = { 8850 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [950661692] = { "+1% to maximum Cold Resistance while affected by Herald of Ice" }, } }, - ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5688 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [2494069187] = { "+(50-60)% to Cold Resistance while affected by Herald of Ice" }, } }, - ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7158 }, level = 1, group = "HeraldBonusPurityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1542765265] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusPurityReservationEfficiency_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7159 }, level = 1, group = "HeraldBonusPurityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2189040439] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusPurityPhysicalDamage"] = { affix = "", "(40-60)% increased Physical Damage while affected by Herald of Purity", statOrder = { 9449 }, level = 1, group = "HeraldBonusPurityPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3294232483] = { "(40-60)% increased Physical Damage while affected by Herald of Purity" }, } }, - ["HeraldBonusPurityEffect"] = { affix = "", "Herald of Purity has (40-60)% increased Buff Effect", statOrder = { 7156 }, level = 1, group = "HeraldBonusPurityEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusPurityMinionDamage"] = { affix = "", "Sentinels of Purity deal (70-100)% increased Damage", statOrder = { 9820 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [650630047] = { "Sentinels of Purity deal (70-100)% increased Damage" }, } }, - ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 9457 }, level = 1, group = "HeraldBonusPurityPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3163114700] = { "4% additional Physical Damage Reduction while affected by Herald of Purity" }, } }, - ["HeraldBonusAgonyReservation"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7146 }, level = 1, group = "HeraldBonusAgonyReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1284151528] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAgonyReservationEfficiency"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7147 }, level = 1, group = "HeraldBonusAgonyReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1133703802] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAgonyChaosDamage_"] = { affix = "", "(40-60)% increased Chaos Damage while affected by Herald of Agony", statOrder = { 5588 }, level = 1, group = "HeraldBonusAgonyChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [739274558] = { "(40-60)% increased Chaos Damage while affected by Herald of Agony" }, } }, - ["HeraldBonusAgonyEffect"] = { affix = "", "Herald of Agony has (40-60)% increased Buff Effect", statOrder = { 7145 }, level = 1, group = "HeraldBonusAgonyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusAgonyMinionDamage_"] = { affix = "", "Agony Crawler deals (70-100)% increased Damage", statOrder = { 4249 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [786460697] = { "Agony Crawler deals (70-100)% increased Damage" }, } }, - ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5593 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [3456816469] = { "+(31-43)% to Chaos Resistance while affected by Herald of Agony" }, } }, - ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 13, 13.1, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 13, 13.1, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 13, 13.1, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 13, 13.1, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 13, 13.1, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 13, 13.1, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusAbyssal"] = { affix = "", "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable", "Historic", statOrder = { 13, 13.1, 13.2, 10640 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable" }, [3787436548] = { "Historic" }, } }, - ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 10286 }, level = 1, group = "TotemDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2566390555] = { "4% increased Totem Damage per 10 Devotion" }, } }, - ["BrandDamagePerDevotion"] = { affix = "", "4% increased Brand Damage per 10 Devotion", statOrder = { 9877 }, level = 1, group = "BrandDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2697019412] = { "4% increased Brand Damage per 10 Devotion" }, } }, - ["ChannelledSkillDamagePerDevotion"] = { affix = "", "Channelling Skills deal 4% increased Damage per 10 Devotion", statOrder = { 5579 }, level = 1, group = "ChannelledSkillDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [970844066] = { "Channelling Skills deal 4% increased Damage per 10 Devotion" }, } }, - ["AreaDamagePerDevotion"] = { affix = "", "4% increased Area Damage per 10 Devotion", statOrder = { 4357 }, level = 1, group = "AreaDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1724614884] = { "4% increased Area Damage per 10 Devotion" }, } }, - ["ElementalDamagePerDevotion_"] = { affix = "", "4% increased Elemental Damage per 10 Devotion", statOrder = { 6271 }, level = 1, group = "ElementalDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3103189267] = { "4% increased Elemental Damage per 10 Devotion" }, } }, - ["ElementalResistancesPerDevotion"] = { affix = "", "+2% to all Elemental Resistances per 10 Devotion", statOrder = { 6306 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1910205563] = { "+2% to all Elemental Resistances per 10 Devotion" }, } }, - ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", statOrder = { 9227 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1810368194] = { "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion" }, } }, - ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9810 }, level = 1, group = "ElementalAilmentSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [730530528] = { "4% reduced Elemental Ailment Duration on you per 10 Devotion" }, } }, - ["CurseSelfDurationPerDevotion"] = { affix = "", "4% reduced Duration of Curses on you per 10 Devotion", statOrder = { 9809 }, level = 1, group = "CurseSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4235333770] = { "4% reduced Duration of Curses on you per 10 Devotion" }, } }, - ["MinionAttackAndCastSpeedPerDevotion"] = { affix = "", "1% increased Minion Attack and Cast Speed per 10 Devotion", statOrder = { 9005 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3808469650] = { "1% increased Minion Attack and Cast Speed per 10 Devotion" }, } }, - ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 8995 }, level = 1, group = "MinionAccuracyRatingPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2830135449] = { "Minions have +60 to Accuracy Rating per 10 Devotion" }, } }, - ["AddedManaRegenerationPerDevotion"] = { affix = "", "Regenerate 0.6 Mana per Second per 10 Devotion", statOrder = { 8006 }, level = 1, group = "AddedManaRegenerationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2042813020] = { "Regenerate 0.6 Mana per Second per 10 Devotion" }, } }, - ["ReducedManaCostPerDevotion"] = { affix = "", "1% reduced Mana Cost of Skills per 10 Devotion", statOrder = { 7974 }, level = 1, group = "ReducedManaCostPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3293275880] = { "1% reduced Mana Cost of Skills per 10 Devotion" }, } }, - ["AuraEffectPerDevotion"] = { affix = "", "1% increased effect of Non-Curse Auras per 10 Devotion", statOrder = { 9221 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2585926696] = { "1% increased effect of Non-Curse Auras per 10 Devotion" }, } }, - ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion", statOrder = { 9840 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2398058229] = { "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion" }, } }, - ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 7827 }, level = 50, group = "NovaSpellsAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [200113086] = { "Nova Spells have 20% less Area of Effect" }, } }, - ["RingAttackSpeedUnique__1"] = { affix = "", "20% less Attack Speed", statOrder = { 7825 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2418322751] = { "20% less Attack Speed" }, } }, + ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "5% chance to Blind Enemies on Hit with Attacks" }, } }, + ["AttacksBlindOnHitChanceUnique__2"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10629 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, + ["HeraldBonusExtraMod2_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10629 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, + ["HeraldBonusExtraMod3_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10629 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, + ["HeraldBonusExtraMod4"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10629 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, + ["HeraldBonusExtraMod5"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10629 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, + ["HeraldBonusThunderReservation"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7159 }, level = 1, group = "HeraldBonusThunderReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3959101898] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusThunderReservationEfficiency"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7160 }, level = 1, group = "HeraldBonusThunderReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3817220109] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusThunderLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Herald of Thunder", statOrder = { 7544 }, level = 1, group = "HeraldBonusThunderLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [536957] = { "(40-60)% increased Lightning Damage while affected by Herald of Thunder" }, } }, + ["HeraldBonusThunderEffect"] = { affix = "", "Herald of Thunder has (40-60)% increased Buff Effect", statOrder = { 7158 }, level = 1, group = "HeraldBonusThunderEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (40-60)% increased Buff Effect" }, } }, + ["HeraldBonusThunderMaxLightningResist"] = { affix = "", "+1% to maximum Lightning Resistance while affected by Herald of Thunder", statOrder = { 8881 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [3259396413] = { "+1% to maximum Lightning Resistance while affected by Herald of Thunder" }, } }, + ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 7546 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [2687017988] = { "+(50-60)% to Lightning Resistance while affected by Herald of Thunder" }, } }, + ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7146 }, level = 1, group = "HeraldBonusAshReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3819451758] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusAshReservationEfficiency__"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7147 }, level = 1, group = "HeraldBonusAshReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2500442851] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusAshFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Herald of Ash", statOrder = { 6569 }, level = 1, group = "HeraldBonusAshFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2775776604] = { "(40-60)% increased Fire Damage while affected by Herald of Ash" }, } }, + ["HeraldBonusAshEffect"] = { affix = "", "Herald of Ash has (40-60)% increased Buff Effect", statOrder = { 7145 }, level = 1, group = "HeraldBonusAshEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (40-60)% increased Buff Effect" }, } }, + ["HeraldBonusAshMaxFireResist"] = { affix = "", "+1% to maximum Fire Resistance while affected by Herald of Ash", statOrder = { 8858 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3716758077] = { "+1% to maximum Fire Resistance while affected by Herald of Ash" }, } }, + ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 6570 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [2675641469] = { "+(50-60)% to Fire Resistance while affected by Herald of Ash" }, } }, + ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7149 }, level = 1, group = "HeraldBonusIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3059700363] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusIceReservationEfficiency__"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7150 }, level = 1, group = "HeraldBonusIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3395872960] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusIceColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Herald of Ice", statOrder = { 5682 }, level = 1, group = "HeraldBonusIceColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1970606344] = { "(40-60)% increased Cold Damage while affected by Herald of Ice" }, } }, + ["HeraldBonusIceEffect_"] = { affix = "", "Herald of Ice has (40-60)% increased Buff Effect", statOrder = { 7148 }, level = 1, group = "HeraldBonusIceEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (40-60)% increased Buff Effect" }, } }, + ["HeraldBonusMaxColdResist__"] = { affix = "", "+1% to maximum Cold Resistance while affected by Herald of Ice", statOrder = { 8841 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [950661692] = { "+1% to maximum Cold Resistance while affected by Herald of Ice" }, } }, + ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5684 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [2494069187] = { "+(50-60)% to Cold Resistance while affected by Herald of Ice" }, } }, + ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7154 }, level = 1, group = "HeraldBonusPurityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1542765265] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusPurityReservationEfficiency_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7155 }, level = 1, group = "HeraldBonusPurityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2189040439] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusPurityPhysicalDamage"] = { affix = "", "(40-60)% increased Physical Damage while affected by Herald of Purity", statOrder = { 9440 }, level = 1, group = "HeraldBonusPurityPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3294232483] = { "(40-60)% increased Physical Damage while affected by Herald of Purity" }, } }, + ["HeraldBonusPurityEffect"] = { affix = "", "Herald of Purity has (40-60)% increased Buff Effect", statOrder = { 7152 }, level = 1, group = "HeraldBonusPurityEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (40-60)% increased Buff Effect" }, } }, + ["HeraldBonusPurityMinionDamage"] = { affix = "", "Sentinels of Purity deal (70-100)% increased Damage", statOrder = { 9811 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [650630047] = { "Sentinels of Purity deal (70-100)% increased Damage" }, } }, + ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 9448 }, level = 1, group = "HeraldBonusPurityPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3163114700] = { "4% additional Physical Damage Reduction while affected by Herald of Purity" }, } }, + ["HeraldBonusAgonyReservation"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7142 }, level = 1, group = "HeraldBonusAgonyReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1284151528] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusAgonyReservationEfficiency"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7143 }, level = 1, group = "HeraldBonusAgonyReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1133703802] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusAgonyChaosDamage_"] = { affix = "", "(40-60)% increased Chaos Damage while affected by Herald of Agony", statOrder = { 5584 }, level = 1, group = "HeraldBonusAgonyChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [739274558] = { "(40-60)% increased Chaos Damage while affected by Herald of Agony" }, } }, + ["HeraldBonusAgonyEffect"] = { affix = "", "Herald of Agony has (40-60)% increased Buff Effect", statOrder = { 7141 }, level = 1, group = "HeraldBonusAgonyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (40-60)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyMinionDamage_"] = { affix = "", "Agony Crawler deals (70-100)% increased Damage", statOrder = { 4246 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [786460697] = { "Agony Crawler deals (70-100)% increased Damage" }, } }, + ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5589 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [3456816469] = { "+(31-43)% to Chaos Resistance while affected by Herald of Agony" }, } }, + ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 13, 13.1, 10630 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 13, 13.1, 10630 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 13, 13.1, 10630 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 13, 13.1, 10630 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 13, 13.1, 10630 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 13, 13.1, 10630 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusAbyssal"] = { affix = "", "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable", "Historic", statOrder = { 13, 13.1, 13.2, 10630 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable" }, [3787436548] = { "Historic" }, } }, + ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 10277 }, level = 1, group = "TotemDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2566390555] = { "4% increased Totem Damage per 10 Devotion" }, } }, + ["BrandDamagePerDevotion"] = { affix = "", "4% increased Brand Damage per 10 Devotion", statOrder = { 9868 }, level = 1, group = "BrandDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2697019412] = { "4% increased Brand Damage per 10 Devotion" }, } }, + ["ChannelledSkillDamagePerDevotion"] = { affix = "", "Channelling Skills deal 4% increased Damage per 10 Devotion", statOrder = { 5575 }, level = 1, group = "ChannelledSkillDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [970844066] = { "Channelling Skills deal 4% increased Damage per 10 Devotion" }, } }, + ["AreaDamagePerDevotion"] = { affix = "", "4% increased Area Damage per 10 Devotion", statOrder = { 4354 }, level = 1, group = "AreaDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1724614884] = { "4% increased Area Damage per 10 Devotion" }, } }, + ["ElementalDamagePerDevotion_"] = { affix = "", "4% increased Elemental Damage per 10 Devotion", statOrder = { 6267 }, level = 1, group = "ElementalDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3103189267] = { "4% increased Elemental Damage per 10 Devotion" }, } }, + ["ElementalResistancesPerDevotion"] = { affix = "", "+2% to all Elemental Resistances per 10 Devotion", statOrder = { 6302 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1910205563] = { "+2% to all Elemental Resistances per 10 Devotion" }, } }, + ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", statOrder = { 9218 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1810368194] = { "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion" }, } }, + ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9801 }, level = 1, group = "ElementalAilmentSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [730530528] = { "4% reduced Elemental Ailment Duration on you per 10 Devotion" }, } }, + ["CurseSelfDurationPerDevotion"] = { affix = "", "4% reduced Duration of Curses on you per 10 Devotion", statOrder = { 9800 }, level = 1, group = "CurseSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4235333770] = { "4% reduced Duration of Curses on you per 10 Devotion" }, } }, + ["MinionAttackAndCastSpeedPerDevotion"] = { affix = "", "1% increased Minion Attack and Cast Speed per 10 Devotion", statOrder = { 8996 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3808469650] = { "1% increased Minion Attack and Cast Speed per 10 Devotion" }, } }, + ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 8986 }, level = 1, group = "MinionAccuracyRatingPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2830135449] = { "Minions have +60 to Accuracy Rating per 10 Devotion" }, } }, + ["AddedManaRegenerationPerDevotion"] = { affix = "", "Regenerate 0.6 Mana per Second per 10 Devotion", statOrder = { 8002 }, level = 1, group = "AddedManaRegenerationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2042813020] = { "Regenerate 0.6 Mana per Second per 10 Devotion" }, } }, + ["ReducedManaCostPerDevotion"] = { affix = "", "1% reduced Mana Cost of Skills per 10 Devotion", statOrder = { 7970 }, level = 1, group = "ReducedManaCostPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3293275880] = { "1% reduced Mana Cost of Skills per 10 Devotion" }, } }, + ["AuraEffectPerDevotion"] = { affix = "", "1% increased effect of Non-Curse Auras per 10 Devotion", statOrder = { 9212 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2585926696] = { "1% increased effect of Non-Curse Auras per 10 Devotion" }, } }, + ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion", statOrder = { 9831 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2398058229] = { "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion" }, } }, + ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 7823 }, level = 50, group = "NovaSpellsAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [200113086] = { "Nova Spells have 20% less Area of Effect" }, } }, + ["RingAttackSpeedUnique__1"] = { affix = "", "20% less Attack Speed", statOrder = { 7821 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2418322751] = { "20% less Attack Speed" }, } }, ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 932 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "50% increased Duration. -1% to this value when used" }, } }, - ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Damage", "1% increased Critical Hit Chance per 4% Quality", statOrder = { 625, 7647 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHashes = { [3103053611] = { "1% increased Critical Hit Chance per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 625, 7602 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2421363283] = { "Grants 1% increased Accuracy per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 625, 7623 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3331111689] = { "1% increased Attack Speed per 8% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Damage", "+1 Weapon Range per 10% Quality", statOrder = { 625, 7925 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2967267655] = { "+1 Weapon Range per 10% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 625, 7697 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1482025771] = { "Grants 1% increased Elemental Damage per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 625, 7619 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [334333797] = { "Grants 1% increased Area of Effect per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4548 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [396113830] = { "Projectiles from Attacks Fork" }, } }, - ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks Fork an additional time", statOrder = { 4549 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1643324992] = { "Projectiles from Attacks Fork an additional time" }, } }, - ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10658 }, level = 1, group = "MinionLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } }, + ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Damage", "1% increased Critical Hit Chance per 4% Quality", statOrder = { 625, 7643 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHashes = { [3103053611] = { "1% increased Critical Hit Chance per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 625, 7598 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2421363283] = { "Grants 1% increased Accuracy per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 625, 7619 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3331111689] = { "1% increased Attack Speed per 8% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Damage", "+1 Weapon Range per 10% Quality", statOrder = { 625, 7921 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2967267655] = { "+1 Weapon Range per 10% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 625, 7693 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1482025771] = { "Grants 1% increased Elemental Damage per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 625, 7615 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [334333797] = { "Grants 1% increased Area of Effect per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4545 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [396113830] = { "Projectiles from Attacks Fork" }, } }, + ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks Fork an additional time", statOrder = { 4546 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1643324992] = { "Projectiles from Attacks Fork an additional time" }, } }, + ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10648 }, level = 1, group = "MinionLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } }, ["HungryLoopSupportedByTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trinity", statOrder = { 91, 280 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3221550523] = { "Has Consumed 1 Gem" }, [3111091501] = { "Socketed Gems are Supported by Level 20 Trinity" }, } }, ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 941, 1466 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, [549203380] = { "You and Nearby Allies have 30% increased Item Rarity" }, } }, - ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", statOrder = { 7758 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2471517399] = { "With at least 40 Strength in Radius, Combust is Disabled" }, } }, + ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", statOrder = { 7754 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2471517399] = { "With at least 40 Strength in Radius, Combust is Disabled" }, } }, ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken bypasses Energy Shield", statOrder = { 1457 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1552907959] = { "33% of Chaos Damage taken bypasses Energy Shield" }, } }, ["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Damage taken bypasses Energy Shield", statOrder = { 1456 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448633171] = { "33% of Damage taken bypasses Energy Shield" }, } }, - ["KillEnemyInstantlyExarchDominantUnique__1"] = { affix = "", "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", statOrder = { 7790 }, level = 77, group = "KillEnemyInstantlyExarchDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3768948090] = { "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant" }, } }, - ["MalignantMadnessCritEaterDominantUnique__1"] = { affix = "", "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7737 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1109900829] = { "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant" }, } }, + ["KillEnemyInstantlyExarchDominantUnique__1"] = { affix = "", "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", statOrder = { 7786 }, level = 77, group = "KillEnemyInstantlyExarchDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3768948090] = { "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant" }, } }, + ["MalignantMadnessCritEaterDominantUnique__1"] = { affix = "", "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7733 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1109900829] = { "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant" }, } }, ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 439 }, level = 1, group = "SocketedWarcryCooldownCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3784504781] = { "Socketed Warcry Skills have +1 Cooldown Use" }, } }, - ["TakePhysicalDamagePerWarcryExertingUnique__1"] = { affix = "", "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack", statOrder = { 9812, 9812.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615324731] = { "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack" }, } }, - ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Empowering them", statOrder = { 10402 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2023285759] = { "Skills deal (10-15)% more Damage for each Warcry Empowering them" }, } }, + ["TakePhysicalDamagePerWarcryExertingUnique__1"] = { affix = "", "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack", statOrder = { 9803, 9803.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615324731] = { "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack" }, } }, + ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Empowering them", statOrder = { 10393 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2023285759] = { "Skills deal (10-15)% more Damage for each Warcry Empowering them" }, } }, ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2614 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage from Hits Contributes to Chill Magnitude" }, } }, ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2617 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1705072014] = { "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you" }, } }, ["AllDamageTakenCanChillUnique__2"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2617 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1705072014] = { "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you" }, } }, - ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4275 }, level = 20, group = "AllDamageTakenCanIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1405089557] = { "All Damage Taken from Hits can Ignite you" }, } }, - ["ChillHitsCauseShatteringUnique__1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5657 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, - ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 6338 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, - ["CasterOffHandNearbyEnemiesAreCoveredInAshImplicit___"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7674 }, level = 1, group = "LocalDisplayNearbyEnemiesAreCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746994389] = { "Nearby Enemies are Covered in Ash" }, } }, - ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels", statOrder = { 7905, 7905.1 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [461663422] = { "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels" }, } }, - ["UniqueJewelSpecificSkillLevelBonus1"] = { affix = "", "+(1-3) to Level of all 0 Skills", statOrder = { 10412 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-3) to Level of all 0 Skills" }, } }, - ["UniqueJewelSpecificSkillLevelBonus2"] = { affix = "", "+(1-2) to Level of all 0 Skills", statOrder = { 10412 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-2) to Level of all 0 Skills" }, } }, + ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4272 }, level = 20, group = "AllDamageTakenCanIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1405089557] = { "All Damage Taken from Hits can Ignite you" }, } }, + ["ChillHitsCauseShatteringUnique__1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5653 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, + ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 6334 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, + ["CasterOffHandNearbyEnemiesAreCoveredInAshImplicit___"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7670 }, level = 1, group = "LocalDisplayNearbyEnemiesAreCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746994389] = { "Nearby Enemies are Covered in Ash" }, } }, + ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels", statOrder = { 7901, 7901.1 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [461663422] = { "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels" }, } }, + ["UniqueJewelSpecificSkillLevelBonus1"] = { affix = "", "+(1-3) to Level of all 0 Skills", statOrder = { 10403 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-3) to Level of all 0 Skills" }, } }, + ["UniqueJewelSpecificSkillLevelBonus2"] = { affix = "", "+(1-2) to Level of all 0 Skills", statOrder = { 10403 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-2) to Level of all 0 Skills" }, } }, ["UniqueReloadSpeed1"] = { affix = "", "(40-60)% reduced Reload Speed", statOrder = { 947 }, level = 65, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(40-60)% reduced Reload Speed" }, } }, ["UniqueReloadSpeed2"] = { affix = "", "(15-25)% increased Reload Speed", statOrder = { 947 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(15-25)% increased Reload Speed" }, } }, - ["UniqueLoadCrossbowBoltOnKillPercent1"] = { affix = "", "(10-20)% chance to load a bolt into all Crossbow skills on Kill", statOrder = { 5561 }, level = 65, group = "LoadCrossbowBoltOnKillPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3823990000] = { "(10-20)% chance to load a bolt into all Crossbow skills on Kill" }, } }, - ["UniqueSacrificeLifeForBolts1"] = { affix = "", "Sacrifice 300 Life to not consume the last bolt when firing", statOrder = { 5762 }, level = 65, group = "SacrificeLifeInsteadOfBolts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [76982026] = { "Sacrifice 300 Life to not consume the last bolt when firing" }, } }, + ["UniqueLoadCrossbowBoltOnKillPercent1"] = { affix = "", "(10-20)% chance to load a bolt into all Crossbow skills on Kill", statOrder = { 5557 }, level = 65, group = "LoadCrossbowBoltOnKillPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3823990000] = { "(10-20)% chance to load a bolt into all Crossbow skills on Kill" }, } }, + ["UniqueSacrificeLifeForBolts1"] = { affix = "", "Sacrifice 300 Life to not consume the last bolt when firing", statOrder = { 5758 }, level = 65, group = "SacrificeLifeInsteadOfBolts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [76982026] = { "Sacrifice 300 Life to not consume the last bolt when firing" }, } }, ["UniqueLifeLeechLocal4"] = { affix = "", "Leeches (5-10)% of Physical Damage as Life", statOrder = { 1039 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-10)% of Physical Damage as Life" }, } }, ["UniqueLocalIncreasedPhysicalDamagePercent15"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 830 }, level = 65, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(250-300)% increased Physical Damage" }, } }, ["UniqueIncreasedAttackSpeed12"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 946 }, level = 65, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["UniquePerandusArrows1"] = { affix = "", "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", statOrder = { 6249 }, level = 83, group = "PerandusArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3891922348] = { "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow" }, } }, + ["UniquePerandusArrows1"] = { affix = "", "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", statOrder = { 6245 }, level = 83, group = "PerandusArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3891922348] = { "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow" }, } }, ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2902 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(20-30)% chance to Poison on Hit with Attacks" }, } }, - ["AbyssalWastingOnHit"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4127 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646093132] = { "Inflict Abyssal Wasting on Hit" }, } }, + ["AbyssalWastingOnHit"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4124 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646093132] = { "Inflict Abyssal Wasting on Hit" }, } }, ["TokenOfPassageReducedPresenceUnique_1"] = { affix = "", "(20-30)% reduced Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(20-30)% reduced Presence Area of Effect" }, } }, ["TokenOfPassageReducedLightUnique_1"] = { affix = "", "(20-30)% reduced Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% reduced Light Radius" }, } }, ["PassageUniqueAmanamuHybridArmourAndArmourElemental"] = { affix = "", "(30-40)% increased Armour", "+(20-30)% of Armour also applies to Elemental Damage", statOrder = { 882, 1027 }, level = 1, group = "UniqueHybridArmourAndArmourElemental", weightKey = { }, weightVal = { }, modTags = { "defences", "physical", "elemental" }, tradeHashes = { [3362812763] = { "+(20-30)% of Armour also applies to Elemental Damage" }, [2866361420] = { "(30-40)% increased Armour" }, } }, ["PassageUniqueAmanamuHybridStrengthPercentGainAsFire"] = { affix = "", "Gain (8-12)% of Damage as Extra Fire Damage", "(4-6)% increased Strength", statOrder = { 863, 999 }, level = 1, group = "UniqueHybridStrengthPercentGainAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, [3015669065] = { "Gain (8-12)% of Damage as Extra Fire Damage" }, } }, ["PassageUniqueKurgalHybridManaPercentTakenBeforeLife"] = { affix = "", "(5-10)% increased maximum Mana", "(10-14)% of Damage is taken from Mana before Life", statOrder = { 894, 2472 }, level = 1, group = "UniqueHybridManaPercentTakenBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [458438597] = { "(10-14)% of Damage is taken from Mana before Life" }, [2748665614] = { "(5-10)% increased maximum Mana" }, } }, ["PassageUniqueKurgalHybridEnergyShieldAndDelay"] = { affix = "", "(30-40)% increased maximum Energy Shield", "(15-25)% faster start of Energy Shield Recharge", statOrder = { 886, 1033 }, level = 1, group = "UniqueHybridEnergyShieldAndDelay", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1782086450] = { "(15-25)% faster start of Energy Shield Recharge" }, [2482852589] = { "(30-40)% increased maximum Energy Shield" }, } }, - ["PassageUniqueKurgalHybridCastSpeedAndArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 6745, 10573 }, level = 1, group = "UniqueHybridCastSpeedAndArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "caster", "minion" }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, + ["PassageUniqueKurgalHybridCastSpeedAndArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 6741, 10563 }, level = 1, group = "UniqueHybridCastSpeedAndArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "caster", "minion" }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, ["PassageUniqueKurgalHybridIntelligencePercentGainAsCold"] = { affix = "", "Gain (8-12)% of Damage as Extra Cold Damage", "(4-6)% increased Intelligence", statOrder = { 866, 1001 }, level = 1, group = "UniqueHybridIntelligencePercentGainAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, [2505884597] = { "Gain (8-12)% of Damage as Extra Cold Damage" }, } }, - ["PassageUniqueUlamanHybridLifeRecoverLifeOnDeath"] = { affix = "", "(5-10)% increased maximum Life", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 889, 9686 }, level = 1, group = "UniqueHybridLifeRecoverLifeOnDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3503117295] = { "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence" }, [983749596] = { "(5-10)% increased maximum Life" }, } }, + ["PassageUniqueUlamanHybridLifeRecoverLifeOnDeath"] = { affix = "", "(5-10)% increased maximum Life", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 889, 9677 }, level = 1, group = "UniqueHybridLifeRecoverLifeOnDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3503117295] = { "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence" }, [983749596] = { "(5-10)% increased maximum Life" }, } }, ["PassageUniqueUlamanHybridEvasionAndDeflection"] = { affix = "", "(30-40)% increased Evasion Rating", "Gain Deflection Rating equal to (10-20)% of Evasion Rating", statOrder = { 884, 1028 }, level = 1, group = "UniqueHybridEvasionAndDeflection", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2106365538] = { "(30-40)% increased Evasion Rating" }, [3033371881] = { "Gain Deflection Rating equal to (10-20)% of Evasion Rating" }, } }, - ["PassageUniqueUlamanHybridChainTerrainAndFork"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", "Projectiles have (15-20)% chance to Chain an additional time from terrain", statOrder = { 5515, 9543 }, level = 1, group = "UniqueHybridChainTerrainAndFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3003542304] = { "Projectiles have (40-50)% chance for an additional Projectile when Forking" }, [4081947835] = { "Projectiles have (15-20)% chance to Chain an additional time from terrain" }, } }, - ["PassageUniqueUlamanHybridAttackSpeedAndOnslaughtOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 6824, 10572 }, level = 1, group = "UniqueHybridAttackSpeedAndOnslaughtOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, + ["PassageUniqueUlamanHybridChainTerrainAndFork"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", "Projectiles have (15-20)% chance to Chain an additional time from terrain", statOrder = { 5511, 9534 }, level = 1, group = "UniqueHybridChainTerrainAndFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3003542304] = { "Projectiles have (40-50)% chance for an additional Projectile when Forking" }, [4081947835] = { "Projectiles have (15-20)% chance to Chain an additional time from terrain" }, } }, + ["PassageUniqueUlamanHybridAttackSpeedAndOnslaughtOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 6820, 10562 }, level = 1, group = "UniqueHybridAttackSpeedAndOnslaughtOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, ["PassageUniqueUlamanHybridDexterityAndGainAsLightning"] = { affix = "", "Gain (8-12)% of Damage as Extra Lightning Damage", "(4-6)% increased Dexterity", statOrder = { 869, 1000 }, level = 1, group = "UniqueHybridDexterityAndGainAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, [3278136794] = { "Gain (8-12)% of Damage as Extra Lightning Damage" }, } }, - ["PassageUniqueAmanamuHybridSlowAndSlowOnSelf"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4691, 4747 }, level = 1, group = "UniqueHybridSlowAndSlowOnSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(10-20)% reduced Slowing Potency of Debuffs on You" }, [3650992555] = { "Debuffs you inflict have (12-20)% increased Slow Magnitude" }, } }, - ["PassageUniqueAmanamuSpiritEfficiency"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, + ["PassageUniqueAmanamuHybridSlowAndSlowOnSelf"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4687, 4743 }, level = 1, group = "UniqueHybridSlowAndSlowOnSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(10-20)% reduced Slowing Potency of Debuffs on You" }, [3650992555] = { "Debuffs you inflict have (12-20)% increased Slow Magnitude" }, } }, + ["PassageUniqueAmanamuSpiritEfficiency"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 4751 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, ["PassageUniqueAmanamuIncreasedSpiritPercent"] = { affix = "", "(6-10)% increased Spirit", statOrder = { 1417 }, level = 1, group = "MaximumSpiritPercentage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1416406066] = { "(6-10)% increased Spirit" }, } }, ["PassageUniqueAmanamuIncreasedArmourPercent"] = { affix = "", "(30-40)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(30-40)% increased Armour" }, } }, - ["PassageUniqueAmanamuYouAndAllyCooldownPresence"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10575 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate" }, } }, - ["PassageUniqueAmanamuYouAndAllyChaosResistance"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 10574 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(17-23)% to Chaos Resistance" }, } }, - ["PassageUniqueAmanamuReducedMovementPenalty"] = { affix = "", "(5-8)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9154 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-8)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["PassageUniqueAmanamuYouAndAllyCooldownPresence"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10565 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate" }, } }, + ["PassageUniqueAmanamuYouAndAllyChaosResistance"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 10564 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(17-23)% to Chaos Resistance" }, } }, + ["PassageUniqueAmanamuReducedMovementPenalty"] = { affix = "", "(5-8)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9145 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-8)% reduced Movement Speed Penalty from using Skills while moving" }, } }, ["PassageUniqueAmanamuMaxEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["PassageUniqueAmanamuThornsFromConsumingEndurance"] = { affix = "", "(80-100)% increased Thorns damage if you've consumed an Endurance Charge Recently", statOrder = { 10250 }, level = 1, group = "ThornsFromConsumingEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [806994543] = { "(80-100)% increased Thorns damage if you've consumed an Endurance Charge Recently" }, } }, + ["PassageUniqueAmanamuThornsFromConsumingEndurance"] = { affix = "", "(80-100)% increased Thorns damage if you've consumed an Endurance Charge Recently", statOrder = { 10241 }, level = 1, group = "ThornsFromConsumingEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [806994543] = { "(80-100)% increased Thorns damage if you've consumed an Endurance Charge Recently" }, } }, ["PassageUniqueAmanamuReducedIncomingCriticalBonus"] = { affix = "", "Hits against you have (20-30)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (20-30)% reduced Critical Damage Bonus" }, } }, - ["PassageUniqueAmanamuIncreasedDebuffSlowMagnitude"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", statOrder = { 4691 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (12-20)% increased Slow Magnitude" }, } }, - ["PassageUniqueAmanamuReducedIncomingDebuffSlowPotency"] = { affix = "", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(10-20)% reduced Slowing Potency of Debuffs on You" }, } }, + ["PassageUniqueAmanamuIncreasedDebuffSlowMagnitude"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", statOrder = { 4687 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (12-20)% increased Slow Magnitude" }, } }, + ["PassageUniqueAmanamuReducedIncomingDebuffSlowPotency"] = { affix = "", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4743 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(10-20)% reduced Slowing Potency of Debuffs on You" }, } }, ["PassageUniqueAmanamuSkillEffectDuration"] = { affix = "", "(10-16)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-16)% increased Skill Effect Duration" }, } }, - ["PassageUniqueAmanamuFasterCursedActivation"] = { affix = "", "(10-20)% faster Curse Activation", statOrder = { 5924 }, level = 1, group = "CurseDelay", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, + ["PassageUniqueAmanamuFasterCursedActivation"] = { affix = "", "(10-20)% faster Curse Activation", statOrder = { 5920 }, level = 1, group = "CurseDelay", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, ["PassageUniqueAmanamuIgniteMagnitude"] = { affix = "", "(30-40)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(30-40)% increased Ignite Magnitude" }, } }, ["PassageUniqueAmanamuIncreasedStrengthPercent"] = { affix = "", "(4-6)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, } }, ["PassageUniqueAmanamuIncreasedCurseAreaOfEffect"] = { affix = "", "(15-25)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(15-25)% increased Area of Effect of Curses" }, } }, ["PassageUniqueAmanamuDamageAsExtraFire"] = { affix = "", "Gain (8-12)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (8-12)% of Damage as Extra Fire Damage" }, } }, ["PassageUniqueAmanamuArmourAppliesToElementalDamage"] = { affix = "", "+(20-30)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(20-30)% of Armour also applies to Elemental Damage" }, } }, - ["PassageUniqueAmanamuAbyssalWastingReducesFireRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Fire Resistance", statOrder = { 4122 }, level = 1, group = "AbyssalWastingReducesFireRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2991563371] = { "Abyssal Wasting also applies {0:-d}% to Fire Resistance" }, } }, - ["PassageUniqueAmanamuAbyssalWastingIncreasedEffect"] = { affix = "", "(60-100)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4121 }, level = 1, group = "AbyssalWastingIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4043376133] = { "(60-100)% increased Magnitude of Abyssal Wasting you inflict" }, } }, - ["PassageUniqueAmanamuAbyssalWastingInfiniteDuration"] = { affix = "", "Abyssal Wasting you inflict has Infinite Duration", statOrder = { 4123 }, level = 1, group = "AbyssalWastingInfiniteDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1679776108] = { "Abyssal Wasting you inflict has Infinite Duration" }, } }, - ["PassageUniqueAmanamuFlatSpiritIfAtLeast200Strength"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 10057 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(20-25) to Spirit while you have at least 200 Strength" }, } }, - ["PassageUniqueKurgalPercentCastSpeedPerSpirit"] = { affix = "", "2% increased Cast Speed per 20 Spirit", statOrder = { 5333 }, level = 1, group = "PercentCastSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34174842] = { "2% increased Cast Speed per 20 Spirit" }, } }, + ["PassageUniqueAmanamuAbyssalWastingReducesFireRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Fire Resistance", statOrder = { 4119 }, level = 1, group = "AbyssalWastingReducesFireRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2991563371] = { "Abyssal Wasting also applies {0:-d}% to Fire Resistance" }, } }, + ["PassageUniqueAmanamuAbyssalWastingIncreasedEffect"] = { affix = "", "(60-100)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4118 }, level = 1, group = "AbyssalWastingIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4043376133] = { "(60-100)% increased Magnitude of Abyssal Wasting you inflict" }, } }, + ["PassageUniqueAmanamuAbyssalWastingInfiniteDuration"] = { affix = "", "Abyssal Wasting you inflict has Infinite Duration", statOrder = { 4120 }, level = 1, group = "AbyssalWastingInfiniteDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1679776108] = { "Abyssal Wasting you inflict has Infinite Duration" }, } }, + ["PassageUniqueAmanamuFlatSpiritIfAtLeast200Strength"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 10048 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(20-25) to Spirit while you have at least 200 Strength" }, } }, + ["PassageUniqueKurgalPercentCastSpeedPerSpirit"] = { affix = "", "2% increased Cast Speed per 20 Spirit", statOrder = { 5329 }, level = 1, group = "PercentCastSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34174842] = { "2% increased Cast Speed per 20 Spirit" }, } }, ["PassageUniqueKurgalMaximumManaPercent"] = { affix = "", "(5-10)% increased maximum Mana", statOrder = { 894 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-10)% increased maximum Mana" }, } }, ["PassageUniqueKurgalIncreasedEnergyShieldPercent"] = { affix = "", "(30-40)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(30-40)% increased maximum Energy Shield" }, } }, ["PassageUniqueKurgalDamageTakenFromManaBeforeLife"] = { affix = "", "(10-14)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-14)% of Damage is taken from Mana before Life" }, } }, - ["PassageUniqueKurgalManaRegenWhileSurrounded"] = { affix = "", "(40-60)% increased Mana Regeneration Rate while Surrounded", statOrder = { 8003 }, level = 1, group = "ManaRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1895238057] = { "(40-60)% increased Mana Regeneration Rate while Surrounded" }, } }, - ["PassageUniqueKurgalYouAndAllyCastSpeed"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 10573 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, } }, - ["PassageUniqueKurgalEnemiesDyingInPresenceRecoverMana"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9688 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence" }, } }, - ["PassageUniqueKurgalGainArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6745 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, + ["PassageUniqueKurgalManaRegenWhileSurrounded"] = { affix = "", "(40-60)% increased Mana Regeneration Rate while Surrounded", statOrder = { 7999 }, level = 1, group = "ManaRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1895238057] = { "(40-60)% increased Mana Regeneration Rate while Surrounded" }, } }, + ["PassageUniqueKurgalYouAndAllyCastSpeed"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 10563 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, } }, + ["PassageUniqueKurgalEnemiesDyingInPresenceRecoverMana"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9679 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence" }, } }, + ["PassageUniqueKurgalGainArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6741 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, ["PassageUniqueKurgalMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["PassageUniqueKurgalSkillCostEfficiencyFromConsumingPower"] = { affix = "", "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", statOrder = { 9897 }, level = 1, group = "SkillCostEfficiencyFromConsumingPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2369495153] = { "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently" }, } }, + ["PassageUniqueKurgalSkillCostEfficiencyFromConsumingPower"] = { affix = "", "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", statOrder = { 9888 }, level = 1, group = "SkillCostEfficiencyFromConsumingPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2369495153] = { "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently" }, } }, ["PassageUniqueKurgalCriticalStrikeChancePercent"] = { affix = "", "(25-40)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-40)% increased Critical Hit Chance" }, } }, - ["PassageUniqueKurgalMetaSkillsGenerateIncreasedEnergy"] = { affix = "", "Meta Skills gain (10-16)% increased Energy", statOrder = { 6410 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (10-16)% increased Energy" }, } }, - ["PassageUniqueKurgalTriggeredSkillsDealIncreasedDamage"] = { affix = "", "Triggered Spells deal (25-40)% increased Spell Damage", statOrder = { 10323 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (25-40)% increased Spell Damage" }, } }, - ["PassageUniqueKurgalChillMagnitude"] = { affix = "", "(30-40)% increased Magnitude of Chill you inflict", statOrder = { 5647 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(30-40)% increased Magnitude of Chill you inflict" }, } }, + ["PassageUniqueKurgalMetaSkillsGenerateIncreasedEnergy"] = { affix = "", "Meta Skills gain (10-16)% increased Energy", statOrder = { 6406 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (10-16)% increased Energy" }, } }, + ["PassageUniqueKurgalTriggeredSkillsDealIncreasedDamage"] = { affix = "", "Triggered Spells deal (25-40)% increased Spell Damage", statOrder = { 10314 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (25-40)% increased Spell Damage" }, } }, + ["PassageUniqueKurgalChillMagnitude"] = { affix = "", "(30-40)% increased Magnitude of Chill you inflict", statOrder = { 5643 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(30-40)% increased Magnitude of Chill you inflict" }, } }, ["PassageUniqueKurgalIncreasedIntelligencePercent"] = { affix = "", "(4-6)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, } }, - ["PassageUniqueKurgalIncreasedSpellAreaOfEffect"] = { affix = "", "Spell Skills have (12-18)% increased Area of Effect", statOrder = { 9991 }, level = 1, group = "SpellAreaOfEffectPercent", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (12-18)% increased Area of Effect" }, } }, + ["PassageUniqueKurgalIncreasedSpellAreaOfEffect"] = { affix = "", "Spell Skills have (12-18)% increased Area of Effect", statOrder = { 9982 }, level = 1, group = "SpellAreaOfEffectPercent", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (12-18)% increased Area of Effect" }, } }, ["PassageUniqueKurgalDamageAsExtraCold"] = { affix = "", "Gain (8-12)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (8-12)% of Damage as Extra Cold Damage" }, } }, ["PassageUniqueKurgalFasterStartOfEnergyShieldRecharge"] = { affix = "", "(15-25)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(15-25)% faster start of Energy Shield Recharge" }, } }, - ["PassageUniqueKurgalAbyssalWastingReducesColdRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Cold Resistance", statOrder = { 4120 }, level = 1, group = "AbyssalWastingReducesColdRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3979226081] = { "Abyssal Wasting also applies {0:-d}% to Cold Resistance" }, } }, - ["PassageUniqueKurgalAbyssalWastingInstantManaLeechPercent"] = { affix = "", "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4125 }, level = 1, group = "AbyssalWastingInstantManaLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [546201303] = { "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant" }, } }, - ["PassageUniqueKurgalAbyssalWastingAccuracyRatingPlusPercent"] = { affix = "", "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting", statOrder = { 4132 }, level = 1, group = "AbyssalWastingAccuracyRatingPlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4255854327] = { "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting" }, } }, - ["PassageUniqueKurgalFlatSpiritIfAtLeast200Intelligence"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 10056 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(20-25) to Spirit while you have at least 200 Intelligence" }, } }, - ["PassageUniqueUlamanPercentAttackSpeedPerSpirit"] = { affix = "", "1% increased Attack Speed per 20 Spirit", statOrder = { 4553 }, level = 1, group = "PercentAttackSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [324579579] = { "1% increased Attack Speed per 20 Spirit" }, } }, + ["PassageUniqueKurgalAbyssalWastingReducesColdRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Cold Resistance", statOrder = { 4117 }, level = 1, group = "AbyssalWastingReducesColdRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3979226081] = { "Abyssal Wasting also applies {0:-d}% to Cold Resistance" }, } }, + ["PassageUniqueKurgalAbyssalWastingInstantManaLeechPercent"] = { affix = "", "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4122 }, level = 1, group = "AbyssalWastingInstantManaLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [546201303] = { "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant" }, } }, + ["PassageUniqueKurgalAbyssalWastingAccuracyRatingPlusPercent"] = { affix = "", "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting", statOrder = { 4129 }, level = 1, group = "AbyssalWastingAccuracyRatingPlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4255854327] = { "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting" }, } }, + ["PassageUniqueKurgalFlatSpiritIfAtLeast200Intelligence"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 10047 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(20-25) to Spirit while you have at least 200 Intelligence" }, } }, + ["PassageUniqueUlamanPercentAttackSpeedPerSpirit"] = { affix = "", "1% increased Attack Speed per 20 Spirit", statOrder = { 4550 }, level = 1, group = "PercentAttackSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [324579579] = { "1% increased Attack Speed per 20 Spirit" }, } }, ["PassageUniqueUlamanMaximumLifePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, ["PassageUniqueUlamanIncreasedEvasionPercent"] = { affix = "", "(30-40)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(30-40)% increased Evasion Rating" }, } }, - ["PassageUniqueUlamanProjectileChanceToChainTerrain"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-16)% chance to Chain an additional time from terrain" }, } }, - ["PassageUniqueUlamanAdditionalProjectileChanceWhileForking"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", statOrder = { 5515 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (40-50)% chance for an additional Projectile when Forking" }, } }, - ["PassageUniqueUlamanLifeRegenWhileSurrounded"] = { affix = "", "(30-40)% increased Life Regeneration rate while Surrounded", statOrder = { 7505 }, level = 1, group = "LifeRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3084372306] = { "(30-40)% increased Life Regeneration rate while Surrounded" }, } }, - ["PassageUniqueUlamanYouAndAllyIncreasedAttackSpeed"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 10572 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, - ["PassageUniqueUlamanYouAndAllyAccuracyRatingPercent"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 10570 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (20-28)% increased Accuracy Rating" }, } }, - ["PassageUniqueUlamanEnemiesDyingInPresenceRecoverLife"] = { affix = "", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9686 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence" }, } }, - ["PassageUniqueUlamanGainOnslaughtSurgeOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6824 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, } }, + ["PassageUniqueUlamanProjectileChanceToChainTerrain"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 9534 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-16)% chance to Chain an additional time from terrain" }, } }, + ["PassageUniqueUlamanAdditionalProjectileChanceWhileForking"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", statOrder = { 5511 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (40-50)% chance for an additional Projectile when Forking" }, } }, + ["PassageUniqueUlamanLifeRegenWhileSurrounded"] = { affix = "", "(30-40)% increased Life Regeneration rate while Surrounded", statOrder = { 7501 }, level = 1, group = "LifeRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3084372306] = { "(30-40)% increased Life Regeneration rate while Surrounded" }, } }, + ["PassageUniqueUlamanYouAndAllyIncreasedAttackSpeed"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 10562 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, + ["PassageUniqueUlamanYouAndAllyAccuracyRatingPercent"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 10560 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (20-28)% increased Accuracy Rating" }, } }, + ["PassageUniqueUlamanEnemiesDyingInPresenceRecoverLife"] = { affix = "", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9677 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence" }, } }, + ["PassageUniqueUlamanGainOnslaughtSurgeOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6820 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, } }, ["PassageUniqueUlamanMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["PassageUniqueUlamanLifeLeechAmountFromConsumingFrenzy"] = { affix = "", "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", statOrder = { 7452 }, level = 1, group = "LifeLeechAmountFromConsumingFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3843204146] = { "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently" }, } }, + ["PassageUniqueUlamanLifeLeechAmountFromConsumingFrenzy"] = { affix = "", "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", statOrder = { 7448 }, level = 1, group = "LifeLeechAmountFromConsumingFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3843204146] = { "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently" }, } }, ["PassageUniqueUlamanCriticalDamageBonus"] = { affix = "", "(15-25)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-25)% increased Critical Damage Bonus" }, } }, - ["PassageUniqueUlamanShockMagnitude"] = { affix = "", "(30-40)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(30-40)% increased Magnitude of Shock you inflict" }, } }, + ["PassageUniqueUlamanShockMagnitude"] = { affix = "", "(30-40)% increased Magnitude of Shock you inflict", statOrder = { 9836 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(30-40)% increased Magnitude of Shock you inflict" }, } }, ["PassageUniqueUlamanIncreasedDexterityPercent"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, } }, - ["PassageUniqueUlamanIncreasedAttackAreaOfEffect"] = { affix = "", "(12-18)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(12-18)% increased Area of Effect for Attacks" }, } }, + ["PassageUniqueUlamanIncreasedAttackAreaOfEffect"] = { affix = "", "(12-18)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(12-18)% increased Area of Effect for Attacks" }, } }, ["PassageUniqueUlamanDamageAsExtraLightning"] = { affix = "", "Gain (8-12)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (8-12)% of Damage as Extra Lightning Damage" }, } }, ["PassageUniqueUlamanEvasionAppliesToDeflectRating"] = { affix = "", "Gain Deflection Rating equal to (10-20)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (10-20)% of Evasion Rating" }, } }, - ["PassageUniqueUlamanAbyssalWastingReducesLightningRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Lightning Resistance", statOrder = { 4126 }, level = 1, group = "AbyssalWastingReducesLightningRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1726353460] = { "Abyssal Wasting also applies {0:-d}% to Lightning Resistance" }, } }, - ["PassageUniqueUlamanAbyssalWastingInstantLifeLeechPercent"] = { affix = "", "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4124 }, level = 1, group = "AbyssalWastingInstantLifeLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3658708511] = { "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant" }, } }, - ["PassageUniqueUlamanAbyssalWastingAilmentChancePlusPercent"] = { affix = "", "(40-50)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", statOrder = { 4252 }, level = 1, group = "AbyssalWastingAilmentChancePlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2760643568] = { "(40-50)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting" }, } }, - ["PassageUniqueUlamanFlatSpiritIfAtLeast200Dexterity"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 10055 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(20-25) to Spirit while you have at least 200 Dexterity" }, } }, - ["PassageUniqueAmanamuAbyssalWastingPreventsCrits"] = { affix = "", "Abyssal Wasting you inflict also prevents targets from dealing Critical Hits", statOrder = { 4119 }, level = 1, group = "UniqueAbyssalWastingPreventsCrits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1986082444] = { "Abyssal Wasting you inflict also prevents targets from dealing Critical Hits" }, } }, - ["PassageUniqueKurgalAbyssalWastingPreventsEleAilments"] = { affix = "", "Abyssal Wasting you inflict also prevents targets from inflicting Elemental Ailments", statOrder = { 4118 }, level = 1, group = "UniqueAbyssalWastingPreventsEleAilments", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [4149923257] = { "Abyssal Wasting you inflict also prevents targets from inflicting Elemental Ailments" }, } }, - ["PassageUniqueKurgalAbyssalWastingDebilitates"] = { affix = "", "Targets affected by Abyssal Wasting you inflict are Debilitated", statOrder = { 4116 }, level = 1, group = "UniqueAbyssalWastingDebilitates", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2668499289] = { "Targets affected by Abyssal Wasting you inflict are Debilitated" }, } }, - ["PassageUniqueAmanamuAbyssalWastingHinders"] = { affix = "", "Targets affected by Abyssal Wasting you inflict are Hindered", statOrder = { 4117 }, level = 1, group = "UniqueAbyssalWastingHinders", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4097102799] = { "Targets affected by Abyssal Wasting you inflict are Hindered" }, } }, - ["PassageUniqueUlamanAbyssalWastingBlinds"] = { affix = "", "Targets affected by Abyssal Wasting you inflict are Blinded", statOrder = { 4115 }, level = 1, group = "UniqueAbyssalWastingBlinds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3963171183] = { "Targets affected by Abyssal Wasting you inflict are Blinded" }, } }, - ["PassageUniqueKurgalAbyssalWastingPhysExplode"] = { affix = "", "Abyssal Wasting you inflict also gives targets 10% chance to explode on death, dealing a tenth of their life as Physical Damage", statOrder = { 6340 }, level = 1, group = "UniqueAbyssalWastingPhysExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3134931479] = { "Abyssal Wasting you inflict also gives targets 10% chance to explode on death, dealing a tenth of their life as Physical Damage" }, } }, - ["PassageUniqueUlamanAbyssalWastingImmobilisationBuildup"] = { affix = "", "(30-40)% increased Immobilisation buildup against targets affected by Abyssal Wasting", statOrder = { 7276 }, level = 1, group = "UniqueAbyssalWastingImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3893409915] = { "(30-40)% increased Immobilisation buildup against targets affected by Abyssal Wasting" }, } }, - ["PassageUniqueKurgalAbyssalWastingWitherChance"] = { affix = "", "(5-10)% chance to inflict Withered with Hits against targets affected by Abyssal Wasting", statOrder = { 5557 }, level = 1, group = "UniqueAbyssalWastingWitherChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2614251226] = { "(5-10)% chance to inflict Withered with Hits against targets affected by Abyssal Wasting" }, } }, - ["PassageUniqueAmanamuAbyssalWastingDoubledPower"] = { affix = "", "Targets affected by Abyssal Wasting in your Presence have double Power", statOrder = { 6368 }, level = 1, group = "UniqueAbyssalWastingDoubledPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1153919467] = { "Targets affected by Abyssal Wasting in your Presence have double Power" }, } }, - ["PassageUniqueKurgalAbyssalWastingReviveChance"] = { affix = "", "10% chance to revive one of your Persistent Minions when you kill an", " enemy affected by Abyssal Wasting", statOrder = { 6375, 6375.1 }, level = 1, group = "UniqueAbyssalWastingReviveChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [19819865] = { "10% chance to revive one of your Persistent Minions when you kill an", " enemy affected by Abyssal Wasting" }, } }, - ["PassageUniqueUlamanAbyssalWastingGrantsFlaskCharges"] = { affix = "", "Enemies you kill while they are affected by Abyssal Wasting", " grant 100% increased Flask Charges", statOrder = { 6371, 6371.1 }, level = 1, group = "UniqueAbyssalWastingGrantsFlaskCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2051332707] = { "Enemies you kill while they are affected by Abyssal Wasting", " grant 100% increased Flask Charges" }, } }, - ["PassageUniqueKurgalAbyssalWastingVolatility"] = { affix = "", "Gain 1 Volatility when you kill an enemy affected by Abyssal Wasting", statOrder = { 6373 }, level = 1, group = "UniqueAbyssalWastingVolatility", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2952939159] = { "Gain 1 Volatility when you kill an enemy affected by Abyssal Wasting" }, } }, - ["PassageUniqueAmanamuAbyssalWastingRage"] = { affix = "", "Gain 1 Rage when you kill an enemy affected by Abyssal Wasting", statOrder = { 6372 }, level = 1, group = "UniqueAbyssalWastingRage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2934385135] = { "Gain 1 Rage when you kill an enemy affected by Abyssal Wasting" }, } }, - ["PassageUniqueAmanamuAbyssalWastingOnslaughtChance"] = { affix = "", "(10-20)% chance to gain Onslaught for 3 seconds when you kill an", " enemy affected by Abyssal Wasting", statOrder = { 6374, 6374.1 }, level = 1, group = "UniqueAbyssalWastingOnslaughtChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3451259830] = { "(10-20)% chance to gain Onslaught for 3 seconds when you kill an", " enemy affected by Abyssal Wasting" }, } }, + ["PassageUniqueUlamanAbyssalWastingReducesLightningRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Lightning Resistance", statOrder = { 4123 }, level = 1, group = "AbyssalWastingReducesLightningRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1726353460] = { "Abyssal Wasting also applies {0:-d}% to Lightning Resistance" }, } }, + ["PassageUniqueUlamanAbyssalWastingInstantLifeLeechPercent"] = { affix = "", "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4121 }, level = 1, group = "AbyssalWastingInstantLifeLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3658708511] = { "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant" }, } }, + ["PassageUniqueUlamanAbyssalWastingAilmentChancePlusPercent"] = { affix = "", "(40-50)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", statOrder = { 4249 }, level = 1, group = "AbyssalWastingAilmentChancePlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2760643568] = { "(40-50)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting" }, } }, + ["PassageUniqueUlamanFlatSpiritIfAtLeast200Dexterity"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 10046 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(20-25) to Spirit while you have at least 200 Dexterity" }, } }, + ["PassageUniqueAmanamuAbyssalWastingPreventsCrits"] = { affix = "", "Abyssal Wasting you inflict also prevents targets from dealing Critical Hits", statOrder = { 4116 }, level = 1, group = "UniqueAbyssalWastingPreventsCrits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1986082444] = { "Abyssal Wasting you inflict also prevents targets from dealing Critical Hits" }, } }, + ["PassageUniqueKurgalAbyssalWastingPreventsEleAilments"] = { affix = "", "Abyssal Wasting you inflict also prevents targets from inflicting Elemental Ailments", statOrder = { 4115 }, level = 1, group = "UniqueAbyssalWastingPreventsEleAilments", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [4149923257] = { "Abyssal Wasting you inflict also prevents targets from inflicting Elemental Ailments" }, } }, + ["PassageUniqueKurgalAbyssalWastingDebilitates"] = { affix = "", "Targets affected by Abyssal Wasting you inflict are Debilitated", statOrder = { 4113 }, level = 1, group = "UniqueAbyssalWastingDebilitates", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2668499289] = { "Targets affected by Abyssal Wasting you inflict are Debilitated" }, } }, + ["PassageUniqueAmanamuAbyssalWastingHinders"] = { affix = "", "Targets affected by Abyssal Wasting you inflict are Hindered", statOrder = { 4114 }, level = 1, group = "UniqueAbyssalWastingHinders", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4097102799] = { "Targets affected by Abyssal Wasting you inflict are Hindered" }, } }, + ["PassageUniqueUlamanAbyssalWastingBlinds"] = { affix = "", "Targets affected by Abyssal Wasting you inflict are Blinded", statOrder = { 4112 }, level = 1, group = "UniqueAbyssalWastingBlinds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3963171183] = { "Targets affected by Abyssal Wasting you inflict are Blinded" }, } }, + ["PassageUniqueKurgalAbyssalWastingPhysExplode"] = { affix = "", "Abyssal Wasting you inflict also gives targets 10% chance to explode on death, dealing a tenth of their life as Physical Damage", statOrder = { 6336 }, level = 1, group = "UniqueAbyssalWastingPhysExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3134931479] = { "Abyssal Wasting you inflict also gives targets 10% chance to explode on death, dealing a tenth of their life as Physical Damage" }, } }, + ["PassageUniqueUlamanAbyssalWastingImmobilisationBuildup"] = { affix = "", "(30-40)% increased Immobilisation buildup against targets affected by Abyssal Wasting", statOrder = { 7272 }, level = 1, group = "UniqueAbyssalWastingImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3893409915] = { "(30-40)% increased Immobilisation buildup against targets affected by Abyssal Wasting" }, } }, + ["PassageUniqueKurgalAbyssalWastingWitherChance"] = { affix = "", "(5-10)% chance to inflict Withered with Hits against targets affected by Abyssal Wasting", statOrder = { 5553 }, level = 1, group = "UniqueAbyssalWastingWitherChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2614251226] = { "(5-10)% chance to inflict Withered with Hits against targets affected by Abyssal Wasting" }, } }, + ["PassageUniqueKurgalAbyssalWastingReviveChance"] = { affix = "", "10% chance to revive one of your Persistent Minions when you kill an", " enemy affected by Abyssal Wasting", statOrder = { 6371, 6371.1 }, level = 1, group = "UniqueAbyssalWastingReviveChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [19819865] = { "10% chance to revive one of your Persistent Minions when you kill an", " enemy affected by Abyssal Wasting" }, } }, + ["PassageUniqueUlamanAbyssalWastingGrantsFlaskCharges"] = { affix = "", "Enemies you kill while they are affected by Abyssal Wasting", " grant 100% increased Flask Charges", statOrder = { 6367, 6367.1 }, level = 1, group = "UniqueAbyssalWastingGrantsFlaskCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2051332707] = { "Enemies you kill while they are affected by Abyssal Wasting", " grant 100% increased Flask Charges" }, } }, + ["PassageUniqueKurgalAbyssalWastingVolatility"] = { affix = "", "Gain 1 Volatility when you kill an enemy affected by Abyssal Wasting", statOrder = { 6369 }, level = 1, group = "UniqueAbyssalWastingVolatility", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2952939159] = { "Gain 1 Volatility when you kill an enemy affected by Abyssal Wasting" }, } }, + ["PassageUniqueAmanamuAbyssalWastingRage"] = { affix = "", "Gain 1 Rage when you kill an enemy affected by Abyssal Wasting", statOrder = { 6368 }, level = 1, group = "UniqueAbyssalWastingRage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2934385135] = { "Gain 1 Rage when you kill an enemy affected by Abyssal Wasting" }, } }, + ["PassageUniqueAmanamuAbyssalWastingOnslaughtChance"] = { affix = "", "(10-20)% chance to gain Onslaught for 3 seconds when you kill an", " enemy affected by Abyssal Wasting", statOrder = { 6370, 6370.1 }, level = 1, group = "UniqueAbyssalWastingOnslaughtChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3451259830] = { "(10-20)% chance to gain Onslaught for 3 seconds when you kill an", " enemy affected by Abyssal Wasting" }, } }, ["MaceImplicitHasXSockets"] = { affix = "", "Has 3 Sockets", statOrder = { 57 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 3 Sockets" }, } }, - ["LocalItemBenefitSocketableAsIfHelmetUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7743 }, level = 1, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1458343515] = { "This item gains bonuses from Socketed Items as though it was a Helmet" }, } }, - ["LocalItemBenefitSocketableAsIfBodyArmourUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7740 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, - ["LocalItemBenefitSocketableAsIfBodyArmourUnique__2"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7740 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, - ["LocalItemBenefitSocketableAsIfGlovesUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7742 }, level = 1, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1856590738] = { "This item gains bonuses from Socketed Items as though it was Gloves" }, } }, - ["LocalItemBenefitSocketableAsIfBootsUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7741 }, level = 1, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733960806] = { "This item gains bonuses from Socketed Items as though it was Boots" }, } }, - ["LocalItemBenefitSocketableAsIfShieldUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Shield", statOrder = { 7744 }, level = 1, group = "LocalItemBenefitSocketableAsIfShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2044810874] = { "This item gains bonuses from Socketed Items as though it was a Shield" }, } }, + ["LocalItemBenefitSocketableAsIfHelmetUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7739 }, level = 1, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1458343515] = { "This item gains bonuses from Socketed Items as though it was a Helmet" }, } }, + ["LocalItemBenefitSocketableAsIfBodyArmourUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7736 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, + ["LocalItemBenefitSocketableAsIfBodyArmourUnique__2"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7736 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, + ["LocalItemBenefitSocketableAsIfGlovesUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7738 }, level = 1, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1856590738] = { "This item gains bonuses from Socketed Items as though it was Gloves" }, } }, + ["LocalItemBenefitSocketableAsIfBootsUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7737 }, level = 1, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733960806] = { "This item gains bonuses from Socketed Items as though it was Boots" }, } }, + ["LocalItemBenefitSocketableAsIfShieldUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Shield", statOrder = { 7740 }, level = 1, group = "LocalItemBenefitSocketableAsIfShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2044810874] = { "This item gains bonuses from Socketed Items as though it was a Shield" }, } }, ["LocalSocketItemsEffectUnique__1"] = { affix = "", "(50-100)% increased effect of Socketed Augment Items", statOrder = { 178 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2081918629] = { "(50-100)% increased effect of Socketed Augment Items" }, } }, ["UniqueLocalSoulCoreAlsoGainBenefitsFromHelmet1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 80 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3773763721] = { "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet" }, } }, ["UniqueLocalSoulCoreAlsoGainBenefitsFromGloves1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 79 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3915618954] = { "This item gains bonuses from Socketed Soul Cores as though it was also Gloves" }, } }, @@ -4826,52 +4819,51 @@ return { ["UniqueAtziriSplendourArmourAndEnergyShield1"] = { affix = "", "(120-180)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-180)% increased Armour and Energy Shield" }, } }, ["UniqueAtziriSplendourEnergyShieldAndEvasion1"] = { affix = "", "(120-180)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-180)% increased Evasion and Energy Shield" }, } }, ["UniqueAtziriSplendourArmourEvasionAndEnergyShield1"] = { affix = "", "(80-120)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(80-120)% increased Armour, Evasion and Energy Shield" }, } }, - ["UniqueCorruptedSkillGemManaCostConvertedToLife1"] = { affix = "", "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs", statOrder = { 9922 }, level = 1, group = "CorruptedSkillGemLifeCostConvertedToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2035336006] = { "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs" }, } }, + ["UniqueCorruptedSkillGemManaCostConvertedToLife1"] = { affix = "", "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs", statOrder = { 9913 }, level = 1, group = "CorruptedSkillGemLifeCostConvertedToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2035336006] = { "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs" }, } }, ["UniqueOnlySocketSoulCores1"] = { affix = "", "Only Soul Cores can be Socketed in this item", statOrder = { 61 }, level = 1, group = "OnlySocketSoulCores", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [250458861] = { "Only Soul Cores can be Socketed in this item" }, } }, - ["EssenceDisplayDefences1"] = { affix = "", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences1Amulet"] = { affix = "", "(15-20)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(15-20)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences2"] = { affix = "", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences2Amulet"] = { affix = "", "(21-26)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(21-26)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences3"] = { affix = "", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences3Amulet"] = { affix = "", "(27-32)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(27-32)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences4"] = { affix = "", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences4Amulet"] = { affix = "", "(33-38)% increased Armour, Evasion and Energy Shield", statOrder = { 6478 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(33-38)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayAttributes1"] = { affix = "", "+(9-12) to Strength, Dexterity or Intelligence", statOrder = { 6476 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(9-12) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes2"] = { affix = "", "+(17-20) to Strength, Dexterity or Intelligence", statOrder = { 6476 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(17-20) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes3"] = { affix = "", "+(25-27) to Strength, Dexterity or Intelligence", statOrder = { 6476 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(25-27) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes4"] = { affix = "", "+(28-30) to Strength, Dexterity or Intelligence", statOrder = { 6476 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(28-30) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes5"] = { affix = "", "(7-10)% increased Strength, Dexterity or Intelligence", statOrder = { 6477 }, level = 1, group = "EssenceDisplayAttributesIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [415464603] = { "(7-10)% increased Strength, Dexterity or Intelligence" }, } }, - ["UniqueMinionsExplodeAsPercentPhysicalOnDeath1"] = { affix = "", "Minions explode on death, dealing (8-12)% of their maximum", "life as Physical Damage to enemies within 2 metres", statOrder = { 10416, 10416.1 }, level = 1, group = "UniqueMinionsExplodeOnDeathDealingPercentOfLifeAsPhys", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [4166288804] = { "Minions explode on death, dealing (8-12)% of their maximum", "life as Physical Damage to enemies within 2 metres" }, } }, + ["EssenceDisplayDefences1"] = { affix = "", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 6474 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences1Amulet"] = { affix = "", "(15-20)% increased Armour, Evasion and Energy Shield", statOrder = { 6474 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(15-20)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences2"] = { affix = "", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 6474 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences2Amulet"] = { affix = "", "(21-26)% increased Armour, Evasion and Energy Shield", statOrder = { 6474 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(21-26)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences3"] = { affix = "", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 6474 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences3Amulet"] = { affix = "", "(27-32)% increased Armour, Evasion and Energy Shield", statOrder = { 6474 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(27-32)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences4"] = { affix = "", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 6474 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences4Amulet"] = { affix = "", "(33-38)% increased Armour, Evasion and Energy Shield", statOrder = { 6474 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(33-38)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayAttributes1"] = { affix = "", "+(9-12) to Strength, Dexterity or Intelligence", statOrder = { 6472 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(9-12) to Strength, Dexterity or Intelligence" }, } }, + ["EssenceDisplayAttributes2"] = { affix = "", "+(17-20) to Strength, Dexterity or Intelligence", statOrder = { 6472 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(17-20) to Strength, Dexterity or Intelligence" }, } }, + ["EssenceDisplayAttributes3"] = { affix = "", "+(25-27) to Strength, Dexterity or Intelligence", statOrder = { 6472 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(25-27) to Strength, Dexterity or Intelligence" }, } }, + ["EssenceDisplayAttributes4"] = { affix = "", "+(28-30) to Strength, Dexterity or Intelligence", statOrder = { 6472 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(28-30) to Strength, Dexterity or Intelligence" }, } }, + ["EssenceDisplayAttributes5"] = { affix = "", "(7-10)% increased Strength, Dexterity or Intelligence", statOrder = { 6473 }, level = 1, group = "EssenceDisplayAttributesIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [415464603] = { "(7-10)% increased Strength, Dexterity or Intelligence" }, } }, ["UniqueFlaskMoreLife__1"] = { affix = "", "90% less Life Recovered", statOrder = { 629 }, level = 1, group = "FlaskMoreLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1726753705] = { "90% less Life Recovered" }, } }, ["UniqueFlaskEffectNotRemovedOnFullLife__1"] = { affix = "", "Effect is not removed when Unreserved Life is Filled", statOrder = { 638 }, level = 1, group = "FlaskEffectNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2932359713] = { "Effect is not removed when Unreserved Life is Filled" }, } }, ["UniqueFlaskEffectNotRemovedOnFullLife__2"] = { affix = "", "Effect is not removed when Unreserved Life is Filled", statOrder = { 638 }, level = 1, group = "FlaskEffectNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2932359713] = { "Effect is not removed when Unreserved Life is Filled" }, } }, ["UniqueDuringRageFlaskEffects__1"] = { affix = "", "(15-30)% of Damage taken during effect Recouped as Life", "Gain (3-5) Rage when Hit by an Enemy during effect", "No Inherent loss of Rage during effect", statOrder = { 744, 747, 758 }, level = 1, group = "DoubleMaximumRageFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3464644319] = { "No Inherent loss of Rage during effect" }, [555311715] = { "Gain (3-5) Rage when Hit by an Enemy during effect" }, [3598623697] = { "(15-30)% of Damage taken during effect Recouped as Life" }, } }, ["UniqueFlaskDuration__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 932 }, level = 1, group = "FlaskUtilityIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(25-50)% increased Duration" }, } }, - ["GhostflameOnHitUnique__1"] = { affix = "", "Attack Hits inflict Spectral Fire for 8 seconds", statOrder = { 6894 }, level = 1, group = "GhostflameOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [33298888] = { "Attack Hits inflict Spectral Fire for 8 seconds" }, } }, + ["GhostflameOnHitUnique__1"] = { affix = "", "Attack Hits inflict Spectral Fire for 8 seconds", statOrder = { 6890 }, level = 1, group = "GhostflameOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [33298888] = { "Attack Hits inflict Spectral Fire for 8 seconds" }, } }, ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 3848 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1195705739] = { "Attacks fire an additional Projectile" }, } }, - ["FireDamageArmourPenetrationUnique__1"] = { affix = "", "Break Armour equal to 15% of Fire Damage dealt", statOrder = { 4413 }, level = 1, group = "FireDamageArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2451508632] = { "Break Armour equal to 15% of Fire Damage dealt" }, } }, - ["FireDamagePercentPerArmourBreakUnique__1"] = { affix = "", "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken", statOrder = { 6562 }, level = 1, group = "FireDamagePercentPerArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1325331627] = { "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken" }, } }, - ["UniqueTwoHandedWeaponLightningStunMultiplier1"] = { affix = "", "(50-100)% more Stun Buildup with Lightning Damage", statOrder = { 10430 }, level = 1, group = "UniqueTwoHandedWeaponLightningStunMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2029147356] = { "(50-100)% more Stun Buildup with Lightning Damage" }, } }, + ["FireDamageArmourPenetrationUnique__1"] = { affix = "", "Break Armour equal to 15% of Fire Damage dealt", statOrder = { 4410 }, level = 1, group = "FireDamageArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2451508632] = { "Break Armour equal to 15% of Fire Damage dealt" }, } }, + ["FireDamagePercentPerArmourBreakUnique__1"] = { affix = "", "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken", statOrder = { 6558 }, level = 1, group = "FireDamagePercentPerArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1325331627] = { "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken" }, } }, + ["UniqueTwoHandedWeaponLightningStunMultiplier1"] = { affix = "", "(50-100)% more Stun Buildup with Lightning Damage", statOrder = { 10420 }, level = 1, group = "UniqueTwoHandedWeaponLightningStunMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2029147356] = { "(50-100)% more Stun Buildup with Lightning Damage" }, } }, ["UniqueOnlySocketRunes1"] = { affix = "", "Only Runes can be Socketed in this item", statOrder = { 60 }, level = 1, group = "OnlySocketRunes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [326412910] = { "Only Runes can be Socketed in this item" }, } }, ["UniqueLocalIncreasedRuneEffect1"] = { affix = "", "200% increased effect of Socketed Runes", statOrder = { 176 }, level = 1, group = "LocalIncreasedRuneEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [704409219] = { "200% increased effect of Socketed Runes" }, } }, - ["UniqueDamageFromDeflectedHitsTakenFromCompanion1"] = { affix = "", "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", statOrder = { 5732 }, level = 1, group = "DeflectedDamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3918757604] = { "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you" }, } }, + ["UniqueDamageFromDeflectedHitsTakenFromCompanion1"] = { affix = "", "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", statOrder = { 5728 }, level = 1, group = "DeflectedDamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3918757604] = { "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you" }, } }, ["UniqueDeflectionRatingPerMissingEnergyShield1"] = { affix = "", "+(70-100) to Deflection Rating per 50 missing Energy Shield", statOrder = { 10 }, level = 1, group = "FlatDeflectionRatingPer50MissingEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1207006772] = { "+(70-100) to Deflection Rating per 50 missing Energy Shield" }, } }, - ["UniqueUnlimitedCompanionsOfDifferentTypes1"] = { affix = "", "You can have any number of Companions of different types", statOrder = { 10667 }, level = 78, group = "UnlimitedDifferentCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [603573028] = { "You can have any number of Companions of different types" }, } }, + ["UniqueUnlimitedCompanionsOfDifferentTypes1"] = { affix = "", "You can have any number of Companions of different types", statOrder = { 10657 }, level = 78, group = "UnlimitedDifferentCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [603573028] = { "You can have any number of Companions of different types" }, } }, ["UniqueCompanionDamageAgainstMarkedTargets1"] = { affix = "", "Companions deal (50-100)% increased damage to your Marked targets", statOrder = { 1724 }, level = 78, group = "CompanionDamageAgainstMarkedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1067622524] = { "Companions deal (50-100)% increased damage to your Marked targets" }, } }, - ["UniqueRunicBindingOnSpellHit1"] = { affix = "", "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential", statOrder = { 6854, 6854.1 }, level = 1, group = "GainRunicBindingOnSpellHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3492740640] = { "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential" }, } }, + ["UniqueRunicBindingOnSpellHit1"] = { affix = "", "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential", statOrder = { 6850, 6850.1 }, level = 1, group = "GainRunicBindingOnSpellHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3492740640] = { "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential" }, } }, ["UniqueHitDamageBypassesEnergyShieldWhileBelowHalfEnergyShield1"] = { affix = "", "(15-25)% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", statOrder = { 1459 }, level = 1, group = "ESBypassWhileBelowHalfES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1311130924] = { "(15-25)% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half" }, } }, ["LocalAlwaysHeavyStunOnFullLifeUnique__1"] = { affix = "", "Heavy Stuns Enemies that are on Full Life", statOrder = { 1136 }, level = 76, group = "LocalAlwaysHeavyStunOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [668076381] = { "Heavy Stuns Enemies that are on Full Life" }, } }, - ["LocalDisableRareModOnHitUnique__1"] = { affix = "", "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers", statOrder = { 7660 }, level = 1, group = "LocalDisableRareModOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2662365575] = { "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers" }, } }, - ["TheFlawedEdictUnique__1"] = { affix = "", "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod", statOrder = { 7696 }, level = 1, group = "TheFlawedEdict", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3607612750] = { "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod" }, } }, + ["LocalDisableRareModOnHitUnique__1"] = { affix = "", "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers", statOrder = { 7656 }, level = 1, group = "LocalDisableRareModOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2662365575] = { "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers" }, } }, + ["TheFlawedEdictUnique__1"] = { affix = "", "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod", statOrder = { 7692 }, level = 1, group = "TheFlawedEdict", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3607612750] = { "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod" }, } }, ["UniqueDesecratedModEffect1"] = { affix = "", "(60-80)% increased Desecrated Modifier magnitudes", statOrder = { 50 }, level = 1, group = "UniqueDesecratedModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [586037801] = { "(60-80)% increased Desecrated Modifier magnitudes" }, } }, ["UniqueMutatedVaalPresenceRadius"] = { affix = "", "100% reduced Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "aura" }, tradeHashes = { [101878827] = { "100% reduced Presence Area of Effect" }, } }, ["UniqueMutatedVaalIncreasedLifeLeechRate"] = { affix = "", "Leech Life (-25-25)% slower", statOrder = { 1896 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1570501432] = { "Leech Life (-25-25)% slower" }, } }, ["UniqueMutatedVaalLifeDegenerationPercentGracePeriod"] = { affix = "", "Lose (2.5-5)% of maximum Life per second", statOrder = { 1690 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1661347488] = { "Lose (2.5-5)% of maximum Life per second" }, } }, - ["UniqueMutatedVaalManaCostEfficiency"] = { affix = "", "25% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "25% increased Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalSkillCostEfficiency"] = { affix = "", "(20-30)% increased Cost Efficiency", statOrder = { 4743 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(20-30)% increased Cost Efficiency" }, } }, - ["UniqueMutatedVaalSpellLifeCostPercent"] = { affix = "", "(25-50)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10038 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-50)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["UniqueMutatedVaalGlobalDeflectionRating"] = { affix = "", "(15-25)% increased Deflection Rating", statOrder = { 6119 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [3040571529] = { "(15-25)% increased Deflection Rating" }, } }, - ["UniqueMutatedVaalSurroundedAreaOfEffect"] = { affix = "", "(20-30)% increased Surrounded Area of Effect", statOrder = { 10203 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-30)% increased Surrounded Area of Effect" }, } }, + ["UniqueMutatedVaalManaCostEfficiency"] = { affix = "", "25% increased Mana Cost Efficiency", statOrder = { 4714 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "25% increased Mana Cost Efficiency" }, } }, + ["UniqueMutatedVaalSkillCostEfficiency"] = { affix = "", "(20-30)% increased Cost Efficiency", statOrder = { 4739 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(20-30)% increased Cost Efficiency" }, } }, + ["UniqueMutatedVaalSpellLifeCostPercent"] = { affix = "", "(25-50)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10029 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-50)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["UniqueMutatedVaalGlobalDeflectionRating"] = { affix = "", "(15-25)% increased Deflection Rating", statOrder = { 6115 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [3040571529] = { "(15-25)% increased Deflection Rating" }, } }, + ["UniqueMutatedVaalSurroundedAreaOfEffect"] = { affix = "", "(20-30)% increased Surrounded Area of Effect", statOrder = { 10194 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-30)% increased Surrounded Area of Effect" }, } }, ["UniqueMutatedVaalTotemDuration"] = { affix = "", "(-30-30)% reduced Totem Duration", statOrder = { 1537 }, level = 1, group = "TotemDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2357996603] = { "(-30-30)% reduced Totem Duration" }, } }, ["UniqueMutatedVaalAttackAndCastSpeedOnPlacingTotem"] = { affix = "", "25% increased Attack and Cast Speed if you've summoned a Totem Recently", statOrder = { 2925 }, level = 1, group = "AttackAndCastSpeedOnPlacingTotem", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3910614548] = { "25% increased Attack and Cast Speed if you've summoned a Totem Recently" }, } }, ["UniqueMutatedVaalLifeLeechAmount"] = { affix = "", "(20-25)% increased amount of Life Leeched", statOrder = { 1895 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [2112395885] = { "(20-25)% increased amount of Life Leeched" }, } }, @@ -4880,7 +4872,7 @@ return { ["UniqueMutatedVaalIgniteChanceIncrease"] = { affix = "", "25% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "25% increased Flammability Magnitude" }, } }, ["UniqueMutatedVaalPercentDamageGoesToMana"] = { affix = "", "(6-10)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHashes = { [472520716] = { "(6-10)% of Damage taken Recouped as Mana" }, } }, ["UniqueMutatedVaalMaximumLifeIncreasePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["UniqueMutatedVaalBeltIncreasedFlaskChargesGained"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueMutatedVaalBeltIncreasedFlaskChargesGained"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6636 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, ["UniqueMutatedVaalLocalEnegyShield"] = { affix = "", "+(50-150) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-150) to maximum Energy Shield" }, } }, ["UniqueMutatedVaalLocalEvasionRating"] = { affix = "", "+(50-150) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(50-150) to Evasion Rating" }, } }, ["UniqueMutatedVaalFireDamagePercentage"] = { affix = "", "(1-60)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(1-60)% increased Fire Damage" }, } }, @@ -4888,144 +4880,144 @@ return { ["UniqueMutatedVaalLightningDamagePercentage"] = { affix = "", "(1-60)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(1-60)% increased Lightning Damage" }, } }, ["UniqueMutatedVaalChaosDamagePercentage"] = { affix = "", "(1-60)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(1-60)% increased Chaos Damage" }, } }, ["UniqueMutatedVaalChaosResistance"] = { affix = "", "+(1-60)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "mutatedunique_vaal", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(1-60)% to Chaos Resistance" }, } }, - ["UniqueMutatedVaalVolatilityOnCritChance"] = { affix = "", "(30-50)% chance to grant Volatility on Critical Hit", statOrder = { 7364 }, level = 1, group = "VolatilityOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2931872063] = { "(30-50)% chance to grant Volatility on Critical Hit" }, } }, - ["UniqueMutatedVaalCastSpeedIfCriticalStrikeDealtRecently"] = { affix = "", "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently", statOrder = { 5341 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "mutatedunique_vaal", "caster", "speed" }, tradeHashes = { [1174076861] = { "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently" }, } }, - ["UniqueMutatedVaalPoisonEffect"] = { affix = "", "(10-16)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(10-16)% increased Magnitude of Poison you inflict" }, } }, + ["UniqueMutatedVaalVolatilityOnCritChance"] = { affix = "", "(30-50)% chance to grant Volatility on Critical Hit", statOrder = { 7360 }, level = 1, group = "VolatilityOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2931872063] = { "(30-50)% chance to grant Volatility on Critical Hit" }, } }, + ["UniqueMutatedVaalCastSpeedIfCriticalStrikeDealtRecently"] = { affix = "", "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently", statOrder = { 5337 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "mutatedunique_vaal", "caster", "speed" }, tradeHashes = { [1174076861] = { "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently" }, } }, + ["UniqueMutatedVaalPoisonEffect"] = { affix = "", "(10-16)% increased Magnitude of Poison you inflict", statOrder = { 9489 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(10-16)% increased Magnitude of Poison you inflict" }, } }, ["UniqueMutatedVaalDamageTakenGainedAsLife"] = { affix = "", "(5-10)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1444556985] = { "(5-10)% of Damage taken Recouped as Life" }, } }, ["UniqueMutatedVaalIncreasedStunThreshold"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, ["UniqueMutatedVaalLocalEnergyShield1"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-100) to maximum Energy Shield" }, } }, ["UniqueMutatedVaalBeltFlaskLifeRecovery"] = { affix = "", "(10-30)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [821241191] = { "(10-30)% increased Life Recovery from Flasks" }, } }, - ["UniqueMutatedVaalBeltIncreasedCharmChargesGained"] = { affix = "", "(10-30)% increased Charm Charges gained", statOrder = { 5605 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm", "mutatedunique_vaal" }, tradeHashes = { [3585532255] = { "(10-30)% increased Charm Charges gained" }, } }, + ["UniqueMutatedVaalBeltIncreasedCharmChargesGained"] = { affix = "", "(10-30)% increased Charm Charges gained", statOrder = { 5601 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm", "mutatedunique_vaal" }, tradeHashes = { [3585532255] = { "(10-30)% increased Charm Charges gained" }, } }, ["UniqueMutatedVaalDamageRemovedFromManaBeforeLife"] = { affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHashes = { [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, ["UniqueMutatedVaalMaximumManaOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, ["UniqueMutatedVaalIncreasedLife"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, ["UniqueMutatedVaalIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, ["UniqueMutatedVaalAllAttributes"] = { affix = "", "+(17-23) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [1379411836] = { "+(17-23) to all Attributes" }, } }, - ["UniqueMutatedVaalCriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { affix = "", "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", statOrder = { 5847 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "critical" }, tradeHashes = { [2856328513] = { "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently" }, } }, - ["UniqueMutatedVaalManaCostEfficiency1"] = { affix = "", "(20-30)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(20-30)% increased Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { affix = "", "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill", statOrder = { 9704 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemyPerPoison", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2535713562] = { "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill" }, } }, + ["UniqueMutatedVaalCriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { affix = "", "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", statOrder = { 5843 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "critical" }, tradeHashes = { [2856328513] = { "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently" }, } }, + ["UniqueMutatedVaalManaCostEfficiency1"] = { affix = "", "(20-30)% increased Mana Cost Efficiency", statOrder = { 4714 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(20-30)% increased Mana Cost Efficiency" }, } }, + ["UniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { affix = "", "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill", statOrder = { 9695 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemyPerPoison", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2535713562] = { "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill" }, } }, ["UniqueMutatedVaalLifeRegenerationRatePercentage"] = { affix = "", "Regenerate (1.5-3)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-3)% of maximum Life per second" }, } }, ["UniqueMutatedVaalIgniteChanceIncrease1"] = { affix = "", "(15-25)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(15-25)% increased Flammability Magnitude" }, } }, ["UniqueMutatedVaalIgniteEffect"] = { affix = "", "(26-40)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(26-40)% increased Ignite Magnitude" }, } }, - ["UniqueMutatedVaalChanceToGainAdditionalRandomCharge"] = { affix = "", "50% chance to gain an additional random Charge when you gain a Charge", statOrder = { 5522 }, level = 1, group = "ChanceToGainAdditionalRandomCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [504210122] = { "50% chance to gain an additional random Charge when you gain a Charge" }, } }, + ["UniqueMutatedVaalChanceToGainAdditionalRandomCharge"] = { affix = "", "50% chance to gain an additional random Charge when you gain a Charge", statOrder = { 5518 }, level = 1, group = "ChanceToGainAdditionalRandomCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [504210122] = { "50% chance to gain an additional random Charge when you gain a Charge" }, } }, ["UniqueMutatedVaalChargeDuration"] = { affix = "", "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration", statOrder = { 2761 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHashes = { [2839036860] = { "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration" }, } }, - ["UniqueMutatedVaalPoisonStackCount"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 9327 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, - ["UniqueMutatedVaalDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(10-20)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6116 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3471443885] = { "(10-20)% of Damage taken from Deflected Hits Recouped as Life" }, } }, - ["UniqueMutatedVaalGoldFoundIncrease"] = { affix = "", "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueMutatedVaalPoisonStackCount"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 9318 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, + ["UniqueMutatedVaalDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(10-20)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6112 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3471443885] = { "(10-20)% of Damage taken from Deflected Hits Recouped as Life" }, } }, + ["UniqueMutatedVaalGoldFoundIncrease"] = { affix = "", "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6913 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies" }, } }, ["UniqueMutatedVaalLightningResistance"] = { affix = "", "+(-60-60)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "mutatedunique_vaal", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-60-60)% to Lightning Resistance" }, } }, - ["UniqueMutatedVaalLifeRegenerationWhileSurrounded"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded", statOrder = { 7510 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [2002533190] = { "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded" }, } }, + ["UniqueMutatedVaalLifeRegenerationWhileSurrounded"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded", statOrder = { 7506 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [2002533190] = { "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded" }, } }, ["UniqueMutatedVaalLocalPhysicalDamageReductionRating1"] = { affix = "", "+(60-75) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(60-75) to Armour" }, } }, ["UniqueMutatedVaalPercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [734614379] = { "(5-10)% increased Strength" }, } }, ["UniqueMutatedVaalAreaOfEffectIfKilledRecently"] = { affix = "", "(10-25)% increased Area of Effect if you've Killed Recently", statOrder = { 3871 }, level = 1, group = "AreaOfEffectIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3481736410] = { "(10-25)% increased Area of Effect if you've Killed Recently" }, } }, - ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(5-10)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10034 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(5-10)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["UniqueMutatedVaalEnergyGeneration"] = { affix = "", "Meta Skills gain (-30-30)% reduced Energy", statOrder = { 6410 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4236566306] = { "Meta Skills gain (-30-30)% reduced Energy" }, } }, - ["UniqueMutatedVaalAilmentChance"] = { affix = "", "(20-30)% increased chance to inflict Ailments", statOrder = { 4255 }, level = 1, group = "AilmentChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "ailment" }, tradeHashes = { [1772247089] = { "(20-30)% increased chance to inflict Ailments" }, } }, - ["UniqueMutatedVaalManaCostEfficiency2"] = { affix = "", "(13-17)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(13-17)% increased Mana Cost Efficiency" }, } }, + ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(5-10)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10025 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(5-10)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["UniqueMutatedVaalEnergyGeneration"] = { affix = "", "Meta Skills gain (-30-30)% reduced Energy", statOrder = { 6406 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4236566306] = { "Meta Skills gain (-30-30)% reduced Energy" }, } }, + ["UniqueMutatedVaalAilmentChance"] = { affix = "", "(20-30)% increased chance to inflict Ailments", statOrder = { 4252 }, level = 1, group = "AilmentChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "ailment" }, tradeHashes = { [1772247089] = { "(20-30)% increased chance to inflict Ailments" }, } }, + ["UniqueMutatedVaalManaCostEfficiency2"] = { affix = "", "(13-17)% increased Mana Cost Efficiency", statOrder = { 4714 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(13-17)% increased Mana Cost Efficiency" }, } }, ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromHelmet"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 80 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3773763721] = { "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet" }, } }, ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromGloves"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 79 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3915618954] = { "This item gains bonuses from Socketed Soul Cores as though it was also Gloves" }, } }, ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromBoots"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Boots", statOrder = { 78 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromBoots", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [150590298] = { "This item gains bonuses from Socketed Soul Cores as though it was also Boots" }, } }, ["UniqueMutatedVaalEnergyShieldDelay1"] = { affix = "", "(33-66)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [1782086450] = { "(33-66)% faster start of Energy Shield Recharge" }, } }, - ["UniqueMutatedVaalSkillCostEfficiency1"] = { affix = "", "(-30-30)% reduced Cost Efficiency", statOrder = { 4743 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(-30-30)% reduced Cost Efficiency" }, } }, + ["UniqueMutatedVaalSkillCostEfficiency1"] = { affix = "", "(-30-30)% reduced Cost Efficiency", statOrder = { 4739 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(-30-30)% reduced Cost Efficiency" }, } }, ["UniqueMutatedVaalPresenceRadius1"] = { affix = "", "(15-30)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "aura" }, tradeHashes = { [101878827] = { "(15-30)% increased Presence Area of Effect" }, } }, - ["UniqueMutatedVaalLifeCostEfficiency"] = { affix = "", "(8-15)% increased Life Cost Efficiency", statOrder = { 4708 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(8-15)% increased Life Cost Efficiency" }, } }, - ["UniqueMutatedVaalEvasionRatingPercentWhileSprinting"] = { affix = "", "(100-150)% increased Evasion Rating while Sprinting", statOrder = { 6490 }, level = 1, group = "EvasionRatingPercentWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1586136369] = { "(100-150)% increased Evasion Rating while Sprinting" }, } }, + ["UniqueMutatedVaalLifeCostEfficiency"] = { affix = "", "(8-15)% increased Life Cost Efficiency", statOrder = { 4704 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(8-15)% increased Life Cost Efficiency" }, } }, + ["UniqueMutatedVaalEvasionRatingPercentWhileSprinting"] = { affix = "", "(100-150)% increased Evasion Rating while Sprinting", statOrder = { 6486 }, level = 1, group = "EvasionRatingPercentWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1586136369] = { "(100-150)% increased Evasion Rating while Sprinting" }, } }, ["UniqueMutatedVaalProjectileSpeed"] = { affix = "", "(16-24)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHashes = { [3759663284] = { "(16-24)% increased Projectile Speed" }, } }, - ["UniqueMutatedVaalGainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6860 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds" }, } }, + ["UniqueMutatedVaalGainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6856 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds" }, } }, ["UniqueMutatedVaalPowerFrenzyOrEnduranceChargeOnKill"] = { affix = "", "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3293 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHashes = { [498214257] = { "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill" }, } }, ["UniqueMutatedVaalLocalEnergyShield"] = { affix = "", "+(90-120) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(90-120) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { affix = "", "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", statOrder = { 8840 }, level = 1, group = "MaximumRagePerGlorySkillUsed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3302775221] = { "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds" }, } }, - ["UniqueMutatedVaalMaxRageFromRageOnHitChance"] = { affix = "", "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6810 }, level = 1, group = "MaxRageFromRageOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2710292678] = { "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage" }, } }, + ["UniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { affix = "", "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", statOrder = { 8831 }, level = 1, group = "MaximumRagePerGlorySkillUsed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3302775221] = { "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds" }, } }, + ["UniqueMutatedVaalMaxRageFromRageOnHitChance"] = { affix = "", "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6806 }, level = 1, group = "MaxRageFromRageOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2710292678] = { "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage" }, } }, ["UniqueMutatedVaalIncreasedAttackSpeed"] = { affix = "", "25% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHashes = { [681332047] = { "25% increased Attack Speed" }, } }, ["UniqueMutatedVaalArmourAppliesToElementalDamage"] = { affix = "", "+(33-66)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(33-66)% of Armour also applies to Elemental Damage" }, } }, - ["UniqueMutatedVaalCharmChargeGeneration"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6889 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "charm", "mutatedunique_vaal" }, tradeHashes = { [185580205] = { "Charms gain 0.5 charges per Second" }, } }, - ["UniqueMutatedVaalRemoveBleedOnLifeFlaskUse"] = { affix = "", "Remove Bleeding when you use a Life Flask", statOrder = { 9744 }, level = 1, group = "RemoveBleedOnLifeFlaskUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1394184789] = { "Remove Bleeding when you use a Life Flask" }, } }, - ["UniqueMutatedVaalChanceToNotConsumeInfusion"] = { affix = "", "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them", statOrder = { 5564 }, level = 1, group = "ChanceToNotConsumeInfusion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3024873336] = { "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them" }, } }, - ["UniqueMutatedVaalSpellSkillProjectileSpeed"] = { affix = "", "(-30-30)% reduced Projectile Speed for Spell Skills", statOrder = { 10031 }, level = 1, group = "SpellSkillProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3359797958] = { "(-30-30)% reduced Projectile Speed for Spell Skills" }, } }, - ["UniqueMutatedVaalSpellsFire8AdditionalProjectileChance"] = { affix = "", "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle", statOrder = { 10030 }, level = 1, group = "SpellsFire8AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4224832423] = { "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle" }, } }, + ["UniqueMutatedVaalCharmChargeGeneration"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6885 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "charm", "mutatedunique_vaal" }, tradeHashes = { [185580205] = { "Charms gain 0.5 charges per Second" }, } }, + ["UniqueMutatedVaalRemoveBleedOnLifeFlaskUse"] = { affix = "", "Remove Bleeding when you use a Life Flask", statOrder = { 9735 }, level = 1, group = "RemoveBleedOnLifeFlaskUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1394184789] = { "Remove Bleeding when you use a Life Flask" }, } }, + ["UniqueMutatedVaalChanceToNotConsumeInfusion"] = { affix = "", "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them", statOrder = { 5560 }, level = 1, group = "ChanceToNotConsumeInfusion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3024873336] = { "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them" }, } }, + ["UniqueMutatedVaalSpellSkillProjectileSpeed"] = { affix = "", "(-30-30)% reduced Projectile Speed for Spell Skills", statOrder = { 10022 }, level = 1, group = "SpellSkillProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3359797958] = { "(-30-30)% reduced Projectile Speed for Spell Skills" }, } }, + ["UniqueMutatedVaalSpellsFire8AdditionalProjectileChance"] = { affix = "", "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle", statOrder = { 10021 }, level = 1, group = "SpellsFire8AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4224832423] = { "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle" }, } }, ["UniqueMutatedVaalGlobalSkillGemLevel"] = { affix = "", "+(2-4) to Level of all Skills", statOrder = { 949 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [4283407333] = { "+(2-4) to Level of all Skills" }, } }, ["UniqueMutatedVaalGlobalSkillGemQuality"] = { affix = "", "+(5-10)% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [3655769732] = { "+(5-10)% to Quality of all Skills" }, } }, ["UniqueMutatedVaalBaseSpirit"] = { affix = "", "+50 to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, ["UniqueMutatedVaalPercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 998 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [3143208761] = { "(5-10)% increased Attributes" }, } }, ["UniqueMutatedVaalLocalPhysicalDamage1"] = { affix = "", "Adds (40-60) to (70-90) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-60) to (70-90) Physical Damage" }, } }, - ["UniqueMutatedVaalAftershockChance"] = { affix = "", "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10626 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2045949233] = { "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["UniqueMutatedVaalManaCostEfficiency3"] = { affix = "", "(-30-30)% reduced Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(-30-30)% reduced Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalLifeCostEfficiency1"] = { affix = "", "(10-25)% increased Life Cost Efficiency", statOrder = { 4708 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(10-25)% increased Life Cost Efficiency" }, } }, + ["UniqueMutatedVaalAftershockChance"] = { affix = "", "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10616 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2045949233] = { "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock" }, } }, + ["UniqueMutatedVaalManaCostEfficiency3"] = { affix = "", "(-30-30)% reduced Mana Cost Efficiency", statOrder = { 4714 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(-30-30)% reduced Mana Cost Efficiency" }, } }, + ["UniqueMutatedVaalLifeCostEfficiency1"] = { affix = "", "(10-25)% increased Life Cost Efficiency", statOrder = { 4704 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(10-25)% increased Life Cost Efficiency" }, } }, ["UniqueMutatedVaalMaximumLifeIncreasePercent1"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, ["UniqueMutatedVaalLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate (1-3)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-3)% of maximum Life per second" }, } }, - ["UniqueMutatedVaalLifeLeechFromThorns"] = { affix = "", "(5-10)% of Thorns Damage Leeched as Life", statOrder = { 4712 }, level = 1, group = "LifeLeechFromThorns", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1753977518] = { "(5-10)% of Thorns Damage Leeched as Life" }, } }, + ["UniqueMutatedVaalLifeLeechFromThorns"] = { affix = "", "(5-10)% of Thorns Damage Leeched as Life", statOrder = { 4708 }, level = 1, group = "LifeLeechFromThorns", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1753977518] = { "(5-10)% of Thorns Damage Leeched as Life" }, } }, ["UniqueMutatedVaalGlobalFlaskLifeRecovery"] = { affix = "", "(25-50)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [821241191] = { "(25-50)% increased Life Recovery from Flasks" }, } }, ["UniqueMutatedVaalLocalPhysicalDamageReductionRating2"] = { affix = "", "+(220-320) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(220-320) to Armour" }, } }, - ["UniqueMutatedVaalLifeFlaskChargePercentGeneration"] = { affix = "", "(15-30)% increased Life Flask Charges gained", statOrder = { 7433 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHashes = { [4009879772] = { "(15-30)% increased Life Flask Charges gained" }, } }, + ["UniqueMutatedVaalLifeFlaskChargePercentGeneration"] = { affix = "", "(15-30)% increased Life Flask Charges gained", statOrder = { 7429 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHashes = { [4009879772] = { "(15-30)% increased Life Flask Charges gained" }, } }, ["UniqueMutatedVaalLocalArmourAndEnergyShield"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["UniqueMutatedVaalGoldFoundIncrease1"] = { affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueMutatedVaalGoldFoundIncrease1"] = { affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6913 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, ["UniqueMutatedVaalLightRadiusModifiersApplyToAreaOfEffect"] = { affix = "", "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value", statOrder = { 2279 }, level = 1, group = "LightRadiusModifiersApplyToAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1138742368] = { "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value" }, } }, - ["UniqueMutatedVaalProjectileForkChanceIfMeleeRecently"] = { affix = "", "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9565 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2189073790] = { "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["UniqueMutatedVaalProjectileForkChanceIfMeleeRecently"] = { affix = "", "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9556 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2189073790] = { "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, ["UniqueMutatedVaalIncreasedWeaponElementalDamagePercent"] = { affix = "", "(100-150)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "has_attack_mod", "mutatedunique_vaal", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(100-150)% increased Elemental Damage with Attacks" }, } }, ["UniqueMutatedVaalLocalBaseCriticalStrikeChance"] = { affix = "", "+(2-4)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHashes = { [518292764] = { "+(2-4)% to Critical Hit Chance" }, } }, - ["UniqueMutatedVaalTreatResistsAsInvertedChance"] = { affix = "", "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10316 }, level = 1, group = "TreatResistsAsInvertedChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3593401321] = { "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted" }, } }, + ["UniqueMutatedVaalTreatResistsAsInvertedChance"] = { affix = "", "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10307 }, level = 1, group = "TreatResistsAsInvertedChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3593401321] = { "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted" }, } }, ["UniqueMutatedVaalAtziriSplendourArmour1"] = { affix = "", "+(100-200) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(100-200) to Armour" }, } }, ["UniqueMutatedVaalAtziriSplendourEvasion1"] = { affix = "", "+(100-200) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(100-200) to Evasion Rating" }, } }, ["UniqueMutatedVaalAtziriSplendourEnergyShield1"] = { affix = "", "+(66-100) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(66-100) to maximum Energy Shield" }, } }, ["UniqueMutatedVaalLocalSoulCoreEffect"] = { affix = "", "(10-20)% increased effect of Socketed Soul Cores", statOrder = { 179 }, level = 1, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4065505214] = { "(10-20)% increased effect of Socketed Soul Cores" }, } }, - ["UniqueMutatedVaalSkillCostEfficiency2"] = { affix = "", "(10-20)% increased Cost Efficiency", statOrder = { 4743 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(10-20)% increased Cost Efficiency" }, } }, + ["UniqueMutatedVaalSkillCostEfficiency2"] = { affix = "", "(10-20)% increased Cost Efficiency", statOrder = { 4739 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(10-20)% increased Cost Efficiency" }, } }, ["UniqueMutatedVaalIgniteEffect1"] = { affix = "", "(20-40)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-40)% increased Ignite Magnitude" }, } }, - ["UniqueMutatedVaalChillEffect"] = { affix = "", "(20-40)% increased Magnitude of Chill you inflict", statOrder = { 5647 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-40)% increased Magnitude of Chill you inflict" }, } }, + ["UniqueMutatedVaalChillEffect"] = { affix = "", "(20-40)% increased Magnitude of Chill you inflict", statOrder = { 5643 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-40)% increased Magnitude of Chill you inflict" }, } }, ["UniqueMutatedVaalFreezeDuration"] = { affix = "", "(10-20)% increased Freeze Duration on Enemies", statOrder = { 1614 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1073942215] = { "(10-20)% increased Freeze Duration on Enemies" }, } }, - ["UniqueMutatedVaalShockEffect"] = { affix = "", "(20-40)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-40)% increased Magnitude of Shock you inflict" }, } }, + ["UniqueMutatedVaalShockEffect"] = { affix = "", "(20-40)% increased Magnitude of Shock you inflict", statOrder = { 9836 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-40)% increased Magnitude of Shock you inflict" }, } }, ["UniqueMutatedVaalCurseEffectiveness"] = { affix = "", "(10-20)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-20)% increased Curse Magnitudes" }, } }, - ["UniqueMutatedVaalReflectElementalAilmentsToSelf"] = { affix = "", "Elemental Ailments other than Freeze you inflict are Reflected to you", statOrder = { 6261 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1370804479] = { "Elemental Ailments other than Freeze you inflict are Reflected to you" }, } }, + ["UniqueMutatedVaalReflectElementalAilmentsToSelf"] = { affix = "", "Elemental Ailments other than Freeze you inflict are Reflected to you", statOrder = { 6257 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1370804479] = { "Elemental Ailments other than Freeze you inflict are Reflected to you" }, } }, ["UniqueMutatedVaalDamagePerCurse"] = { affix = "", "(10-15)% increased Damage per Curse on you", statOrder = { 1173 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage" }, tradeHashes = { [1019020209] = { "(10-15)% increased Damage per Curse on you" }, } }, - ["UniqueMutatedVaalZealotsOath"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9727 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, + ["UniqueMutatedVaalZealotsOath"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9718 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, ["UniqueMutatedVaalEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", statOrder = { 1440 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [988575597] = { "(10-15)% increased Energy Shield Recovery rate" }, } }, ["UniqueMutatedVaalMaximumManaIncreasePercent"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 894 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [2748665614] = { "(10-20)% increased maximum Mana" }, } }, ["UniqueMutatedVaalManaLeechPermyriad"] = { affix = "", "Leech (4-6)% of Physical Attack Damage as Mana", statOrder = { 1046 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (4-6)% of Physical Attack Damage as Mana" }, } }, - ["UniqueMutatedVaalEnergyOnFullMana"] = { affix = "", "Meta Skills gain 25% increased Energy while on Full Mana", statOrder = { 6413 }, level = 1, group = "EnergyOnFullMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [173471035] = { "Meta Skills gain 25% increased Energy while on Full Mana" }, } }, - ["UniqueMutatedVaalGainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6849 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, - ["UniqueMutatedVaalReducedShockEffectOnSelf"] = { affix = "", "(25-50)% reduced effect of Shock on you", statOrder = { 9859 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(25-50)% reduced effect of Shock on you" }, } }, - ["UniqueMutatedVaalManaGainedOnPowerChargeConsumption"] = { affix = "", "Recover (2-5)% of maximum Mana when you consume a Power Charge", statOrder = { 9706 }, level = 1, group = "ManaGainedOnPowerChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [346374719] = { "Recover (2-5)% of maximum Mana when you consume a Power Charge" }, } }, + ["UniqueMutatedVaalEnergyOnFullMana"] = { affix = "", "Meta Skills gain 25% increased Energy while on Full Mana", statOrder = { 6409 }, level = 1, group = "EnergyOnFullMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [173471035] = { "Meta Skills gain 25% increased Energy while on Full Mana" }, } }, + ["UniqueMutatedVaalGainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6845 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, + ["UniqueMutatedVaalReducedShockEffectOnSelf"] = { affix = "", "(25-50)% reduced effect of Shock on you", statOrder = { 9850 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(25-50)% reduced effect of Shock on you" }, } }, + ["UniqueMutatedVaalManaGainedOnPowerChargeConsumption"] = { affix = "", "Recover (2-5)% of maximum Mana when you consume a Power Charge", statOrder = { 9697 }, level = 1, group = "ManaGainedOnPowerChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [346374719] = { "Recover (2-5)% of maximum Mana when you consume a Power Charge" }, } }, ["UniqueMutatedVaalArcaneSurgeEffect"] = { affix = "", "(20-40)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana", "caster" }, tradeHashes = { [2103650854] = { "(20-40)% increased effect of Arcane Surge on you" }, } }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8875 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, ["UniqueMutatedVaalLocalEvasionRating1"] = { affix = "", "+(150-200) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(150-200) to Evasion Rating" }, } }, ["UniqueMutatedVaalIncreasedAttackSpeed1"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHashes = { [681332047] = { "(6-12)% increased Attack Speed" }, } }, - ["UniqueMutatedVaalTotemDamagePerCurseOnSelf"] = { affix = "", "(10-20)% increased Totem Damage per Curse on you", statOrder = { 10284 }, level = 1, group = "TotemDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2639983772] = { "(10-20)% increased Totem Damage per Curse on you" }, } }, + ["UniqueMutatedVaalTotemDamagePerCurseOnSelf"] = { affix = "", "(10-20)% increased Totem Damage per Curse on you", statOrder = { 10275 }, level = 1, group = "TotemDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2639983772] = { "(10-20)% increased Totem Damage per Curse on you" }, } }, ["UniqueMutatedVaalBaseSpirit1"] = { affix = "", "+(40-50) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3981240776] = { "+(40-50) to Spirit" }, } }, ["UniqueMutatedVaalPresenceRadius2"] = { affix = "", "(25-50)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "aura" }, tradeHashes = { [101878827] = { "(25-50)% increased Presence Area of Effect" }, } }, ["UniqueMutatedVaalGlobalIncreaseMinionSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, - ["UniqueMutatedVaalBurningEnemiesExplodeChance"] = { affix = "", "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6521, 6521.1 }, level = 1, group = "BurningEnemiesExplodeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, } }, + ["UniqueMutatedVaalBurningEnemiesExplodeChance"] = { affix = "", "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6517, 6517.1 }, level = 1, group = "BurningEnemiesExplodeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, } }, ["UniqueMutatedVaalGlobalFireGemLevel"] = { affix = "", "+1 to Level of all Fire Skills", statOrder = { 958 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+1 to Level of all Fire Skills" }, } }, - ["UniqueMutatedVaalLifeRegenerationRatePercentageWhileIgnited"] = { affix = "", "Regenerate 3% of maximum Life per second while Ignited", statOrder = { 7488 }, level = 1, group = "LifeRegenerationRatePercentageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [302024054] = { "Regenerate 3% of maximum Life per second while Ignited" }, } }, + ["UniqueMutatedVaalLifeRegenerationRatePercentageWhileIgnited"] = { affix = "", "Regenerate 3% of maximum Life per second while Ignited", statOrder = { 7484 }, level = 1, group = "LifeRegenerationRatePercentageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [302024054] = { "Regenerate 3% of maximum Life per second while Ignited" }, } }, ["UniqueMutatedVaalEvasionOnLowLife"] = { affix = "", "+(100-150) to Evasion Rating while on Low Life", statOrder = { 1422 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [3470876581] = { "+(100-150) to Evasion Rating while on Low Life" }, } }, ["UniqueMutatedVaalLifeRegenerationOnLowLife"] = { affix = "", "Regenerate (2-3)% of maximum Life per second while on Low Life", statOrder = { 1692 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3942946753] = { "Regenerate (2-3)% of maximum Life per second while on Low Life" }, } }, ["UniqueMutatedVaalGlobalChanceToBlindOnHit"] = { affix = "", "(5-10)% Global chance to Blind Enemies on Hit", statOrder = { 2703 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2221570601] = { "(5-10)% Global chance to Blind Enemies on Hit" }, } }, - ["UniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { affix = "", "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned", statOrder = { 9496 }, level = 1, group = "PoisonEffectOnNonPoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1864159246] = { "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned" }, } }, + ["UniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { affix = "", "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned", statOrder = { 9487 }, level = 1, group = "PoisonEffectOnNonPoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1864159246] = { "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned" }, } }, ["UniqueMutatedVaalGlobalChaosGemLevel"] = { affix = "", "+1 to Level of all Chaos Skills", statOrder = { 964 }, level = 1, group = "GlobalChaosGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "chaos", "gem" }, tradeHashes = { [67169579] = { "+1 to Level of all Chaos Skills" }, } }, ["UniqueMutatedVaalMaximumLifeIncreasePercent2"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["UniqueMutatedVaalDamageRemovedFromManaBeforeLifeWhileNotLowMana"] = { affix = "", "25% of Damage is taken from Mana before Life while not on Low Mana", statOrder = { 4682 }, level = 1, group = "DamageRemovedFromManaBeforeLifeWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [679019978] = { "25% of Damage is taken from Mana before Life while not on Low Mana" }, } }, - ["UniqueMutatedVaalDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2319832234] = { "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["UniqueMutatedVaalDamageRemovedFromManaBeforeLifeWhileNotLowMana"] = { affix = "", "25% of Damage is taken from Mana before Life while not on Low Mana", statOrder = { 4678 }, level = 1, group = "DamageRemovedFromManaBeforeLifeWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [679019978] = { "25% of Damage is taken from Mana before Life while not on Low Mana" }, } }, + ["UniqueMutatedVaalDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2319832234] = { "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, ["UniqueMutatedVaalVolatilityDamageTakenAsColdPercent"] = { affix = "", "(50-100)% of Volatility Physical Damage Taken as Cold Damage", statOrder = { 2210 }, level = 1, group = "VolatilityDamageTakenAsColdPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3190121041] = { "(50-100)% of Volatility Physical Damage Taken as Cold Damage" }, } }, - ["UniqueMutatedVaalIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 7238 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, - ["UniqueMutatedVaalEnergyShieldRechargeRatePer4Strength"] = { affix = "", "1% increased Energy Shield Recharge Rate per 4 Strength", statOrder = { 6441 }, level = 1, group = "EnergyShieldRechargeRatePer4Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2408276841] = { "1% increased Energy Shield Recharge Rate per 4 Strength" }, } }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield1"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, + ["UniqueMutatedVaalIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 7234 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, + ["UniqueMutatedVaalEnergyShieldRechargeRatePer4Strength"] = { affix = "", "1% increased Energy Shield Recharge Rate per 4 Strength", statOrder = { 6437 }, level = 1, group = "EnergyShieldRechargeRatePer4Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2408276841] = { "1% increased Energy Shield Recharge Rate per 4 Strength" }, } }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield1"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8875 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, ["UniqueMutatedVaalLocalEnergyShield2"] = { affix = "", "+(70-100) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-100) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalPercentOfLeechIsInstant"] = { affix = "", "(20-40)% of Leech is Instant", statOrder = { 7425 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3561837752] = { "(20-40)% of Leech is Instant" }, } }, - ["UniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { affix = "", "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", statOrder = { 9492 }, level = 1, group = "PoisonDurationIfConsumedFrenzyChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3841138199] = { "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently" }, } }, + ["UniqueMutatedVaalPercentOfLeechIsInstant"] = { affix = "", "(20-40)% of Leech is Instant", statOrder = { 7421 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3561837752] = { "(20-40)% of Leech is Instant" }, } }, + ["UniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { affix = "", "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", statOrder = { 9483 }, level = 1, group = "PoisonDurationIfConsumedFrenzyChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3841138199] = { "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently" }, } }, ["UniqueMutatedVaalReducedPoisonDuration"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1067 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique_vaal", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(40-60)% reduced Poison Duration on you" }, } }, - ["UniqueMutatedVaalChanceToGainAdditionalPowerCharge"] = { affix = "", "10% chance when you gain a Power Charge to gain an additional Power Charge", statOrder = { 5521 }, level = 1, group = "ChanceToGainAdditionalPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3537994888] = { "10% chance when you gain a Power Charge to gain an additional Power Charge" }, } }, - ["UniqueMutatedVaalCriticalStrikeMultiplierIfConsumedPowerChargeRecently"] = { affix = "", "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently", statOrder = { 5815 }, level = 1, group = "CriticalStrikeMultiplierIfConsumedPowerChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [23669307] = { "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently" }, } }, + ["UniqueMutatedVaalChanceToGainAdditionalPowerCharge"] = { affix = "", "10% chance when you gain a Power Charge to gain an additional Power Charge", statOrder = { 5517 }, level = 1, group = "ChanceToGainAdditionalPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3537994888] = { "10% chance when you gain a Power Charge to gain an additional Power Charge" }, } }, + ["UniqueMutatedVaalCriticalStrikeMultiplierIfConsumedPowerChargeRecently"] = { affix = "", "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently", statOrder = { 5811 }, level = 1, group = "CriticalStrikeMultiplierIfConsumedPowerChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [23669307] = { "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently" }, } }, ["UniqueMutatedVaalIncreasedPowerChargeDuration"] = { affix = "", "(-60-60)% reduced Power Charge Duration", statOrder = { 1881 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique_vaal" }, tradeHashes = { [3872306017] = { "(-60-60)% reduced Power Charge Duration" }, } }, - ["UniqueMutatedVaalPoisonEffectWhilePoisoned"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict while Poisoned", statOrder = { 4738 }, level = 1, group = "PoisonEffectWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [120969026] = { "(30-40)% increased Magnitude of Poison you inflict while Poisoned" }, } }, + ["UniqueMutatedVaalPoisonEffectWhilePoisoned"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict while Poisoned", statOrder = { 4734 }, level = 1, group = "PoisonEffectWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [120969026] = { "(30-40)% increased Magnitude of Poison you inflict while Poisoned" }, } }, ["UniqueMutatedVaalChaosResistance1"] = { affix = "", "+(16-26)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "mutatedunique_vaal", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-26)% to Chaos Resistance" }, } }, ["UniqueMutatedVaalGlobalFireGemLevel1"] = { affix = "", "+(2-4) to Level of all Fire Skills", statOrder = { 958 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+(2-4) to Level of all Fire Skills" }, } }, - ["UniqueMutatedVaalElementalExposureEffectOnHitWithMagnitude"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%", statOrder = { 4282 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [533542952] = { "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%" }, } }, - ["UniqueMutatedVaalChargeChanceToNotConsume"] = { affix = "", "Skills have (10-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5603 }, level = 1, group = "ChargeChanceToNotConsume", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2942439603] = { "Skills have (10-15)% chance to not remove Charges but still count as consuming them" }, } }, + ["UniqueMutatedVaalElementalExposureEffectOnHitWithMagnitude"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%", statOrder = { 4279 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [533542952] = { "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%" }, } }, + ["UniqueMutatedVaalChargeChanceToNotConsume"] = { affix = "", "Skills have (10-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5599 }, level = 1, group = "ChargeChanceToNotConsume", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2942439603] = { "Skills have (10-15)% chance to not remove Charges but still count as consuming them" }, } }, ["UniqueMutatedVaalIncreasedChaosDamage"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(60-80)% increased Chaos Damage" }, } }, - ["UniqueMutatedVaalDeflectDamageTaken"] = { affix = "", "+(-5-5)% to amount of Damage Prevented by Deflection", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3552135623] = { "+(-5-5)% to amount of Damage Prevented by Deflection" }, } }, - ["UniqueMutatedVaalAttackDamageWhileSurrounded"] = { affix = "", "(-40-40)% reduced Attack Damage while Surrounded", statOrder = { 4520 }, level = 1, group = "AttackDamageWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2879725899] = { "(-40-40)% reduced Attack Damage while Surrounded" }, } }, - ["UniqueMutatedVaalElementalPenetrationBelowZero"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 6299 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, + ["UniqueMutatedVaalDeflectDamageTaken"] = { affix = "", "+(-5-5)% to amount of Damage Prevented by Deflection", statOrder = { 4675 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3552135623] = { "+(-5-5)% to amount of Damage Prevented by Deflection" }, } }, + ["UniqueMutatedVaalAttackDamageWhileSurrounded"] = { affix = "", "(-40-40)% reduced Attack Damage while Surrounded", statOrder = { 4517 }, level = 1, group = "AttackDamageWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2879725899] = { "(-40-40)% reduced Attack Damage while Surrounded" }, } }, + ["UniqueMutatedVaalElementalPenetrationBelowZero"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 6295 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, ["UniqueMutatedVaalLocalPhysicalDamageReductionRating3"] = { affix = "", "+(260-400) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(260-400) to Armour" }, } }, ["UniqueMutatedVaalLightningResistancePenetration"] = { affix = "", "Damage Penetrates (10-20)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-20)% Lightning Resistance" }, } }, - ["UniqueMutatedVaalSurroundedAreaOfEffect1"] = { affix = "", "(20-60)% increased Surrounded Area of Effect", statOrder = { 10203 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-60)% increased Surrounded Area of Effect" }, } }, - ["UniqueMutatedVaalCorruptedRareJewelModEffect"] = { affix = "", "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels", statOrder = { 7904, 7904.1 }, level = 1, group = "CorruptedRareJewelModEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3128077011] = { "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels" }, } }, + ["UniqueMutatedVaalSurroundedAreaOfEffect1"] = { affix = "", "(20-60)% increased Surrounded Area of Effect", statOrder = { 10194 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-60)% increased Surrounded Area of Effect" }, } }, + ["UniqueMutatedVaalCorruptedRareJewelModEffect"] = { affix = "", "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels", statOrder = { 7900, 7900.1 }, level = 1, group = "CorruptedRareJewelModEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3128077011] = { "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels" }, } }, ["UniqueMutatedVaalIncreasedArmourForJewel"] = { affix = "", "(-30-30)% reduced Armour", statOrder = { 882 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [2866361420] = { "(-30-30)% reduced Armour" }, } }, ["UniqueMutatedVaalIncreasedEvasionForJewel"] = { affix = "", "(-30-30)% reduced Evasion Rating", statOrder = { 884 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [2106365538] = { "(-30-30)% reduced Evasion Rating" }, } }, ["UniqueMutatedVaalIncreasedEnergyShieldForJewel"] = { affix = "", "+(-30-30) to maximum Energy Shield", statOrder = { 885 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [3489782002] = { "+(-30-30) to maximum Energy Shield" }, } }, @@ -5034,107 +5026,107 @@ return { ["UniqueMutatedVaalLightningDamagePercentage1"] = { affix = "", "(-30-30)% reduced Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(-30-30)% reduced Lightning Damage" }, } }, ["UniqueMutatedVaalIncreasedChaosDamage1"] = { affix = "", "(-30-30)% reduced Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(-30-30)% reduced Chaos Damage" }, } }, ["UniqueMutatedVaalMinionDamage"] = { affix = "", "Minions deal (-30-30)% reduced Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "mutatedunique_vaal", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (-30-30)% reduced Damage" }, } }, - ["UniqueMutatedVaalSpellAilmentEffectPerLife"] = { affix = "", "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life", statOrder = { 9988 }, level = 1, group = "SpellAilmentEffectPerLifeNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4245905059] = { "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life" }, } }, - ["UniqueMutatedVaalSpellCriticalChancePerMana"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana", statOrder = { 9994 }, level = 1, group = "SpellCriticalChancePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1367999357] = { "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana" }, } }, - ["UniqueMutatedVaalSpellDamagePerMana"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana", statOrder = { 10006 }, level = 1, group = "SpellDamagePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3843734793] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana" }, } }, + ["UniqueMutatedVaalSpellAilmentEffectPerLife"] = { affix = "", "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life", statOrder = { 9979 }, level = 1, group = "SpellAilmentEffectPerLifeNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4245905059] = { "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life" }, } }, + ["UniqueMutatedVaalSpellCriticalChancePerMana"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana", statOrder = { 9985 }, level = 1, group = "SpellCriticalChancePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1367999357] = { "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana" }, } }, + ["UniqueMutatedVaalSpellDamagePerMana"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana", statOrder = { 9997 }, level = 1, group = "SpellDamagePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3843734793] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana" }, } }, ["UniqueMutatedVaalAdditionalArrowPierce"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1550 }, level = 1, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["UniqueMutatedVaalLifeCostEfficiency2"] = { affix = "", "(10-20)% increased Life Cost Efficiency", statOrder = { 4708 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(10-20)% increased Life Cost Efficiency" }, } }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield2"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, - ["UniqueMutatedVaalSpellDamageLifeLeech"] = { affix = "", "5% of Spell Damage Leeched as Life", statOrder = { 4711 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [782941180] = { "5% of Spell Damage Leeched as Life" }, } }, - ["UniqueMutatedVaalGlancingBlows"] = { affix = "", "Glancing Blows", statOrder = { 10705 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique_vaal" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, - ["UniqueMutatedVaalGlobalDeflectionRatingWhileMoving"] = { affix = "", "(15-25)% increased Deflection Rating while moving", statOrder = { 6120 }, level = 1, group = "GlobalDeflectionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1382805233] = { "(15-25)% increased Deflection Rating while moving" }, } }, + ["UniqueMutatedVaalLifeCostEfficiency2"] = { affix = "", "(10-20)% increased Life Cost Efficiency", statOrder = { 4704 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(10-20)% increased Life Cost Efficiency" }, } }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield2"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8875 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, + ["UniqueMutatedVaalSpellDamageLifeLeech"] = { affix = "", "5% of Spell Damage Leeched as Life", statOrder = { 4707 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [782941180] = { "5% of Spell Damage Leeched as Life" }, } }, + ["UniqueMutatedVaalGlancingBlows"] = { affix = "", "Glancing Blows", statOrder = { 10695 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique_vaal" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, + ["UniqueMutatedVaalGlobalDeflectionRatingWhileMoving"] = { affix = "", "(15-25)% increased Deflection Rating while moving", statOrder = { 6116 }, level = 1, group = "GlobalDeflectionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1382805233] = { "(15-25)% increased Deflection Rating while moving" }, } }, ["UniqueMutatedVaalLocalEvasionRating2"] = { affix = "", "+(70-100) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(70-100) to Evasion Rating" }, } }, - ["UniqueMutatedVaalRandomKeystoneFromTable"] = { affix = "", "(1-33)", statOrder = { 10673 }, level = 1, group = "UniqueVivisectionRandomKeystoneMutated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [37406516] = { "(1-33)" }, } }, - ["UniqueMutatedVaalVivisectionPriceLife"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 10471 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, - ["UniqueMutatedVaalVivisectionPriceMana"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 10472 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, - ["UniqueMutatedVaalVivisectionPriceDefences"] = { affix = "", "(10-20)% less Armour, Evasion and Energy Shield", statOrder = { 10470 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal" }, tradeHashes = { [1803659985] = { "(10-20)% less Armour, Evasion and Energy Shield" }, } }, - ["UniqueMutatedVaalVivisectionPriceSpirit"] = { affix = "", "(10-20)% less Spirit", statOrder = { 10474 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, - ["UniqueMutatedVaalVivisectionPriceMovementSpeed"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 10473 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, - ["UniqueMutatedVaalVivisectionPriceDamage"] = { affix = "", "(10-20)% less Damage", statOrder = { 10469 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, + ["UniqueMutatedVaalRandomKeystoneFromTable"] = { affix = "", "(1-33)", statOrder = { 10663 }, level = 1, group = "UniqueVivisectionRandomKeystoneMutated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [37406516] = { "(1-33)" }, } }, + ["UniqueMutatedVaalVivisectionPriceLife"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 10461 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, + ["UniqueMutatedVaalVivisectionPriceMana"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 10462 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, + ["UniqueMutatedVaalVivisectionPriceDefences"] = { affix = "", "(10-20)% less Armour, Evasion and Energy Shield", statOrder = { 10460 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal" }, tradeHashes = { [1803659985] = { "(10-20)% less Armour, Evasion and Energy Shield" }, } }, + ["UniqueMutatedVaalVivisectionPriceSpirit"] = { affix = "", "(10-20)% less Spirit", statOrder = { 10464 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, + ["UniqueMutatedVaalVivisectionPriceMovementSpeed"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 10463 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, + ["UniqueMutatedVaalVivisectionPriceDamage"] = { affix = "", "(10-20)% less Damage", statOrder = { 10459 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, ["UniqueMutatedVaalCurseGemLevel"] = { affix = "", "+(3-5) to Level of all Curse Skills", statOrder = { 971 }, level = 1, group = "GlobalCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [805298720] = { "+(3-5) to Level of all Curse Skills" }, } }, ["UniqueMutatedVaalDamageAsExtraFire"] = { affix = "", "Gain (25-40)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageasExtraFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-40)% of Damage as Extra Fire Damage" }, } }, ["UniqueMutatedVaalLocalPhysicalDamage"] = { affix = "", "Adds (65-73) to (83-91) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-73) to (83-91) Physical Damage" }, } }, ["UniqueMutatedVaalLocalCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHashes = { [518292764] = { "+(3-5)% to Critical Hit Chance" }, } }, - ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles1"] = { affix = "", "(10-25)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10034 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(10-25)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles1"] = { affix = "", "(10-25)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10025 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(10-25)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, ["UniqueMutatedVaalLocalPhysicalDamagePercent"] = { affix = "", "(300-400)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(300-400)% increased Physical Damage" }, } }, - ["UniqueMutatedVaalFireExposureOnHit"] = { affix = "", "(30-50)% chance to inflict Exposure on Hit", statOrder = { 4705 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3602667353] = { "(30-50)% chance to inflict Exposure on Hit" }, } }, - ["UniqueMutatedVaalCullingStrikeLocalVsBleeding"] = { affix = "", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 7654 }, level = 1, group = "CullingStrikeLocalVsBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, } }, + ["UniqueMutatedVaalFireExposureOnHit"] = { affix = "", "(30-50)% chance to inflict Exposure on Hit", statOrder = { 4701 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3602667353] = { "(30-50)% chance to inflict Exposure on Hit" }, } }, + ["UniqueMutatedVaalCullingStrikeLocalVsBleeding"] = { affix = "", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 7650 }, level = 1, group = "CullingStrikeLocalVsBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, } }, ["UniqueMutatedVaalLocalIncreasedEvasionAndEnergyShield"] = { affix = "", "(150-300)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-300)% increased Evasion and Energy Shield" }, } }, ["UniqueMutatedVaalLocalEnergyShield3"] = { affix = "", "+(50-80) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-80) to maximum Energy Shield" }, } }, ["UniqueMutatedVaalPhysicalDamagePercent"] = { affix = "", "(-30-30)% reduced Global Physical Damage", statOrder = { 1185 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical" }, tradeHashes = { [1310194496] = { "(-30-30)% reduced Global Physical Damage" }, } }, ["UniqueMutatedVaalIncreasedLifePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, ["UniqueMutatedVaalAddedMaximumEnergyShield"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, ["UniqueMutatedVaalDamageLifeRecoup"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["UniqueMutatedVaalChanceToBleed"] = { affix = "", "(30-50)% increased chance to inflict Bleeding", statOrder = { 4806 }, level = 1, group = "BleedChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [242637938] = { "(30-50)% increased chance to inflict Bleeding" }, } }, - ["CorruptionUpgradeLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(40-60)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour" }, tradeHashes = { [1062208444] = { "(40-60)% increased Armour" }, } }, - ["CorruptionUpgradeLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, - ["CorruptionUpgradeLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, - ["CorruptionUpgradeLocalIncreasedArmourAndEvasion1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-60)% increased Armour and Evasion" }, } }, - ["CorruptionUpgradeLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(40-60)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(40-60)% increased Armour and Energy Shield" }, } }, - ["CorruptionUpgradeLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(40-60)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(40-60)% increased Evasion and Energy Shield" }, } }, + ["UniqueMutatedVaalChanceToBleed"] = { affix = "", "(30-50)% increased chance to inflict Bleeding", statOrder = { 4802 }, level = 1, group = "BleedChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [242637938] = { "(30-50)% increased chance to inflict Bleeding" }, } }, + ["CorruptionUpgradeLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(75-125)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour" }, tradeHashes = { [1062208444] = { "(75-125)% increased Armour" }, } }, + ["CorruptionUpgradeLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(75-125)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [124859000] = { "(75-125)% increased Evasion Rating" }, } }, + ["CorruptionUpgradeLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(75-125)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [4015621042] = { "(75-125)% increased Energy Shield" }, } }, + ["CorruptionUpgradeLocalIncreasedArmourAndEvasion1"] = { affix = "", "(75-125)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(75-125)% increased Armour and Evasion" }, } }, + ["CorruptionUpgradeLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(75-125)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(75-125)% increased Armour and Energy Shield" }, } }, + ["CorruptionUpgradeLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(75-125)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(75-125)% increased Evasion and Energy Shield" }, } }, ["CorruptionUpgradeReducedLocalAttributeRequirements1"] = { affix = "", "(30-50)% reduced Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "armour", "weapon", "wand", "staff", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3639275092] = { "(30-50)% reduced Attribute Requirements" }, } }, ["CorruptionUpgradeAdditionalPhysicalDamageReduction1"] = { affix = "", "(6-9)% additional Physical Damage Reduction", statOrder = { 1006 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHashes = { [3771516363] = { "(6-9)% additional Physical Damage Reduction" }, } }, - ["CorruptionUpgradeDamageTakenGainedAsLife1"] = { affix = "", "(25-35)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [1444556985] = { "(25-35)% of Damage taken Recouped as Life" }, } }, - ["CorruptionUpgradeDamageTakenGainedAsMana1"] = { affix = "", "(25-35)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(25-35)% of Damage taken Recouped as Mana" }, } }, + ["CorruptionUpgradeDamageTakenGainedAsLife1"] = { affix = "", "(20-40)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [1444556985] = { "(20-40)% of Damage taken Recouped as Life" }, } }, + ["CorruptionUpgradeDamageTakenGainedAsMana1"] = { affix = "", "(20-40)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(20-40)% of Damage taken Recouped as Mana" }, } }, ["CorruptionUpgradeLifeLeech1"] = { affix = "", "Leech 9% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 9% of Physical Attack Damage as Life" }, } }, ["CorruptionUpgradeManaLeech1"] = { affix = "", "Leech 6% of Physical Attack Damage as Mana", statOrder = { 1046 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech 6% of Physical Attack Damage as Mana" }, } }, ["CorruptionUpgradeMaximumElementalResistance1"] = { affix = "", "+2% to all Maximum Elemental Resistances", statOrder = { 1007 }, level = 1, group = "MaximumElementalResistance", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+2% to all Maximum Elemental Resistances" }, } }, ["CorruptionUpgradeIncreasedLife1"] = { affix = "", "+(120-160) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3299347043] = { "+(120-160) to maximum Life" }, } }, ["CorruptionUpgradeIncreasedMana1"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["CorruptionUpgradeIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(40-60)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour" }, tradeHashes = { [2866361420] = { "(40-60)% increased Armour" }, } }, - ["CorruptionUpgradeIncreasedEvasionRatingPercent1"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [2106365538] = { "(40-60)% increased Evasion Rating" }, } }, - ["CorruptionUpgradeIncreasedEnergyShieldPercent1"] = { affix = "", "(40-60)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [2482852589] = { "(40-60)% increased maximum Energy Shield" }, } }, - ["CorruptionUpgradeThornsDamageIncrease1"] = { affix = "", "(100-150)% increased Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1315743832] = { "(100-150)% increased Thorns damage" }, } }, - ["CorruptionUpgradeChaosResistance1"] = { affix = "", "+(31-47)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_resistance", "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(31-47)% to Chaos Resistance" }, } }, + ["CorruptionUpgradeIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(50-75)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour" }, tradeHashes = { [2866361420] = { "(50-75)% increased Armour" }, } }, + ["CorruptionUpgradeIncreasedEvasionRatingPercent1"] = { affix = "", "(50-75)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [2106365538] = { "(50-75)% increased Evasion Rating" }, } }, + ["CorruptionUpgradeIncreasedEnergyShieldPercent1"] = { affix = "", "(50-75)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [2482852589] = { "(50-75)% increased maximum Energy Shield" }, } }, + ["CorruptionUpgradeThornsDamageIncrease1"] = { affix = "", "(120-200)% increased Thorns damage", statOrder = { 10245 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1315743832] = { "(120-200)% increased Thorns damage" }, } }, + ["CorruptionUpgradeChaosResistance1"] = { affix = "", "+(30-49)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_resistance", "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(30-49)% to Chaos Resistance" }, } }, ["CorruptionUpgradeFireResistance1"] = { affix = "", "+(50-75)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-75)% to Fire Resistance" }, } }, ["CorruptionUpgradeColdResistance1"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-75)% to Cold Resistance" }, } }, ["CorruptionUpgradeLightningResistance1"] = { affix = "", "+(50-75)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(50-75)% to Lightning Resistance" }, } }, - ["CorruptionUpgradeMaximumFireResistance1"] = { affix = "", "+(4-5)% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(4-5)% to Maximum Fire Resistance" }, } }, - ["CorruptionUpgradeMaximumColdResistance1"] = { affix = "", "+(4-5)% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(4-5)% to Maximum Cold Resistance" }, } }, - ["CorruptionUpgradeMaximumLightningResistance1"] = { affix = "", "+(4-5)% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(4-5)% to Maximum Lightning Resistance" }, } }, - ["CorruptionUpgradeIncreasedSpirit1"] = { affix = "", "+(40-50) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3981240776] = { "+(40-50) to Spirit" }, } }, + ["CorruptionUpgradeMaximumFireResistance1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(3-5)% to Maximum Fire Resistance" }, } }, + ["CorruptionUpgradeMaximumColdResistance1"] = { affix = "", "+(3-5)% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(3-5)% to Maximum Cold Resistance" }, } }, + ["CorruptionUpgradeMaximumLightningResistance1"] = { affix = "", "+(3-5)% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(3-5)% to Maximum Lightning Resistance" }, } }, + ["CorruptionUpgradeIncreasedSpirit1"] = { affix = "", "+(40-60) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3981240776] = { "+(40-60) to Spirit" }, } }, ["CorruptionUpgradeFirePenetration1"] = { affix = "", "Damage Penetrates (25-40)% Fire Resistance", statOrder = { 2724 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (25-40)% Fire Resistance" }, } }, ["CorruptionUpgradeColdPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Cold Resistance", statOrder = { 2725 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (25-40)% Cold Resistance" }, } }, ["CorruptionUpgradeLightningPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (25-40)% Lightning Resistance" }, } }, - ["CorruptionUpgradeArmourBreak1"] = { affix = "", "Break (25-40)% increased Armour", statOrder = { 4407 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1776411443] = { "Break (25-40)% increased Armour" }, } }, - ["CorruptionUpgradeGoldFoundIncrease1"] = { affix = "", "(15-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHashes = { [3175163625] = { "(15-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["CorruptionUpgradeMaximumEnduranceCharges1"] = { affix = "", "+2 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge", "upgraded_corruption_mod" }, tradeHashes = { [1515657623] = { "+2 to Maximum Endurance Charges" }, } }, - ["CorruptionUpgradeMaximumFrenzyCharges1"] = { affix = "", "+2 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge", "upgraded_corruption_mod" }, tradeHashes = { [4078695] = { "+2 to Maximum Frenzy Charges" }, } }, - ["CorruptionUpgradeMaximumPowerCharges1"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge", "upgraded_corruption_mod" }, tradeHashes = { [227523295] = { "+2 to Maximum Power Charges" }, } }, + ["CorruptionUpgradeArmourBreak1"] = { affix = "", "Break (25-40)% increased Armour", statOrder = { 4404 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1776411443] = { "Break (25-40)% increased Armour" }, } }, + ["CorruptionUpgradeGoldFoundIncrease1"] = { affix = "", "(15-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6913 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHashes = { [3175163625] = { "(15-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["CorruptionUpgradeMaximumEnduranceCharges1"] = { affix = "", "+(2-3) to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge", "upgraded_corruption_mod" }, tradeHashes = { [1515657623] = { "+(2-3) to Maximum Endurance Charges" }, } }, + ["CorruptionUpgradeMaximumFrenzyCharges1"] = { affix = "", "+(2-3) to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge", "upgraded_corruption_mod" }, tradeHashes = { [4078695] = { "+(2-3) to Maximum Frenzy Charges" }, } }, + ["CorruptionUpgradeMaximumPowerCharges1"] = { affix = "", "+(2-3) to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge", "upgraded_corruption_mod" }, tradeHashes = { [227523295] = { "+(2-3) to Maximum Power Charges" }, } }, ["CorruptionUpgradeIncreasedAccuracy1"] = { affix = "", "+(150-300) to Accuracy Rating", statOrder = { 880 }, level = 1, group = "IncreasedAccuracy", weightKey = { "helmet", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [803737631] = { "+(150-300) to Accuracy Rating" }, } }, ["CorruptionUpgradeMovementVelocity1"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, ["CorruptionUpgradeIncreasedStunThreshold1"] = { affix = "", "(50-75)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [680068163] = { "(50-75)% increased Stun Threshold" }, } }, ["CorruptionUpgradeIncreasedFreezeThreshold1"] = { affix = "", "(50-75)% increased Freeze Threshold", statOrder = { 2984 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(50-75)% increased Freeze Threshold" }, } }, - ["CorruptionUpgradeSlowPotency1"] = { affix = "", "(40-50)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(40-50)% reduced Slowing Potency of Debuffs on You" }, } }, + ["CorruptionUpgradeSlowPotency1"] = { affix = "", "(30-40)% reduced Slowing Potency of Debuffs on You", statOrder = { 4743 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(30-40)% reduced Slowing Potency of Debuffs on You" }, } }, ["CorruptionUpgradeLifeRegenerationRate1"] = { affix = "", "(35-50)% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [44972811] = { "(35-50)% increased Life Regeneration rate" }, } }, ["CorruptionUpgradeManaRegeneration1"] = { affix = "", "(35-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [789117908] = { "(35-50)% increased Mana Regeneration Rate" }, } }, - ["CorruptionUpgradeLocalBlockChance1"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHashes = { [2481353198] = { "(20-30)% increased Block chance" }, } }, - ["CorruptionUpgradeMaximumBlockChance1"] = { affix = "", "+(4-5)% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHashes = { [480796730] = { "+(4-5)% to maximum Block chance" }, } }, + ["CorruptionUpgradeLocalBlockChance1"] = { affix = "", "(15-25)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHashes = { [2481353198] = { "(15-25)% increased Block chance" }, } }, + ["CorruptionUpgradeMaximumBlockChance1"] = { affix = "", "+(4-6)% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHashes = { [480796730] = { "+(4-6)% to maximum Block chance" }, } }, ["CorruptionUpgradeGainLifeOnBlock1"] = { affix = "", "(40-55) Life gained when you Block", statOrder = { 1519 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [762600725] = { "(40-55) Life gained when you Block" }, } }, ["CorruptionUpgradeGainManaOnBlock1"] = { affix = "", "(20-30) Mana gained when you Block", statOrder = { 1520 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [2122183138] = { "(20-30) Mana gained when you Block" }, } }, ["CorruptionUpgradeAllResistances1"] = { affix = "", "+(15-35)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "upgraded_corruption_mod", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-35)% to all Elemental Resistances" }, } }, - ["CorruptionUpgradeGlobalFireSpellGemsLevel1"] = { affix = "", "+2 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["CorruptionUpgradeGlobalColdSpellGemsLevel1"] = { affix = "", "+2 to Level of all Cold Spell Skills", statOrder = { 961 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["CorruptionUpgradeGlobalLightningSpellGemsLevel1"] = { affix = "", "+2 to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["CorruptionUpgradeGlobalChaosSpellGemsLevel1"] = { affix = "", "+2 to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["CorruptionUpgradeGlobalPhysicalSpellGemsLevel1"] = { affix = "", "+2 to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["CorruptionUpgradeGlobalMinionSkillGemsLevel1"] = { affix = "", "+2 to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["CorruptionUpgradeGlobalMeleeSkillGemsLevel1"] = { affix = "", "+2 to Level of all Melee Skills", statOrder = { 966 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, + ["CorruptionUpgradeGlobalFireSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Fire Spell Skills", statOrder = { 959 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(2-3) to Level of all Fire Spell Skills" }, } }, + ["CorruptionUpgradeGlobalColdSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Cold Spell Skills", statOrder = { 961 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skills" }, } }, + ["CorruptionUpgradeGlobalLightningSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(2-3) to Level of all Lightning Spell Skills" }, } }, + ["CorruptionUpgradeGlobalChaosSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Chaos Spell Skills", statOrder = { 965 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(2-3) to Level of all Chaos Spell Skills" }, } }, + ["CorruptionUpgradeGlobalPhysicalSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Physical Spell Skills", statOrder = { 1476 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(2-3) to Level of all Physical Spell Skills" }, } }, + ["CorruptionUpgradeGlobalMinionSkillGemsLevel1"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(2-3) to Level of all Minion Skills" }, } }, + ["CorruptionUpgradeGlobalMeleeSkillGemsLevel1"] = { affix = "", "+(2-3) to Level of all Melee Skills", statOrder = { 966 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [9187492] = { "+(2-3) to Level of all Melee Skills" }, } }, ["CorruptionUpgradeItemFoundRarityIncrease1"] = { affix = "", "(25-35)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHashes = { [3917489142] = { "(25-35)% increased Rarity of Items found" }, } }, - ["CorruptionUpgradeAllDamage1"] = { affix = "", "(40-60)% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [2154246560] = { "(40-60)% increased Damage" }, } }, + ["CorruptionUpgradeAllDamage1"] = { affix = "", "(50-75)% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [2154246560] = { "(50-75)% increased Damage" }, } }, ["CorruptionUpgradeIncreasedSkillSpeed1"] = { affix = "", "(8-16)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [970213192] = { "(8-16)% increased Skill Speed" }, } }, - ["CorruptionUpgradeCriticalStrikeMultiplier1"] = { affix = "", "(30-50)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "(30-50)% increased Critical Damage Bonus" }, } }, - ["CorruptionUpgradeGlobalSkillGemLevel1"] = { affix = "", "+2 to Level of all Skills", statOrder = { 949 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [4283407333] = { "+2 to Level of all Skills" }, } }, + ["CorruptionUpgradeCriticalStrikeMultiplier1"] = { affix = "", "(35-60)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "(35-60)% increased Critical Damage Bonus" }, } }, + ["CorruptionUpgradeGlobalSkillGemLevel1"] = { affix = "", "+(2-3) to Level of all Skills", statOrder = { 949 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [4283407333] = { "+(2-3) to Level of all Skills" }, } }, ["CorruptionUpgradeStrength1"] = { affix = "", "+(35-50) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(35-50) to Strength" }, } }, ["CorruptionUpgradeDexterity1"] = { affix = "", "+(35-50) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3261801346] = { "+(35-50) to Dexterity" }, } }, ["CorruptionUpgradeIntelligence1"] = { affix = "", "+(35-50) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [328541901] = { "+(35-50) to Intelligence" }, } }, - ["CorruptionUpgradeLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain (0.33-0.58) charges per Second", statOrder = { 6892 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.33-0.58) charges per Second" }, } }, - ["CorruptionUpgradeManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain (0.33-0.58) charges per Second", statOrder = { 6893 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.33-0.58) charges per Second" }, } }, - ["CorruptionUpgradeCharmChargeGeneration1"] = { affix = "", "Charms gain (0.33-0.58) charges per Second", statOrder = { 6889 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.33-0.58) charges per Second" }, } }, - ["CorruptionUpgradeLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-60)% increased Physical Damage" }, } }, + ["CorruptionUpgradeLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain (0.33-0.58) charges per Second", statOrder = { 6888 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.33-0.58) charges per Second" }, } }, + ["CorruptionUpgradeManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain (0.33-0.58) charges per Second", statOrder = { 6889 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.33-0.58) charges per Second" }, } }, + ["CorruptionUpgradeCharmChargeGeneration1"] = { affix = "", "Charms gain (0.33-0.58) charges per Second", statOrder = { 6885 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.33-0.58) charges per Second" }, } }, + ["CorruptionUpgradeLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(50-75)% increased Physical Damage" }, } }, ["CorruptionUpgradeSpellDamageOnWeapon1"] = { affix = "", "(60-90)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-90)% increased Spell Damage" }, } }, - ["CorruptionUpgradeSpellDamageOnTwoHandWeapon1"] = { affix = "", "(120-180)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-180)% increased Spell Damage" }, } }, - ["CorruptionUpgradeLocalIncreasedSpiritPercent1"] = { affix = "", "(35-45)% increased Spirit", statOrder = { 857 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3984865854] = { "(35-45)% increased Spirit" }, } }, + ["CorruptionUpgradeSpellDamageOnTwoHandWeapon1"] = { affix = "", "(120-240)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-240)% increased Spell Damage" }, } }, + ["CorruptionUpgradeLocalIncreasedSpiritPercent1"] = { affix = "", "(35-60)% increased Spirit", statOrder = { 857 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3984865854] = { "(35-60)% increased Spirit" }, } }, ["CorruptionUpgradeLocalAddedFireDamage1"] = { affix = "", "Adds (30-44) to (55-72) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-44) to (55-72) Fire Damage" }, } }, ["CorruptionUpgradeLocalAddedFireDamageTwoHand1"] = { affix = "", "Adds (73-80) to (91-101) Fire Damage", statOrder = { 832 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (73-80) to (91-101) Fire Damage" }, } }, ["CorruptionUpgradeLocalAddedColdDamage1"] = { affix = "", "Adds (28-42) to (53-69) Cold Damage", statOrder = { 833 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (28-42) to (53-69) Cold Damage" }, } }, @@ -5143,33 +5135,33 @@ return { ["CorruptionUpgradeLocalAddedLightningDamageTwoHand1"] = { affix = "", "Adds (1-3) to (131-141) Lightning Damage", statOrder = { 834 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (131-141) Lightning Damage" }, } }, ["CorruptionUpgradeLocalAddedChaosDamage1"] = { affix = "", "Adds (27-31) to (42-48) Chaos damage", statOrder = { 1291 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (27-31) to (42-48) Chaos damage" }, } }, ["CorruptionUpgradeLocalAddedChaosDamageTwoHand1"] = { affix = "", "Adds (40-46) to (67-75) Chaos damage", statOrder = { 1291 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (40-46) to (67-75) Chaos damage" }, } }, - ["CorruptionUpgradeLocalIncreasedAttackSpeed1"] = { affix = "", "(12-16)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(12-16)% increased Attack Speed" }, } }, + ["CorruptionUpgradeLocalIncreasedAttackSpeed1"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, ["CorruptionUpgradeLocalCriticalStrikeMultiplier1"] = { affix = "", "+(15-25)% to Critical Damage Bonus", statOrder = { 945 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(15-25)% to Critical Damage Bonus" }, } }, - ["CorruptionUpgradeLocalStunDamageIncrease1"] = { affix = "", "Causes (50-75)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [791928121] = { "Causes (50-75)% increased Stun Buildup" }, } }, - ["CorruptionUpgradeLocalWeaponRangeIncrease1"] = { affix = "", "(20-40)% increased Melee Strike Range with this weapon", statOrder = { 7600 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [548198834] = { "(20-40)% increased Melee Strike Range with this weapon" }, } }, + ["CorruptionUpgradeLocalStunDamageIncrease1"] = { affix = "", "Causes (40-60)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [791928121] = { "Causes (40-60)% increased Stun Buildup" }, } }, + ["CorruptionUpgradeLocalWeaponRangeIncrease1"] = { affix = "", "(20-40)% increased Melee Strike Range with this weapon", statOrder = { 7596 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [548198834] = { "(20-40)% increased Melee Strike Range with this weapon" }, } }, ["CorruptionUpgradeLocalChanceToBleed1"] = { affix = "", "(25-50)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { "mace", "sword", "axe", "flail", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "bleed", "upgraded_corruption_mod", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(25-50)% chance to cause Bleeding on Hit" }, } }, - ["CorruptionUpgradeLocalChanceToPoison1"] = { affix = "", "(25-50)% chance to Poison on Hit with this weapon", statOrder = { 7813 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "upgraded_corruption_mod", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(25-50)% chance to Poison on Hit with this weapon" }, } }, - ["CorruptionUpgradeLocalRageOnHit1"] = { affix = "", "Grants (4-6) Rage on Hit", statOrder = { 7705 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1725749947] = { "Grants (4-6) Rage on Hit" }, } }, - ["CorruptionUpgradeLocalChanceToMaim1"] = { affix = "", "(25-50)% chance to Maim on Hit", statOrder = { 7798 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2763429652] = { "(25-50)% chance to Maim on Hit" }, } }, + ["CorruptionUpgradeLocalChanceToPoison1"] = { affix = "", "(25-50)% chance to Poison on Hit with this weapon", statOrder = { 7809 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "upgraded_corruption_mod", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(25-50)% chance to Poison on Hit with this weapon" }, } }, + ["CorruptionUpgradeLocalRageOnHit1"] = { affix = "", "Grants (4-6) Rage on Hit", statOrder = { 7701 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1725749947] = { "Grants (4-6) Rage on Hit" }, } }, + ["CorruptionUpgradeLocalChanceToMaim1"] = { affix = "", "(25-50)% chance to Maim on Hit", statOrder = { 7794 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2763429652] = { "(25-50)% chance to Maim on Hit" }, } }, ["CorruptionUpgradeLocalChanceToBlind1"] = { affix = "", "(25-50)% chance to Blind Enemies on hit", statOrder = { 2013 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2301191210] = { "(25-50)% chance to Blind Enemies on hit" }, } }, ["CorruptionUpgradeWeaponElementalDamage1"] = { affix = "", "(60-90)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "upgraded_corruption_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(60-90)% increased Elemental Damage with Attacks" }, } }, - ["CorruptionUpgradeWeaponElementalDamageTwoHand1"] = { affix = "", "(120-150)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "upgraded_corruption_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(120-150)% increased Elemental Damage with Attacks" }, } }, + ["CorruptionUpgradeWeaponElementalDamageTwoHand1"] = { affix = "", "(140-200)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "upgraded_corruption_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(140-200)% increased Elemental Damage with Attacks" }, } }, ["CorruptionUpgradeAdditionalArrows1"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 990 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, ["CorruptionUpgradeAdditionalAmmo1"] = { affix = "", "Loads 2 additional bolts", statOrder = { 988 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, - ["CorruptionUpgradeIgniteChanceIncrease1"] = { affix = "", "(45-65)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(45-65)% increased Ignite Magnitude" }, } }, + ["CorruptionUpgradeIgniteChanceIncrease1"] = { affix = "", "(50-75)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(50-75)% increased Flammability Magnitude" }, } }, ["CorruptionUpgradeFreezeDamageIncrease1"] = { affix = "", "(50-75)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(50-75)% increased Freeze Buildup" }, } }, - ["CorruptionUpgradeShockChanceIncrease1"] = { affix = "", "(25-50)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(25-50)% increased Magnitude of Shock you inflict" }, } }, + ["CorruptionUpgradeShockChanceIncrease1"] = { affix = "", "(50-75)% increased chance to Shock", statOrder = { 1059 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(50-75)% increased chance to Shock" }, } }, ["CorruptionUpgradeSpellCriticalStrikeChance1"] = { affix = "", "(50-75)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "upgraded_corruption_mod", "caster", "critical" }, tradeHashes = { [737908626] = { "(50-75)% increased Critical Hit Chance for Spells" }, } }, ["CorruptionUpgradeLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (40-55) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3695891184] = { "Gain (40-55) Life per enemy killed" }, } }, ["CorruptionUpgradeManaGainedFromEnemyDeath1"] = { affix = "", "Gain (20-30) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [1368271171] = { "Gain (20-30) Mana per enemy killed" }, } }, ["CorruptionUpgradeIncreasedCastSpeed1"] = { affix = "", "(20-35)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "upgraded_corruption_mod", "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-35)% increased Cast Speed" }, } }, - ["CorruptionUpgradeEnergyShieldDelay1"] = { affix = "", "(35-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [1782086450] = { "(35-50)% faster start of Energy Shield Recharge" }, } }, + ["CorruptionUpgradeEnergyShieldDelay1"] = { affix = "", "(50-75)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [1782086450] = { "(50-75)% faster start of Energy Shield Recharge" }, } }, ["CorruptionUpgradeAlliesInPresenceAllDamage1"] = { affix = "", "Allies in your Presence deal (50-75)% increased Damage", statOrder = { 906 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (50-75)% increased Damage" }, } }, ["CorruptionUpgradeAlliesInPresenceIncreasedAttackSpeed1"] = { affix = "", "Allies in your Presence have (15-25)% increased Attack Speed", statOrder = { 918 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (15-25)% increased Attack Speed" }, } }, ["CorruptionUpgradeAlliesInPresenceIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (15-25)% increased Cast Speed", statOrder = { 919 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "upgraded_corruption_mod", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (15-25)% increased Cast Speed" }, } }, ["CorruptionUpgradeAlliesInPresenceCriticalStrikeMultiplier1"] = { affix = "", "Allies in your Presence have (30-45)% increased Critical Damage Bonus", statOrder = { 917 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-45)% increased Critical Damage Bonus" }, } }, ["CorruptionUpgradeChanceToPierce1"] = { affix = "", "(50-75)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2321178454] = { "(50-75)% chance to Pierce an Enemy" }, } }, - ["CorruptionUpgradeChainFromTerrain1"] = { affix = "", "Projectiles have (25-40)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-40)% chance to Chain an additional time from terrain" }, } }, + ["CorruptionUpgradeChainFromTerrain1"] = { affix = "", "Projectiles have (25-50)% chance to Chain an additional time from terrain", statOrder = { 9534 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-50)% chance to Chain an additional time from terrain" }, } }, ["CorruptionUpgradeJewelStrength1"] = { affix = "", "+(14-16) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(14-16) to Strength" }, } }, ["CorruptionUpgradeJewelDexterity1"] = { affix = "", "+(14-16) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3261801346] = { "+(14-16) to Dexterity" }, } }, ["CorruptionUpgradeJewelIntelligence1"] = { affix = "", "+(14-16) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [328541901] = { "+(14-16) to Intelligence" }, } }, @@ -5179,32 +5171,32 @@ return { ["CorruptionUpgradeJewelChaosResist1"] = { affix = "", "+(10-13)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos_resistance", "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(10-13)% to Chaos Resistance" }, } }, ["CorruptionUpgradeArmourAppliesToElementalDamage"] = { affix = "", "+(30-50)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(30-50)% of Armour also applies to Elemental Damage" }, } }, ["CorruptionUpgradeEvasionAppliesToDeflection"] = { affix = "", "Gain Deflection Rating equal to (30-50)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (30-50)% of Evasion Rating" }, } }, - ["CorruptionUpgradeGlobalDeflectionRating"] = { affix = "", "(20-30)% increased Deflection Rating", statOrder = { 6119 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [3040571529] = { "(20-30)% increased Deflection Rating" }, } }, - ["CorruptionUpgradeDeflectDamageTaken"] = { affix = "", "Prevent +(2-3)% of Damage from Deflected Hits", statOrder = { 4679 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3552135623] = { "Prevent +(2-3)% of Damage from Deflected Hits" }, } }, - ["CorruptionUpgradeMaximumLifeConvertedToEnergyShield"] = { affix = "", "(5-10)% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "upgraded_corruption_mod", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(5-10)% of Maximum Life Converted to Energy Shield" }, } }, + ["CorruptionUpgradeGlobalDeflectionRating"] = { affix = "", "(20-30)% increased Deflection Rating", statOrder = { 6115 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [3040571529] = { "(20-30)% increased Deflection Rating" }, } }, + ["CorruptionUpgradeDeflectDamageTaken"] = { affix = "", "Prevent +(2-3)% of Damage from Deflected Hits", statOrder = { 4675 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3552135623] = { "Prevent +(2-3)% of Damage from Deflected Hits" }, } }, + ["CorruptionUpgradeMaximumLifeConvertedToEnergyShield"] = { affix = "", "(5-10)% of Maximum Life Converted to Energy Shield", statOrder = { 8875 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "upgraded_corruption_mod", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(5-10)% of Maximum Life Converted to Energy Shield" }, } }, ["CorruptionUpgradeGlobalItemAttributeRequirements"] = { affix = "", "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements", statOrder = { 2335 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements" }, } }, ["CorruptionUpgradePercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 998 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3143208761] = { "(5-10)% increased Attributes" }, } }, - ["CorruptionUpgradeDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(5-10)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6116 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3471443885] = { "(5-10)% of Damage taken from Deflected Hits Recouped as Life" }, } }, - ["CorruptionUpgradeDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6043 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2319832234] = { "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["CorruptionUpgradeDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(5-10)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6112 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3471443885] = { "(5-10)% of Damage taken from Deflected Hits Recouped as Life" }, } }, + ["CorruptionUpgradeDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2319832234] = { "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, ["CorruptionUpgradeDamageRemovedFromManaBeforeLife"] = { affix = "", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, ["CorruptionUpgradeManaRecoveryRate"] = { affix = "", "(10-20)% increased Mana Recovery rate", statOrder = { 1450 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [3513180117] = { "(10-20)% increased Mana Recovery rate" }, } }, ["CorruptionUpgradeLifeRecoveryRate"] = { affix = "", "(10-20)% increased Life Recovery rate", statOrder = { 1445 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3240073117] = { "(10-20)% increased Life Recovery rate" }, } }, - ["CorruptionUpgradePercentOfLeechIsInstant"] = { affix = "", "(10-20)% of Leech is Instant", statOrder = { 7425 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3561837752] = { "(10-20)% of Leech is Instant" }, } }, + ["CorruptionUpgradePercentOfLeechIsInstant"] = { affix = "", "(10-20)% of Leech is Instant", statOrder = { 7421 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3561837752] = { "(10-20)% of Leech is Instant" }, } }, ["CorruptionUpgradePhysicalDamageTakenAsRandomElement"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element", statOrder = { 2211 }, level = 1, group = "PhysicalDamageTakenAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental" }, tradeHashes = { [1904530666] = { "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element" }, } }, ["CorruptionUpgradeDamageTakenGainedAsLife"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, ["CorruptionUpgradePercentDamageGoesToMana"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["CorruptionUpgradeThornsCriticalStrikeChance"] = { affix = "", "+(0.05-0.1)% to Thorns Critical Hit Chance", statOrder = { 4758 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(0.05-0.1)% to Thorns Critical Hit Chance" }, } }, - ["CorruptionUpgradeThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour", statOrder = { 4664 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour" }, } }, - ["CorruptionUpgradeThornsDamageIncreaseIfBlockedRecently"] = { affix = "", "(100-150)% increased Thorns damage if you've Blocked Recently", statOrder = { 10255 }, level = 1, group = "ThornsDamageIncreaseIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [483561599] = { "(100-150)% increased Thorns damage if you've Blocked Recently" }, } }, + ["CorruptionUpgradeThornsCriticalStrikeChance"] = { affix = "", "+(0.05-0.1)% to Thorns Critical Hit Chance", statOrder = { 4754 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(0.05-0.1)% to Thorns Critical Hit Chance" }, } }, + ["CorruptionUpgradeThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour", statOrder = { 4661 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour" }, } }, + ["CorruptionUpgradeThornsDamageIncreaseIfBlockedRecently"] = { affix = "", "(100-150)% increased Thorns damage if you've Blocked Recently", statOrder = { 10246 }, level = 1, group = "ThornsDamageIncreaseIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [483561599] = { "(100-150)% increased Thorns damage if you've Blocked Recently" }, } }, ["CorruptionUpgradePhysicalDamageTakenAsChaos"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2212 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "chaos" }, tradeHashes = { [4129825612] = { "(3-6)% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["CorruptionUpgradePhysicalDamageTakenAsFirePercent"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2197 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(3-6)% of Physical Damage from Hits taken as Fire Damage" }, } }, ["CorruptionUpgradePhysicalDamageTakenAsCold"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2206 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(3-6)% of Physical Damage from Hits taken as Cold Damage" }, } }, ["CorruptionUpgradePhysicalDamageTakenAsLightningPercent"] = { affix = "", "(3-6)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2201 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(3-6)% of Physical damage from Hits taken as Lightning damage" }, } }, ["CorruptionUpgradeMaximumChaosResistance"] = { affix = "", "+(1-3)% to Maximum Chaos Resistance", statOrder = { 1012 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+(1-3)% to Maximum Chaos Resistance" }, } }, - ["CorruptionUpgradeHeraldReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Herald Skills", statOrder = { 9765 }, level = 1, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1697191405] = { "(20-30)% increased Reservation Efficiency of Herald Skills" }, } }, - ["CorruptionUpgradeMinionReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Minion Skills", statOrder = { 9767 }, level = 1, group = "MinionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1805633363] = { "(20-30)% increased Reservation Efficiency of Minion Skills" }, } }, - ["CorruptionUpgradeMetaReservationEfficiency"] = { affix = "", "Meta Skills have (20-30)% increased Reservation Efficiency", statOrder = { 9766 }, level = 1, group = "MetaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1672384027] = { "Meta Skills have (20-30)% increased Reservation Efficiency" }, } }, - ["CorruptionUpgradeColdExposureOnHit"] = { affix = "", "(25-50)% chance to inflict Exposure on Hit", statOrder = { 4704 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2630708439] = { "(25-50)% chance to inflict Exposure on Hit" }, } }, + ["CorruptionUpgradeHeraldReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Herald Skills", statOrder = { 9756 }, level = 1, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1697191405] = { "(20-30)% increased Reservation Efficiency of Herald Skills" }, } }, + ["CorruptionUpgradeMinionReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Minion Skills", statOrder = { 9758 }, level = 1, group = "MinionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1805633363] = { "(20-30)% increased Reservation Efficiency of Minion Skills" }, } }, + ["CorruptionUpgradeMetaReservationEfficiency"] = { affix = "", "Meta Skills have (20-30)% increased Reservation Efficiency", statOrder = { 9757 }, level = 1, group = "MetaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1672384027] = { "Meta Skills have (20-30)% increased Reservation Efficiency" }, } }, + ["CorruptionUpgradeColdExposureOnHit"] = { affix = "", "(25-50)% chance to inflict Exposure on Hit", statOrder = { 4700 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2630708439] = { "(25-50)% chance to inflict Exposure on Hit" }, } }, ["CorruptionUpgradeGlobalIncreaseFireSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Fire Spell Skills", statOrder = { 959 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(2-3) to Level of all Fire Spell Skills" }, } }, ["CorruptionUpgradeGlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skills", statOrder = { 961 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skills" }, } }, ["CorruptionUpgradeGlobalIncreaseLightningSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(2-3) to Level of all Lightning Spell Skills" }, } }, @@ -5220,7 +5212,7 @@ return { ["CorruptionUpgradeTwoHandDamageGainedAsPhysical"] = { affix = "", "Gain (35-50)% of Damage as Extra Physical Damage", statOrder = { 1671 }, level = 1, group = "DamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (35-50)% of Damage as Extra Physical Damage" }, } }, ["CorruptionUpgradeTwoHandDamageGainedAsChaos"] = { affix = "", "Gain (35-50)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (35-50)% of Damage as Extra Chaos Damage" }, } }, ["CorruptionUpgradeGlobalSkillGemQuality"] = { affix = "", "+10% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [3655769732] = { "+10% to Quality of all Skills" }, } }, - ["CorruptionUpgradeTemporaryMinionLimit"] = { affix = "", "Temporary Minion Skills have +2 to Limit of Minions summoned", statOrder = { 10247 }, level = 1, group = "TemporaryMinionLimit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +2 to Limit of Minions summoned" }, } }, + ["CorruptionUpgradeTemporaryMinionLimit"] = { affix = "", "Temporary Minion Skills have +2 to Limit of Minions summoned", statOrder = { 10238 }, level = 1, group = "TemporaryMinionLimit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +2 to Limit of Minions summoned" }, } }, ["CorruptionUpgradeMeleeSplash"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1137 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, ["CorruptionUpgradePercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [734614379] = { "(5-10)% increased Strength" }, } }, ["CorruptionUpgradePercentageDexterity"] = { affix = "", "(5-10)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-10)% increased Dexterity" }, } }, @@ -5229,272 +5221,96 @@ return { ["CorruptionUpgradeGlobalFlaskLifeRecovery"] = { affix = "", "(15-30)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [821241191] = { "(15-30)% increased Life Recovery from Flasks" }, } }, ["CorruptionUpgradeFlaskManaRecovery"] = { affix = "", "(15-30)% increased Mana Recovery from Flasks", statOrder = { 1795 }, level = 1, group = "FlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [2222186378] = { "(15-30)% increased Mana Recovery from Flasks" }, } }, ["CorruptionUpgradeCharmIncreasedDuration"] = { affix = "", "(15-30)% increased Duration", statOrder = { 928 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [2541588185] = { "(15-30)% increased Duration" }, } }, - ["CorruptionUpgradeCharmChargesGained"] = { affix = "", "(15-30)% increased Charm Charges gained", statOrder = { 5605 }, level = 1, group = "CharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [3585532255] = { "(15-30)% increased Charm Charges gained" }, } }, + ["CorruptionUpgradeCharmChargesGained"] = { affix = "", "(15-30)% increased Charm Charges gained", statOrder = { 5601 }, level = 1, group = "CharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [3585532255] = { "(15-30)% increased Charm Charges gained" }, } }, ["CorruptionUpgradeOneHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Spell Skills", statOrder = { 950 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHashes = { [124131830] = { "+(1-2) to Level of all Spell Skills" }, } }, ["CorruptionUpgradeTwoHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(3-4) to Level of all Spell Skills", statOrder = { 950 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHashes = { [124131830] = { "+(3-4) to Level of all Spell Skills" }, } }, - ["CorruptionUpgradeBleedDotMultiplier"] = { affix = "", "(40-60)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(40-60)% increased Magnitude of Bleeding you inflict" }, } }, - ["CorruptionUpgradePoisonEffect"] = { affix = "", "(40-60)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(40-60)% increased Magnitude of Poison you inflict" }, } }, - ["CorruptionUpgradeMaximumRage"] = { affix = "", "+(5-10) to Maximum Rage", statOrder = { 9609 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1181501418] = { "+(5-10) to Maximum Rage" }, } }, - ["CorruptionUpgradeSlowPotency"] = { affix = "", "(10-20)% increased Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(10-20)% increased Slowing Potency of Debuffs on You" }, } }, - ["CorruptionUpgradeBlindEffect"] = { affix = "", "(30-50)% increased Blind Effect", statOrder = { 4928 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1585769763] = { "(30-50)% increased Blind Effect" }, } }, + ["CorruptionUpgradeBleedDotMultiplier"] = { affix = "", "(40-60)% increased Magnitude of Bleeding you inflict", statOrder = { 4805 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(40-60)% increased Magnitude of Bleeding you inflict" }, } }, + ["CorruptionUpgradePoisonEffect"] = { affix = "", "(40-60)% increased Magnitude of Poison you inflict", statOrder = { 9489 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(40-60)% increased Magnitude of Poison you inflict" }, } }, + ["CorruptionUpgradeMaximumRage"] = { affix = "", "+(5-10) to Maximum Rage", statOrder = { 9600 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1181501418] = { "+(5-10) to Maximum Rage" }, } }, + ["CorruptionUpgradeSlowPotency"] = { affix = "", "(10-20)% increased Slowing Potency of Debuffs on You", statOrder = { 4743 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(10-20)% increased Slowing Potency of Debuffs on You" }, } }, + ["CorruptionUpgradeBlindEffect"] = { affix = "", "(30-50)% increased Blind Effect", statOrder = { 4924 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1585769763] = { "(30-50)% increased Blind Effect" }, } }, ["CorruptionUpgradeGlobalElementalGemLevel"] = { affix = "", "+(1-2) to Level of all Elemental Skills", statOrder = { 957 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [2901213448] = { "+(1-2) to Level of all Elemental Skills" }, } }, - ["CorruptionUpgradeChanceForNoBolt"] = { affix = "", "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition", statOrder = { 5903 }, level = 1, group = "ChanceForNoBolt", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4273162558] = { "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition" }, } }, + ["CorruptionUpgradeChanceForNoBolt"] = { affix = "", "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition", statOrder = { 5899 }, level = 1, group = "ChanceForNoBolt", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4273162558] = { "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition" }, } }, ["CorruptionUpgradeIgniteEffect"] = { affix = "", "(20-30)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-30)% increased Ignite Magnitude" }, } }, ["CorruptionUpgradeFreezeDuration"] = { affix = "", "(20-30)% increased Freeze Duration on Enemies", statOrder = { 1614 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1073942215] = { "(20-30)% increased Freeze Duration on Enemies" }, } }, - ["CorruptionUpgradeShockEffect"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-30)% increased Magnitude of Shock you inflict" }, } }, + ["CorruptionUpgradeShockEffect"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9836 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-30)% increased Magnitude of Shock you inflict" }, } }, ["CorruptionUpgradeSpellCriticalStrikeMultiplier"] = { affix = "", "(60-90)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "upgraded_corruption_mod", "caster", "critical" }, tradeHashes = { [274716455] = { "(60-90)% increased Critical Spell Damage Bonus" }, } }, - ["CorruptionUpgradeSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10034 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["CorruptionUpgradeMinionDuration"] = { affix = "", "(20-40)% increased Minion Duration", statOrder = { 4728 }, level = 1, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHashes = { [999511066] = { "(20-40)% increased Minion Duration" }, } }, + ["CorruptionUpgradeSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10025 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["CorruptionUpgradeMinionDuration"] = { affix = "", "(20-40)% increased Minion Duration", statOrder = { 4724 }, level = 1, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHashes = { [999511066] = { "(20-40)% increased Minion Duration" }, } }, ["CorruptionUpgradePresenceRadius"] = { affix = "", "(30-60)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "aura" }, tradeHashes = { [101878827] = { "(30-60)% increased Presence Area of Effect" }, } }, ["CorruptionUpgradeProjectileSpeed"] = { affix = "", "(20-40)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [3759663284] = { "(20-40)% increased Projectile Speed" }, } }, - ["CorruptionUpgradeAdditionalChainChance"] = { affix = "", "Projectiles have (20-40)% additional chance to Chain", statOrder = { 4643 }, level = 1, group = "AdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3919642001] = { "Projectiles have (20-40)% additional chance to Chain" }, } }, - ["CorruptionUpgradeReducedIgniteEffectOnSelf"] = { affix = "", "(20-30)% reduced Magnitude of Ignite on you", statOrder = { 7261 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(20-30)% reduced Magnitude of Ignite on you" }, } }, + ["CorruptionUpgradeAdditionalChainChance"] = { affix = "", "Projectiles have (20-40)% additional chance to Chain", statOrder = { 4640 }, level = 1, group = "AdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3919642001] = { "Projectiles have (20-40)% additional chance to Chain" }, } }, + ["CorruptionUpgradeReducedIgniteEffectOnSelf"] = { affix = "", "(20-30)% reduced Magnitude of Ignite on you", statOrder = { 7257 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(20-30)% reduced Magnitude of Ignite on you" }, } }, ["CorruptionUpgradeReducedChillDurationOnSelf"] = { affix = "", "(20-30)% reduced Chill Duration on you", statOrder = { 1064 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(20-30)% reduced Chill Duration on you" }, } }, - ["CorruptionUpgradeReducedShockEffectOnSelf"] = { affix = "", "(20-30)% reduced effect of Shock on you", statOrder = { 9859 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(20-30)% reduced effect of Shock on you" }, } }, - ["CorruptionUpgradeGlobalMaimOnHit"] = { affix = "", "Attacks have (30-50)% chance to Maim on Hit", statOrder = { 7956 }, level = 1, group = "GlobalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have (30-50)% chance to Maim on Hit" }, } }, - ["CorruptionUpgradeSpellsHinderOnHitChance"] = { affix = "", "(30-50)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10035 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [3002506763] = { "(30-50)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["CorruptionUpgradePhysicalDamageOverTimeTaken"] = { affix = "", "(20-30)% reduced Physical Damage taken over time", statOrder = { 4736 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHashes = { [511024200] = { "(20-30)% reduced Physical Damage taken over time" }, } }, + ["CorruptionUpgradeReducedShockEffectOnSelf"] = { affix = "", "(20-30)% reduced effect of Shock on you", statOrder = { 9850 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(20-30)% reduced effect of Shock on you" }, } }, + ["CorruptionUpgradeGlobalMaimOnHit"] = { affix = "", "Attacks have (30-50)% chance to Maim on Hit", statOrder = { 7952 }, level = 1, group = "GlobalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have (30-50)% chance to Maim on Hit" }, } }, + ["CorruptionUpgradeSpellsHinderOnHitChance"] = { affix = "", "(30-50)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10026 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [3002506763] = { "(30-50)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["CorruptionUpgradePhysicalDamageOverTimeTaken"] = { affix = "", "(20-30)% reduced Physical Damage taken over time", statOrder = { 4732 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHashes = { [511024200] = { "(20-30)% reduced Physical Damage taken over time" }, } }, ["CorruptionUpgradeGlobalChanceToBlindOnHit"] = { affix = "", "(30-50)% Global chance to Blind Enemies on Hit", statOrder = { 2703 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2221570601] = { "(30-50)% Global chance to Blind Enemies on Hit" }, } }, - ["CorruptionUpgradeAdditionalFissureChance"] = { affix = "", "Skills which create Fissures have a (20-40)% chance to create an additional Fissure", statOrder = { 9894 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (20-40)% chance to create an additional Fissure" }, } }, - ["ItemCanAlsoRollRingMods"] = { affix = "", "Can roll Ring Modifiers", statOrder = { 6166 }, level = 1, group = "ItemCanAlsoRollRingMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [129891052] = { "Can roll Ring Modifiers" }, } }, - ["ItemCanHaveBaseAndCatalystQuality"] = { affix = "", "Catalysts can be applied to this item", statOrder = { 7391 }, level = 1, group = "ItemCanHaveBaseAndCatalystQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [254952842] = { "Catalysts can be applied to this item" }, } }, - ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueAddedPhysicalDamage4"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (10-15)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsUniqueGiantsBlood1"] = { affix = "", "Hollow Palm Technique", statOrder = { 10708 }, level = 1, group = "KeystoneHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3959337123] = { "Hollow Palm Technique" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed7"] = { affix = "", "5% reduced Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "5% reduced Cast Speed" }, } }, - ["HandWrapsUniqueStunDamageIncrease2"] = { affix = "", "(20-30)% increased Immobilisation buildup", statOrder = { 7193 }, level = 1, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [330530785] = { "(20-30)% increased Immobilisation buildup" }, } }, - ["HandWrapsUniqueStrength47"] = { affix = "", "(15-20)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(15-20)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsUniqueShareChargesWithAllies1"] = { affix = "", "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit", "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit", "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit", statOrder = { 5541, 5542, 5545 }, level = 1, group = "GrantChargesToAlliesOnHitChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [3294345676] = { "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit" }, [991168463] = { "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit" }, [3174788165] = { "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit" }, } }, - ["HandWrapsUniqueIncreasedSkillSpeed1"] = { affix = "", "(13-20)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(13-20)% increased Attack Speed" }, } }, - ["HandWrapsUniqueMaximumManaIncrease3"] = { affix = "", "Cannot Leech Mana", statOrder = { 2350 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, - ["HandWrapsUniqueIncreasedLife9"] = { affix = "", "(7-9)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(7-9)% less damage taken while on Low Life" }, } }, - ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRating3"] = { affix = "", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueCriticalMultiplier2"] = { affix = "", "+(1.5-2)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.5-2)% to Critical Hit Chance" }, } }, - ["HandWrapsUniqueImpaleOnCriticalHit1"] = { affix = "", "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks", statOrder = { 6093 }, level = 1, group = "ThornsOnMeleeCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3760099479] = { "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks" }, } }, - ["HandWrapsUniqueCriticalsCannotConsumeImpale1"] = { affix = "", "(25-35)% increased Thorns Critical Damage Bonus", statOrder = { 4759 }, level = 1, group = "ThornsCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1094302125] = { "(25-35)% increased Thorns Critical Damage Bonus" }, } }, - ["HandWrapsUniqueAttackerTakesDamage8"] = { affix = "", "(24-35) to (36-57) Cold Thorns damage", statOrder = { 10258 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "(24-35) to (36-57) Cold Thorns damage" }, } }, - ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIncreasedLife58"] = { affix = "", "(12-15)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(12-15)% less damage taken while on Low Life" }, } }, - ["HandWrapsUniqueLifeLeech2"] = { affix = "", "Leech (13-17)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (13-17)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsUniqueVaalPact1"] = { affix = "", "Eternal Youth", statOrder = { 10701 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, - ["HandWrapsUniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2752 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, - ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueStrength41"] = { affix = "", "(18-24)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(18-24)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsUniqueLifeGainedFromEnemyDeath11"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, - ["HandWrapsUniqueIncreasedPhysicalDamagePercent1"] = { affix = "", "Attack Damage with Hits is Lucky while you are Surrounded", statOrder = { 4522 }, level = 1, group = "LuckyAttackDamageWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1292739266] = { "Attack Damage with Hits is Lucky while you are Surrounded" }, } }, - ["HandWrapsUniqueCriticalMultiplier1"] = { affix = "", "(15-20)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-20)% increased Critical Damage Bonus" }, } }, - ["HandWrapsUniqueAddedPhysicalDamage2"] = { affix = "", "Attacks Gain (11-15)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (11-15)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsUniqueOverrideWeaponBaseCritical1"] = { affix = "", "+(3-6)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3255 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(3-6)% to Unarmed Melee Attack Critical Hit Chance" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionRating4"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent6"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueAddedColdDamage1"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (10-15)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsUniqueFreezeDamageIncrease2"] = { affix = "", "All Damage from Hits Contributes to Freeze Buildup", statOrder = { 4270 }, level = 1, group = "AllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4052117756] = { "All Damage from Hits Contributes to Freeze Buildup" }, } }, - ["HandWrapsUniqueChillEffect1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2614 }, level = 1, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage from Hits Contributes to Chill Magnitude" }, } }, - ["HandWrapsUniqueColdResist24"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", "+(15-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent7"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueFullManaThreshold1"] = { affix = "", "You are considered on Low Mana while at 50% of maximum Mana or below instead", statOrder = { 7944 }, level = 1, group = "HandWrapsLowManaThreshold", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1439856646] = { "You are considered on Low Mana while at 50% of maximum Mana or below instead" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2091975590] = { "25% more Attack damage while on Low Mana" }, } }, - ["HandWrapsUniqueIncreasedAccuracy4"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsUniqueIntelligence19"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent8"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueChaosResist6"] = { affix = "", "+1% to Maximum Chaos Resistance", "+(7-17)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(7-17)% to Chaos Resistance" }, } }, - ["HandWrapsUniqueBaseChanceToPoison1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5647 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, - ["HandWrapsUniquePoisonStackCount1"] = { affix = "", "Targets can be affected by two of your Chills at the same time", statOrder = { 5246 }, level = 1, group = "HandWrapsApplyAdditionalChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1104235854] = { "Targets can be affected by two of your Chills at the same time" }, } }, - ["HandWrapsUniqueLifeRegeneration12"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.5-1.5)% of maximum Life per second" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent12"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueCriticalStrikeChance5"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-30)% increased Critical Damage Bonus" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed3"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueDexterity19"] = { affix = "", "+(45-60)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(45-60)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsUniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Critical Hit chance for Attacks is (25-40)%", statOrder = { 4502 }, level = 1, group = "AttackCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3998836319] = { "Critical Hit chance for Attacks is (25-40)%" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent36"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed16"] = { affix = "", "(10-20)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-20)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueDexterity45"] = { affix = "", "+(25-35)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(25-35)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsUniqueAddedChaosDamage5"] = { affix = "", "Attacks Gain (17-23)% of Damage as extra Chaos Damage", statOrder = { 9241 }, level = 1, group = "AttackDamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos", "attack" }, tradeHashes = { [1288439911] = { "Attacks Gain (17-23)% of Damage as extra Chaos Damage" }, } }, - ["HandWrapsUniqueGainFearIncarnateOnCulling1"] = { affix = "", "Gain 1 Fear Overwhelming when you Cull a target", statOrder = { 6933 }, level = 1, group = "GainFearOverwhelming", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1373147908] = { "Gain 1 Fear Overwhelming when you Cull a target" }, } }, - ["HandWrapsUniqueElementalDamageConvertToFire1"] = { affix = "", "Physical damage from Hits Contributes to Flammability and", "Ignite Magnitudes, Freeze Buildup, and Shock Chance", statOrder = { 2639, 2639.1 }, level = 1, group = "PhysicalDamageCanFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3268818374] = { "Physical damage from Hits Contributes to Flammability and", "Ignite Magnitudes, Freeze Buildup, and Shock Chance" }, } }, - ["HandWrapsUniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (6-15)% of Fire damage as Extra Physical damage", statOrder = { 1686 }, level = 1, group = "FireDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2848088738] = { "Gain (6-15)% of Fire damage as Extra Physical damage" }, } }, - ["HandWrapsUniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (6-15)% of Cold damage as Extra Physical damage", statOrder = { 1682 }, level = 1, group = "ColdDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1555320175] = { "Gain (6-15)% of Cold damage as Extra Physical damage" }, } }, - ["HandWrapsUniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (6-15)% of Lightning damage as Extra Physical damage", statOrder = { 1678 }, level = 1, group = "LightningDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [2098400428] = { "Gain (6-15)% of Lightning damage as Extra Physical damage" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent2"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueFireResist2"] = { affix = "", "+(2-3)% to Maximum Fire Resistance", "+(15-25)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(2-3)% to Maximum Fire Resistance" }, [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["HandWrapsUniqueColdResist1"] = { affix = "", "(30-50)% increased Chill Duration on you", statOrder = { 1064 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(30-50)% increased Chill Duration on you" }, } }, - ["HandWrapsUniqueDoubleIgniteChance1"] = { affix = "", "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances", statOrder = { 7267 }, level = 1, group = "IgnitedChilledEnemyResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [134900849] = { "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances" }, } }, - ["HandWrapsUniqueFireDamagePercent2"] = { affix = "", "Attacks Gain (4-7)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (4-7)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsUniqueColdDamagePercent2"] = { affix = "", "Attacks Gain (4-7)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (4-7)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsUniqueIncreasedCastSpeed6"] = { affix = "", "(15-25)% reduced Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(15-25)% reduced Attack Speed" }, } }, - ["HandWrapsUniqueSpellDamage1"] = { affix = "", "100% increased Attack Damage", statOrder = { 1156 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "100% increased Attack Damage" }, } }, - ["HandWrapsUniqueIntelligence18"] = { affix = "", "15% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShield10"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent7"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueDexterity10"] = { affix = "", "+(20-40)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(20-40)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsUniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% reduced Attack and Cast Speed" }, } }, - ["HandWrapsUniqueLightningDamageCanElectrocute1"] = { affix = "", "All damage with Attacks Contributes to Electrocution Buildup", statOrder = { 4267 }, level = 1, group = "AllAttackDamageElectrocutes", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2132256285] = { "All damage with Attacks Contributes to Electrocution Buildup" }, } }, - ["HandWrapsUniqueIncreasedCastSpeed7"] = { affix = "", "(9-15)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(9-15)% increased Attack Speed" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShield4"] = { affix = "", "+(60-80) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(60-80) to maximum Runic Ward" }, } }, - ["HandWrapsUniqueIncreasedLife15"] = { affix = "", "+(130-160) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(130-160) to maximum Life" }, } }, - ["HandWrapsUniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack", statOrder = { 9789 }, level = 1, group = "SacrificeLifeToGainWardOnAttack", weightKey = { }, weightVal = { }, modTags = { "runic_ward", "attack" }, tradeHashes = { [2238664497] = { "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent20"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIntelligence10"] = { affix = "", "15% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsUniqueColdResist30"] = { affix = "", "+2% to Maximum Cold Resistance", "+(20-30)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsUniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "You have no Mana Regeneration", statOrder = { 2021 }, level = 1, group = "NoManaRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052246654] = { "You have no Mana Regeneration" }, } }, - ["HandWrapsUniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently", statOrder = { 7988 }, level = 1, group = "IncreasedManaLeechIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHashes = { [3844601656] = { "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently" }, } }, - ["HandWrapsUniqueCriticalStrikeChance14"] = { affix = "", "(40-60)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-60)% increased Critical Hit Chance" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent25"] = { affix = "", "(15-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-25)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIncreasedMana48"] = { affix = "", "(15-25)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2091975590] = { "(15-25)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsUniqueItemFoundRarityIncrease21"] = { affix = "", "(15-25)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(15-25)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsUniqueElementalPenetrationBelowZero1"] = { affix = "", "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance", statOrder = { 6281 }, level = 1, group = "ElementalDamageLowestResist", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1740349133] = { "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance" }, } }, - ["HandWrapsUniqueElementalPenetration1"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["HandWrapsUniqueIncreasedLife10"] = { affix = "", "(6-7)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(6-7)% less damage taken while on Low Life" }, } }, - ["HandWrapsUniqueAddedPhysicalDamage3"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (10-15)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed2"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 6140 }, level = 1, group = "DexteritySatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2233892982] = { "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEvasion25"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEvasion1"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueItemFoundRarityIncrease1"] = { affix = "", "(50-80)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6917 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(50-80)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsUniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 2% of maximum Life on Kill" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEvasion7"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueLifeGainedFromEnemyDeath4"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, - ["HandWrapsUniqueManaGainedFromEnemyDeath5"] = { affix = "", "Recover 3% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, - ["HandWrapsUniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1775 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed8"] = { affix = "", "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently", statOrder = { 5911 }, level = 1, group = "CullThresholdIfCulledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1008466206] = { "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEvasion19"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueStrength23"] = { affix = "", "(10-14)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(10-14)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsUniqueDexterity24"] = { affix = "", "+(25-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5512 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(25-50)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsUniqueLightningResist23"] = { affix = "", "Gain (15-25)% of Lightning damage as Extra Cold damage", statOrder = { 1680 }, level = 1, group = "LightningDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2236478400] = { "Gain (15-25)% of Lightning damage as Extra Cold damage" }, } }, - ["HandWrapsUniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1713 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed11"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEvasion15"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueDecimatingStrike1"] = { affix = "", "Deal Double Damage to Enemies that are on Full Life", statOrder = { 6086 }, level = 1, group = "DoubleDamageToFullLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [231543702] = { "Deal Double Damage to Enemies that are on Full Life" }, } }, - ["HandWrapsUniqueIntelligence22"] = { affix = "", "(20-25)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-25)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed4"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield4"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueLifeGainedFromEnemyDeath3"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, - ["HandWrapsUniqueManaGainedFromEnemyDeath4"] = { affix = "", "Recover 3% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, - ["HandWrapsUniqueEnemiesKilledCountAsYours1"] = { affix = "", "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 943, 943.1, 6095 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602191394] = { "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, [1576794517] = { "Enemies in your Presence killed by anyone count as being killed by you instead" }, } }, - ["HandWrapsUniqueColdResist25"] = { affix = "", "(30-50)% chance to gain Volatility on Kill", statOrder = { 10484 }, level = 1, group = "VolatilityOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3749502527] = { "(30-50)% chance to gain Volatility on Kill" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueChillImmunityWhenChilled1"] = { affix = "", "(15-20)% more damage taken while Cursed", statOrder = { 6958 }, level = 1, group = "HandWrapsDamageTakenWhileCursed", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [276406225] = { "(15-20)% more damage taken while Cursed" }, } }, - ["HandWrapsUniqueFreezeImmunityWhenFrozen1"] = { affix = "", "Enemies you Curse take (20-30)% increased Damage", statOrder = { 3433 }, level = 1, group = "CursedEnemiesDamageTaken", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1984310483] = { "Enemies you Curse take (20-30)% increased Damage" }, } }, - ["HandWrapsUniqueIgniteImmunityWhenIgnited1"] = { affix = "", "(4-6)% reduced Movement Speed while Cursed", statOrder = { 2401 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3988943320] = { "(4-6)% reduced Movement Speed while Cursed" }, } }, - ["HandWrapsUniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5942 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4275855121] = { "Curses you inflict are reflected back to you" }, } }, - ["HandWrapsUniqueIntelligence12"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsUniqueFireResist7"] = { affix = "", "+1% to Maximum Fire Resistance", "+(5-15)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(5-15)% to Fire Resistance" }, } }, - ["HandWrapsUniqueColdResist9"] = { affix = "", "Gain (10-20)% of Fire damage as Extra Lightning damage", statOrder = { 1685 }, level = 1, group = "FireDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [387148449] = { "Gain (10-20)% of Fire damage as Extra Lightning damage" }, } }, - ["HandWrapsUniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 9277 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, - ["HandWrapsUniqueLocalIncreasedEnergyShield11"] = { affix = "", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield21"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueReducedLocalAttributeRequirements5"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "100% increased Attribute Requirements" }, } }, - ["HandWrapsUniqueSlowEffect1"] = { affix = "", "(25-50)% increased Immobilisation buildup", statOrder = { 7193 }, level = 1, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [330530785] = { "(25-50)% increased Immobilisation buildup" }, } }, - ["HandWrapsUniqueCannotImmobilise1"] = { affix = "", "Your Hits cannot Stun enemies", statOrder = { 1611 }, level = 1, group = "CannotStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [373932729] = { "Your Hits cannot Stun enemies" }, } }, - ["HandWrapsUniqueLifeRegeneration23"] = { affix = "", "Regenerate (1.5-3)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-3)% of maximum Life per second" }, } }, - ["HandWrapsUniqueLightningResist28"] = { affix = "", "+(2-3)% to Maximum Lightning Resistance", "+(15-25)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(2-3)% to Maximum Lightning Resistance" }, [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, - ["HandWrapsUniqueIncreasedLife54"] = { affix = "", "(10-12)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(10-12)% less damage taken while on Low Life" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield4"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed1"] = { affix = "", "(8-12)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(8-12)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueAllDamageCanPoison1"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict with Critical Hits", statOrder = { 5820 }, level = 1, group = "PoisonMagnitudeFromCriticalHits", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "critical", "ailment" }, tradeHashes = { [1692314789] = { "(30-40)% increased Magnitude of Poison you inflict with Critical Hits" }, } }, - ["HandWrapsUniqueBaseChanceToPoison2"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 9502 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield2"] = { affix = "", "+(30-50) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(30-50) to maximum Runic Ward" }, } }, - ["HandWrapsUniqueIncreasedLife6"] = { affix = "", "(6-8)% more damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(6-8)% more damage taken while on Low Life" }, } }, - ["HandWrapsUniqueLifeFlaskNoRecovery1"] = { affix = "", "Recover 1% of maximum Runic Ward on Kill", statOrder = { 10517 }, level = 1, group = "WardPercentOnKill", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3334796009] = { "Recover 1% of maximum Runic Ward on Kill" }, } }, - ["HandWrapsUniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 9361 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259470957] = { "On-Kill Effects happen twice" }, } }, - ["HandWrapsUniqueCriticalMultiplier3"] = { affix = "", "+(1-2)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1-2)% to Critical Hit Chance" }, } }, - ["HandWrapsUniqueAddedLightningDamage3"] = { affix = "", "Attacks Gain (17-21)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (17-21)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsUniqueLightningResist26"] = { affix = "", "+2% to Maximum Lightning Resistance", "+(25-35)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(25-35)% to Lightning Resistance" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield17"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIntelligence34"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-30)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsUniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Mana Leech effects also Recover Energy Shield", statOrder = { 7989 }, level = 1, group = "ManaLeechAlsoRecoversEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4051067787] = { "Mana Leech effects also Recover Energy Shield" }, } }, - ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield19"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed13"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueLightningResist29"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", "+(10-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-25)% to Cold Resistance" }, [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, - ["HandWrapsAddedLightningDamageWhileUnarmedUniqueGloves_1"] = { affix = "", "Adds 44 to 66 Cold Damage to Unarmed Melee Hits", statOrder = { 3966 }, level = 1, group = "AddedColdDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1247498990] = { "Adds 44 to 66 Cold Damage to Unarmed Melee Hits" }, } }, - ["HandWrapsBaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(0.8-1.5)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3255 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(0.8-1.5)% to Unarmed Melee Attack Critical Hit Chance" }, } }, - ["HandWrapsUniqueIncreasedSkillSpeed5"] = { affix = "", "(15-25)% increased Attack Speed if you've dealt a Critical Hit Recently", statOrder = { 4566 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "(15-25)% increased Attack Speed if you've dealt a Critical Hit Recently" }, } }, - ["HandWrapsUniqueLocalArmourAndEvasionAndEnergyShield3"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5906 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4238331303] = { "Immobilise enemies at 50% buildup instead of 100%" }, } }, - ["HandWrapsUniqueImmobiliseIncreasedDamageTaken1"] = { affix = "", "(25-35)% Surpassing chance per enemy Power to gain", "Mountain's Teachings on Immobilising an enemy if", "you have the Way of the Mountain Ascendancy Passive Skill", statOrder = { 5402, 5402.1, 5402.2 }, level = 1, group = "MartialArtistStoneSkinChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [13746168] = { "(25-35)% Surpassing chance per enemy Power to gain", "Mountain's Teachings on Immobilising an enemy if", "you have the Way of the Mountain Ascendancy Passive Skill" }, } }, - ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { affix = "", "+(70-100) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(70-100) to maximum Runic Ward" }, } }, - ["HandWrapsUniqueRageOnAnyHit1"] = { affix = "", "Gain (6-8) Rage on Hit", statOrder = { 4699 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2258007247] = { "Gain (6-8) Rage on Hit" }, } }, - ["HandWrapsUniqueGainChargesOnMaximumRage1"] = { affix = "", "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage", statOrder = { 10518 }, level = 1, group = "RecoverPercentWardOnReachingMaximumRage", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [914467738] = { "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage" }, } }, - ["HandWrapsUniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7933 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3851480592] = { "Lose all Rage on reaching Maximum Rage" }, } }, - ["HandWrapsUniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9609 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-10-10) to Maximum Rage" }, } }, - ["HandWrapsUniqueDexterity31"] = { affix = "", "(11-13)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(11-13)% increased Dexterity" }, } }, - ["HandWrapsUniqueIntelligence31"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-10)% increased Intelligence" }, } }, - ["HandWrapsUniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity", statOrder = { 8961 }, level = 1, group = "AddedColdDamagePer20Dexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1088339210] = { "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2323 }, level = 1, group = "AreaOfEffectPer20Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } }, - ["HandWrapsUniqueChaosResist35"] = { affix = "", "+2% to Maximum Chaos Resistance", "+(17-23)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["HandWrapsUniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Mana per Second", statOrder = { 7977 }, level = 1, group = "LoseManaPercentPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2936435999] = { "Lose 5% of maximum Mana per Second" }, } }, - ["HandWrapsUniqueLocalIncreasedArmourAndEvasion30"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed9"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4741 }, level = 1, group = "RageRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2853314994] = { "Regenerate 5 Rage per second" }, } }, - ["HandWrapsUniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 9212 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163076972] = { "No Inherent loss of Rage" }, } }, - ["HandWrapsDemigodIncreasedSkillSpeed1"] = { affix = "", "15% increased Attack Speed if you've dealt a Critical Hit Recently", statOrder = { 4566 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "15% increased Attack Speed if you've dealt a Critical Hit Recently" }, } }, - ["HandWrapsUniqueBaseDamageOverrideForMaceAttacks1"] = { affix = "", "Has 9 to 14 Fire damage, +3 to +5 per Boss's Face Broken", statOrder = { 829 }, level = 1, group = "FacebreakerBaseUnarmedDamageOverrideFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1955786041] = { "Has 9 to 14 Fire damage, +3 to +5 per Boss's Face Broken" }, } }, - ["HandWrapsUniqueUnarmedAttackDamagePerXStrength1"] = { affix = "", "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence", statOrder = { 9308 }, level = 1, group = "UnarmedDamageGainedAsFirePerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1411594757] = { "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence" }, } }, - ["HandWrapsUniqueGainArmourEqualToStrength1"] = { affix = "", "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence", statOrder = { 10379 }, level = 1, group = "UnarmedAreaOfEffectPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1284514818] = { "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence" }, } }, - ["UniqueMagesLegacy01"] = { affix = "", "Legacy of (1-14)", statOrder = { 7917 }, level = 1, group = "UniqueMagesLegacy01", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264262054] = { "Legacy of (1-14)" }, } }, - ["UniqueMagesLegacy02"] = { affix = "", "Legacy of (1-14)", statOrder = { 7918 }, level = 1, group = "UniqueMagesLegacy02", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1279683261] = { "Legacy of (1-14)" }, } }, - ["UniqueMagesLegacy03"] = { affix = "", "Legacy of (1-14)", statOrder = { 7919 }, level = 1, group = "UniqueMagesLegacy03", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3419886123] = { "Legacy of (1-14)" }, } }, - ["UniqueMagesLegacy04"] = { affix = "", "Legacy of (1-14)", statOrder = { 7920 }, level = 1, group = "UniqueMagesLegacy04", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739030262] = { "Legacy of (1-14)" }, } }, - ["UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy"] = { affix = "", "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have", statOrder = { 7921 }, level = 1, group = "UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3874491706] = { "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have" }, } }, - ["LevelDesignTestingMissionRoomStoneCircle8"] = { affix = "", "Area contains a Summoning Circle", "Area contains 8 Reactivation Runes", statOrder = { 8504, 8504.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 8 Reactivation Runes" }, } }, - ["LevelDesignTestingMissionRoomStoneCircle10"] = { affix = "", "Area contains a Summoning Circle", "Area contains 10 Reactivation Runes", statOrder = { 8504, 8504.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 10 Reactivation Runes" }, } }, - ["LevelDesignTestingMissionRoomStoneCircle12"] = { affix = "", "Area contains a Summoning Circle", "Area contains 12 Reactivation Runes", statOrder = { 8504, 8504.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 12 Reactivation Runes" }, } }, - ["UniqueAddedThornsPerRune"] = { affix = "", "(40-50) to (80-100) added Physical Thorns damage per Runic Plate", statOrder = { 6818 }, level = 1, group = "UniqueAddedThornsPerRune", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3926910174] = { "(40-50) to (80-100) added Physical Thorns damage per Runic Plate" }, } }, + ["CorruptionUpgradeAdditionalFissureChance"] = { affix = "", "Skills which create Fissures have a (20-40)% chance to create an additional Fissure", statOrder = { 9885 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (20-40)% chance to create an additional Fissure" }, } }, + ["ItemCanAlsoRollRingMods"] = { affix = "", "Can roll Ring Modifiers", statOrder = { 6162 }, level = 1, group = "ItemCanAlsoRollRingMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [129891052] = { "Can roll Ring Modifiers" }, } }, + ["ItemCanHaveBaseAndCatalystQuality"] = { affix = "", "Catalysts can be applied to this item", statOrder = { 7387 }, level = 1, group = "ItemCanHaveBaseAndCatalystQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [254952842] = { "Catalysts can be applied to this item" }, } }, + ["UniqueMagesLegacy01"] = { affix = "", "Legacy of (1-14)", statOrder = { 7913 }, level = 1, group = "UniqueMagesLegacy01", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264262054] = { "Legacy of (1-14)" }, } }, + ["UniqueMagesLegacy02"] = { affix = "", "Legacy of (1-14)", statOrder = { 7914 }, level = 1, group = "UniqueMagesLegacy02", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1279683261] = { "Legacy of (1-14)" }, } }, + ["UniqueMagesLegacy03"] = { affix = "", "Legacy of (1-14)", statOrder = { 7915 }, level = 1, group = "UniqueMagesLegacy03", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3419886123] = { "Legacy of (1-14)" }, } }, + ["UniqueMagesLegacy04"] = { affix = "", "Legacy of (1-14)", statOrder = { 7916 }, level = 1, group = "UniqueMagesLegacy04", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739030262] = { "Legacy of (1-14)" }, } }, + ["UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy"] = { affix = "", "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have", statOrder = { 7917 }, level = 1, group = "UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3874491706] = { "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have" }, } }, + ["LevelDesignTestingMissionRoomStoneCircle8"] = { affix = "", "Area contains a Summoning Circle", "Area contains 8 Reactivation Runes", statOrder = { 8495, 8495.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 8 Reactivation Runes" }, } }, + ["LevelDesignTestingMissionRoomStoneCircle10"] = { affix = "", "Area contains a Summoning Circle", "Area contains 10 Reactivation Runes", statOrder = { 8495, 8495.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 10 Reactivation Runes" }, } }, + ["LevelDesignTestingMissionRoomStoneCircle12"] = { affix = "", "Area contains a Summoning Circle", "Area contains 12 Reactivation Runes", statOrder = { 8495, 8495.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 12 Reactivation Runes" }, } }, + ["UniqueAddedThornsPerRune"] = { affix = "", "(40-50) to (80-100) added Physical Thorns damage per Runic Plate", statOrder = { 6814 }, level = 1, group = "UniqueAddedThornsPerRune", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3926910174] = { "(40-50) to (80-100) added Physical Thorns damage per Runic Plate" }, } }, ["UniqueAddedPhysicalDamagePerGlobalBlockChance1"] = { affix = "", "Hits with this weapon have (1-2) to (4-5) Added Physical Damage per 1% Block Chance", statOrder = { 2676 }, level = 1, group = "UniqueAddedPhysicalDamagePerGlobalBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2036307261] = { "Hits with this weapon have (1-2) to (4-5) Added Physical Damage per 1% Block Chance" }, } }, - ["PercentOfPhysicalHitDamageAsAdditionalBloodLoss"] = { affix = "", "10% of Physical damage dealt by your Hits causes Blood Loss", statOrder = { 9423 }, level = 1, group = "PercentOfPhysicalHitDamageAsAdditionalBloodLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [70760090] = { "10% of Physical damage dealt by your Hits causes Blood Loss" }, } }, - ["HandWrapsImplicitLocalBaseEvasionAndEnergyShieldPerLevel"] = { affix = "", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "HandWrapsImplicitLocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsImplicitLocalBaseEvasionEnergyShieldAndWardPerLevel"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", "Has +1 to maximum Runic Ward per player level", statOrder = { 842, 844, 847 }, level = 1, group = "HandWrapsImplicitLocalBaseEvasionEnergyShieldAndWardPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [298264758] = { "Has +1 to maximum Runic Ward per player level" }, [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["PercentOfPhysicalHitDamageAsAdditionalBloodLoss"] = { affix = "", "10% of Physical damage dealt by your Hits causes Blood Loss", statOrder = { 9414 }, level = 1, group = "PercentOfPhysicalHitDamageAsAdditionalBloodLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [70760090] = { "10% of Physical damage dealt by your Hits causes Blood Loss" }, } }, ["UniqueMoltenShowerSkill1"] = { affix = "", "Hits with this Weapon have 5% chance to Trigger Molten Shower per 25 Strength", statOrder = { 481 }, level = 1, group = "UniqueGrantsTriggeredMoltenShower", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1867725690] = { "Hits with this Weapon have 5% chance to Trigger Molten Shower per 25 Strength" }, } }, ["UniqueAddedFireDamageToAttacksPer25Strength"] = { affix = "", "5 to 10 Added Attack Fire Damage per 25 Strength", statOrder = { 1821 }, level = 1, group = "AddedFireDamagePer25Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4186798932] = { "5 to 10 Added Attack Fire Damage per 25 Strength" }, } }, - ["UniqueLightningDamageToBleedingEnemiesCanElectrocute1"] = { affix = "", "DNT-UNUSED Lightning Damage from Hits against Bleeding enemies Contributes to Electrocute buildup", statOrder = { 4283 }, level = 1, group = "LightningDamageToBleedingEnemiesCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2700167617] = { "DNT-UNUSED Lightning Damage from Hits against Bleeding enemies Contributes to Electrocute buildup" }, } }, - ["UniqueBleedingInflictedOnShockedEnemiesIsAggravated1"] = { affix = "", "DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated", statOrder = { 4237 }, level = 1, group = "BleedingInflictedOnShockedEnemiesIsAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2293158400] = { "DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated" }, } }, + ["UniqueLightningDamageToBleedingEnemiesCanElectrocute1"] = { affix = "", "DNT-UNUSED Lightning Damage from Hits against Bleeding enemies Contributes to Electrocute buildup", statOrder = { 4280 }, level = 1, group = "LightningDamageToBleedingEnemiesCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2700167617] = { "DNT-UNUSED Lightning Damage from Hits against Bleeding enemies Contributes to Electrocute buildup" }, } }, + ["UniqueBleedingInflictedOnShockedEnemiesIsAggravated1"] = { affix = "", "DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated", statOrder = { 4234 }, level = 1, group = "BleedingInflictedOnShockedEnemiesIsAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2293158400] = { "DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated" }, } }, ["VerisiumSacrificialGarbImplicitLifePerCorruptedItem1"] = { affix = "", "1% increased Maximum Life for each Corrupted Item Equipped", statOrder = { 2825 }, level = 1, group = "MaximumLifePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4169430079] = { "1% increased Maximum Life for each Corrupted Item Equipped" }, } }, ["VerisiumSacrificialGarbImplicitAllResistancePerCorruptedItem1"] = { affix = "", "+1% to all Resistances for each Corrupted Item Equipped", statOrder = { 2831 }, level = 1, group = "AllResistancesPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3100523498] = { "+1% to all Resistances for each Corrupted Item Equipped" }, } }, ["VerisiumSacrificialGarbImplicitChaosDamagePerCorruptedItem1"] = { affix = "", "(2-4)% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 2827 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4004011170] = { "(2-4)% increased Chaos Damage for each Corrupted Item Equipped" }, } }, - ["BrynhandsMarkVerisiumImplicitAreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-30)% increased Area of Effect for Attacks" }, } }, - ["SculptedSufferingVerisiumImplicitArmourBreakEffect1"] = { affix = "", "(30-40)% increased effect of Fully Broken Armour", statOrder = { 5236 }, level = 1, group = "ArmourBreakEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(30-40)% increased effect of Fully Broken Armour" }, } }, - ["EmptyRoarVerisiumBleedDuration1"] = { affix = "", "(20-30)% increased Bleeding Duration", statOrder = { 4660 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(20-30)% increased Bleeding Duration" }, } }, - ["BloodThornVerisiumImplicitBleedMagnitude1"] = { affix = "", "50% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "50% increased Magnitude of Bleeding you inflict" }, } }, + ["BrynhandsMarkVerisiumImplicitAreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-30)% increased Area of Effect for Attacks" }, } }, + ["SculptedSufferingVerisiumImplicitArmourBreakEffect1"] = { affix = "", "(30-40)% increased effect of Fully Broken Armour", statOrder = { 5232 }, level = 1, group = "ArmourBreakEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(30-40)% increased effect of Fully Broken Armour" }, } }, + ["EmptyRoarVerisiumBleedDuration1"] = { affix = "", "(20-30)% increased Bleeding Duration", statOrder = { 4657 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(20-30)% increased Bleeding Duration" }, } }, + ["BloodThornVerisiumImplicitBleedMagnitude1"] = { affix = "", "50% increased Magnitude of Bleeding you inflict", statOrder = { 4805 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "50% increased Magnitude of Bleeding you inflict" }, } }, ["SentryFasterVerisiumImplicitFasterIgnite1"] = { affix = "", "Ignites you inflict deal Damage (30-40)% faster", statOrder = { 2346 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (30-40)% faster" }, } }, - ["QuillRainVerisiumImplicitForkExtraProjectile"] = { affix = "", "Projectiles have 50% chance for an additional Projectile when Forking", statOrder = { 5515 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have 50% chance for an additional Projectile when Forking" }, } }, + ["QuillRainVerisiumImplicitForkExtraProjectile"] = { affix = "", "Projectiles have 50% chance for an additional Projectile when Forking", statOrder = { 5511 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have 50% chance for an additional Projectile when Forking" }, } }, ["HyssegsClawVerisiumImplicitMinionDamageUpgraded1"] = { affix = "", "Minions deal (51-100)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (51-100)% increased Damage" }, } }, ["KeeperOfTheArcVerisiumImplicit3Sockets1"] = { affix = "", "Has 3 Sockets", statOrder = { 57 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 3 Sockets" }, } }, - ["KeeperOfTheArcVerisiumImplicitWardRegen1"] = { affix = "", "(25-50)% increased Runic Ward Regeneration Rate", statOrder = { 10520 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(25-50)% increased Runic Ward Regeneration Rate" }, } }, + ["KeeperOfTheArcVerisiumImplicitWardRegen1"] = { affix = "", "(25-50)% increased Runic Ward Regeneration Rate", statOrder = { 10510 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(25-50)% increased Runic Ward Regeneration Rate" }, } }, ["KeeperOfTheArcVerisiumImplicitIntelligenceRequirement1"] = { affix = "", "+250 Intelligence Requirement", statOrder = { 820 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+250 Intelligence Requirement" }, } }, ["KeeperOfTheArcVerisiumImplicitUnaffectedbyCurses1"] = { affix = "", "100% reduced Duration of Curses on you", statOrder = { 1912 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "100% reduced Duration of Curses on you" }, } }, - ["KeeperOfTheArcVerisiumImplicitVerisiumCharges1"] = { affix = "", "Every 5 seconds, gain a Verisium Infusion", statOrder = { 6711 }, level = 1, group = "VerisiumChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3326854490] = { "Every 5 seconds, gain a Verisium Infusion" }, } }, - ["SvalinnVerisiumImplicitRunicWardOnBlock1"] = { affix = "", "Recover (15-25) Runic Ward when you Block", statOrder = { 9682 }, level = 1, group = "WardOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1568848828] = { "Recover (15-25) Runic Ward when you Block" }, } }, + ["KeeperOfTheArcVerisiumImplicitVerisiumCharges1"] = { affix = "", "Every 5 seconds, gain a Verisium Infusion", statOrder = { 6707 }, level = 1, group = "VerisiumChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3326854490] = { "Every 5 seconds, gain a Verisium Infusion" }, } }, + ["SvalinnVerisiumImplicitRunicWardOnBlock1"] = { affix = "", "Recover (15-25) Runic Ward when you Block", statOrder = { 9673 }, level = 1, group = "WardOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1568848828] = { "Recover (15-25) Runic Ward when you Block" }, } }, ["SvalinnVerisiumImplicitManaBeforeLife1"] = { affix = "", "(15-25)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(15-25)% of Damage is taken from Mana before Life" }, } }, ["OlrovasaraVerisiumImplicitLightningToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1713 }, level = 1, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, - ["OlrovasaraVerisiumImplicitDamageAsExtraLightningPerRunicWard1"] = { affix = "", "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost", statOrder = { 9255 }, level = 1, group = "DamagePerWardSpentOnSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2728425538] = { "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost" }, } }, + ["OlrovasaraVerisiumImplicitDamageAsExtraLightningPerRunicWard1"] = { affix = "", "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost", statOrder = { 9246 }, level = 1, group = "DamagePerWardSpentOnSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2728425538] = { "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost" }, } }, ["OlrovasaraVerisiumImplicitWeaponRange1"] = { affix = "", "+(1.5-2) metres to Melee Strike Range", statOrder = { 2314 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+(1.5-2) metres to Melee Strike Range" }, } }, - ["WaistgateVerisiumImplicitLifeFlaskToRunicWard1"] = { affix = "", "(15-25)% Life Recovery from Flasks also applies to Runic Ward", statOrder = { 7474 }, level = 1, group = "LifeFlaskAppliesToRunicWard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2650263616] = { "(15-25)% Life Recovery from Flasks also applies to Runic Ward" }, } }, - ["WaistgateVerisiumImplicitRunicWardRegeneration1"] = { affix = "", "(20-40)% increased Runic Ward Regeneration Rate", statOrder = { 10520 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(20-40)% increased Runic Ward Regeneration Rate" }, } }, - ["WaistgateVerisiumImplicitRunicWardCanOverflow1"] = { affix = "", "Runic Ward recovery can can Overflow maximum Runic Ward", statOrder = { 10519 }, level = 1, group = "RunicWardOverflow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408607858] = { "Runic Ward recovery can can Overflow maximum Runic Ward" }, } }, - ["WaistgateVerisiumImplicitFlaskChargeGeneration1"] = { affix = "", "Flasks gain (0.5-1) charges per Second", statOrder = { 6888 }, level = 1, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain (0.5-1) charges per Second" }, } }, + ["WaistgateVerisiumImplicitLifeFlaskToRunicWard1"] = { affix = "", "(15-25)% Life Recovery from Flasks also applies to Runic Ward", statOrder = { 7470 }, level = 1, group = "LifeFlaskAppliesToRunicWard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2650263616] = { "(15-25)% Life Recovery from Flasks also applies to Runic Ward" }, } }, + ["WaistgateVerisiumImplicitRunicWardRegeneration1"] = { affix = "", "(20-40)% increased Runic Ward Regeneration Rate", statOrder = { 10510 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(20-40)% increased Runic Ward Regeneration Rate" }, } }, + ["WaistgateVerisiumImplicitRunicWardCanOverflow1"] = { affix = "", "Runic Ward recovery can can Overflow maximum Runic Ward", statOrder = { 10509 }, level = 1, group = "RunicWardOverflow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408607858] = { "Runic Ward recovery can can Overflow maximum Runic Ward" }, } }, + ["WaistgateVerisiumImplicitFlaskChargeGeneration1"] = { affix = "", "Flasks gain (0.5-1) charges per Second", statOrder = { 6884 }, level = 1, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain (0.5-1) charges per Second" }, } }, ["MjolnerVerisiumImplicitLightningDamage1"] = { affix = "", "(40-60)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(40-60)% increased Lightning Damage" }, } }, - ["MjolnerVerisiumImplicitLightningChain1"] = { affix = "", "(50-100)% chance for Lightning Skills to Chain an additional time", statOrder = { 7564 }, level = 1, group = "LightningChanceToChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3112931530] = { "(50-100)% chance for Lightning Skills to Chain an additional time" }, } }, - ["TwistedEmpyreanVerisiumImplicitAdditionalFissures1"] = { affix = "", "Skills which create Fissures have a 50% chance to create an additional Fissure", statOrder = { 9894 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a 50% chance to create an additional Fissure" }, } }, + ["MjolnerVerisiumImplicitLightningChain1"] = { affix = "", "(50-100)% chance for Lightning Skills to Chain an additional time", statOrder = { 7560 }, level = 1, group = "LightningChanceToChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3112931530] = { "(50-100)% chance for Lightning Skills to Chain an additional time" }, } }, + ["TwistedEmpyreanVerisiumImplicitAdditionalFissures1"] = { affix = "", "Skills which create Fissures have a 50% chance to create an additional Fissure", statOrder = { 9885 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a 50% chance to create an additional Fissure" }, } }, ["TwistedEmpyreanVerisiumImplicitFreezeBuildup1"] = { affix = "", "(200-300)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(200-300)% increased Freeze Buildup" }, } }, ["TheUnleashedVerisiumImplicitArcaneSurgeEffect1"] = { affix = "", "(30-50)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(30-50)% increased effect of Arcane Surge on you" }, } }, ["TheUnleashedVerisiumImplicitBypassEnergyShield1"] = { affix = "", "(10-15)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(10-15)% increased Energy Shield Recharge Rate" }, } }, ["EventidePetalsVerisiumImplicitMaxColdRes1"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, ["EventidePetalsVerisiumImplicitColdSkills1"] = { affix = "", "+(1-2) to Level of all Cold Skills", statOrder = { 960 }, level = 1, group = "GlobalColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1078455967] = { "+(1-2) to Level of all Cold Skills" }, } }, ["EventidePetalsVerisiumImplicitRunicWardPercent1"] = { affix = "", "(15-20)% increased maximum Runic Ward", statOrder = { 891 }, level = 1, group = "GlobalRunicWardPercent", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [4273473110] = { "(15-20)% increased maximum Runic Ward" }, } }, - ["RuneseekersCallVerisiumImplicitChanceForTwoProjectiles1"] = { affix = "", "(30-50)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10034 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2910761524] = { "(30-50)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["RuneseekersCallVerisiumImplicitChanceForTwoProjectiles1"] = { affix = "", "(30-50)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10025 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2910761524] = { "(30-50)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, ["RuneseekersCallVerisiumImplicitManaRegen1"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, ["RuneseekersCallVerisiumImplicitMaximumRunicWard"] = { affix = "", "+300 to maximum Runic Ward", statOrder = { 890 }, level = 1, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+300 to maximum Runic Ward" }, } }, - ["UniqueJewelGrantsVoicesJewelSockets1"] = { affix = "", "Allocates 2 Sinister Jewel sockets", statOrder = { 10410 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 2 Sinister Jewel sockets" }, } }, - ["UniqueJewelGrantsVoicesJewelSockets2"] = { affix = "", "Allocates 3 Sinister Jewel sockets", statOrder = { 10410 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 3 Sinister Jewel sockets" }, } }, - ["UniqueJewelGrantsVoicesJewelSockets3"] = { affix = "", "Allocates 4 Sinister Jewel sockets", statOrder = { 10410 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 4 Sinister Jewel sockets" }, } }, - ["UniqueJewelSplitPersonalityClassStart1"] = { affix = "", "Can Allocate Passive Skills from the Warrior's starting point", statOrder = { 7754 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStr", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1359862146] = { "Can Allocate Passive Skills from the Warrior's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart2"] = { affix = "", "Can Allocate Passive Skills from the Ranger's starting point", statOrder = { 7751 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartDex", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3116298775] = { "Can Allocate Passive Skills from the Ranger's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart3"] = { affix = "", "Can Allocate Passive Skills from the Sorceress's starting point", statOrder = { 7753 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3359496001] = { "Can Allocate Passive Skills from the Sorceress's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart4"] = { affix = "", "Can Allocate Passive Skills from the Mercenary's starting point", statOrder = { 7755 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStrDex", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [738592688] = { "Can Allocate Passive Skills from the Mercenary's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart5"] = { affix = "", "Can Allocate Passive Skills from the Templar's starting point", statOrder = { 7756 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStrInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1688294122] = { "Can Allocate Passive Skills from the Templar's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart6"] = { affix = "", "Can Allocate Passive Skills from the Shadow's starting point", statOrder = { 7752 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartDexInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2218479786] = { "Can Allocate Passive Skills from the Shadow's starting point" }, } }, + ["UniqueJewelGrantsVoicesJewelSockets1"] = { affix = "", "Allocates 2 Sinister Jewel sockets", statOrder = { 10401 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 2 Sinister Jewel sockets" }, } }, + ["UniqueJewelGrantsVoicesJewelSockets2"] = { affix = "", "Allocates 3 Sinister Jewel sockets", statOrder = { 10401 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 3 Sinister Jewel sockets" }, } }, + ["UniqueJewelGrantsVoicesJewelSockets3"] = { affix = "", "Allocates 4 Sinister Jewel sockets", statOrder = { 10401 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 4 Sinister Jewel sockets" }, } }, + ["UniqueJewelSplitPersonalityClassStart1"] = { affix = "", "Can Allocate Passive Skills from the Warrior's starting point", statOrder = { 7750 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStr", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1359862146] = { "Can Allocate Passive Skills from the Warrior's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart2"] = { affix = "", "Can Allocate Passive Skills from the Ranger's starting point", statOrder = { 7747 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartDex", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3116298775] = { "Can Allocate Passive Skills from the Ranger's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart3"] = { affix = "", "Can Allocate Passive Skills from the Sorceress's starting point", statOrder = { 7749 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3359496001] = { "Can Allocate Passive Skills from the Sorceress's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart4"] = { affix = "", "Can Allocate Passive Skills from the Mercenary's starting point", statOrder = { 7751 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStrDex", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [738592688] = { "Can Allocate Passive Skills from the Mercenary's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart5"] = { affix = "", "Can Allocate Passive Skills from the Templar's starting point", statOrder = { 7752 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStrInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1688294122] = { "Can Allocate Passive Skills from the Templar's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart6"] = { affix = "", "Can Allocate Passive Skills from the Shadow's starting point", statOrder = { 7748 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartDexInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2218479786] = { "Can Allocate Passive Skills from the Shadow's starting point" }, } }, ["UniqueMaximumEnergyShieldIsPercentOfStrength1"] = { affix = "", "Your maximum Energy Shield is equal to (200-300)% of your Strength", statOrder = { 1907 }, level = 1, group = "MaximumEnergyShieldIsPercentOfStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [758226825] = { "Your maximum Energy Shield is equal to (200-300)% of your Strength" }, } }, - ["UniqueEnergyShieldCannotBeConverted1"] = { affix = "", "Maximum Energy Shield cannot be Converted", statOrder = { 6420 }, level = 1, group = "EnergyShieldCannotBeConverted", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2104359366] = { "Maximum Energy Shield cannot be Converted" }, } }, - ["UniqueLifeRegenerationPer10Intelligence1"] = { affix = "", "Regenerate 2 Life per second for every 10 Intelligence", statOrder = { 7511 }, level = 1, group = "LifeRegenerationPer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1312381104] = { "Regenerate 2 Life per second for every 10 Intelligence" }, } }, + ["UniqueEnergyShieldCannotBeConverted1"] = { affix = "", "Maximum Energy Shield cannot be Converted", statOrder = { 6416 }, level = 1, group = "EnergyShieldCannotBeConverted", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2104359366] = { "Maximum Energy Shield cannot be Converted" }, } }, + ["UniqueLifeRegenerationPer10Intelligence1"] = { affix = "", "Regenerate 2 Life per second for every 10 Intelligence", statOrder = { 7507 }, level = 1, group = "LifeRegenerationPer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1312381104] = { "Regenerate 2 Life per second for every 10 Intelligence" }, } }, } \ No newline at end of file diff --git a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua index 4a78e6f618..d1665c273a 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -3,13 +3,13 @@ return { ["JewelAccuracy"] = { type = "Prefix", affix = "Accurate", "(5-10)% increased Accuracy Rating", statOrder = { 1332 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(5-10)% increased Accuracy Rating" }, } }, - ["JewelAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(5-15)% increased chance to inflict Ailments", statOrder = { 4255 }, level = 1, group = "AilmentChance", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1772247089] = { "(5-15)% increased chance to inflict Ailments" }, } }, - ["JewelAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(5-15)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 1, group = "AilmentEffect", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(5-15)% increased Magnitude of Ailments you inflict" }, } }, - ["JewelAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4266 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, + ["JewelAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(5-15)% increased chance to inflict Ailments", statOrder = { 4252 }, level = 1, group = "AilmentChance", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1772247089] = { "(5-15)% increased chance to inflict Ailments" }, } }, + ["JewelAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(5-15)% increased Magnitude of Ailments you inflict", statOrder = { 4256 }, level = 1, group = "AilmentEffect", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(5-15)% increased Magnitude of Ailments you inflict" }, } }, + ["JewelAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4263 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, ["JewelAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(4-6)% increased Area of Effect", statOrder = { 1630 }, level = 1, group = "AreaOfEffect", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-6)% increased Area of Effect" }, } }, ["JewelArmour"] = { type = "Prefix", affix = "Armoured", "(10-20)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-20)% increased Armour" }, } }, - ["JewelArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (5-15)% increased Armour", statOrder = { 4407 }, level = 1, group = "ArmourBreak", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (5-15)% increased Armour" }, } }, - ["JewelArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(10-20)% increased Armour Break Duration", statOrder = { 4409 }, level = 1, group = "ArmourBreakDuration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(10-20)% increased Armour Break Duration" }, } }, + ["JewelArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (5-15)% increased Armour", statOrder = { 4404 }, level = 1, group = "ArmourBreak", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (5-15)% increased Armour" }, } }, + ["JewelArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(10-20)% increased Armour Break Duration", statOrder = { 4406 }, level = 1, group = "ArmourBreakDuration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(10-20)% increased Armour Break Duration" }, } }, ["JewelAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(6-16)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(6-16)% increased Critical Hit Chance for Attacks" }, } }, ["JewelAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(10-20)% increased Critical Damage Bonus for Attack Damage", statOrder = { 981 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-20)% increased Critical Damage Bonus for Attack Damage" }, } }, ["JewelAttackDamage"] = { type = "Prefix", affix = "Combat", "(5-15)% increased Attack Damage", statOrder = { 1156 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(5-15)% increased Attack Damage" }, } }, @@ -17,72 +17,72 @@ return { ["JewelAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (3-7)% increased Magnitudes", statOrder = { 2574 }, level = 1, group = "AuraEffectForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "aura" }, tradeHashes = { [315791320] = { "Aura Skills have (3-7)% increased Magnitudes" }, } }, ["JewelAxeDamage"] = { type = "Prefix", affix = "Sinister", "(5-15)% increased Damage with Axes", statOrder = { 1233 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(5-15)% increased Damage with Axes" }, } }, ["JewelAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(2-4)% increased Attack Speed with Axes", statOrder = { 1319 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(2-4)% increased Attack Speed with Axes" }, } }, - ["JewelBleedingChance"] = { type = "Prefix", affix = "Bleeding", "(3-7)% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [2174054121] = { "(3-7)% chance to inflict Bleeding on Hit" }, } }, - ["JewelBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(5-10)% increased Bleeding Duration", statOrder = { 4660 }, level = 1, group = "BleedDuration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(5-10)% increased Bleeding Duration" }, } }, - ["JewelBlindEffect"] = { type = "Prefix", affix = "Stifling", "(5-10)% increased Blind Effect", statOrder = { 4928 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(5-10)% increased Blind Effect" }, } }, - ["JewelBlindonHit"] = { type = "Suffix", affix = "of Blinding", "(3-7)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(3-7)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["JewelBleedingChance"] = { type = "Prefix", affix = "Bleeding", "(3-7)% chance to inflict Bleeding on Hit", statOrder = { 4668 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [2174054121] = { "(3-7)% chance to inflict Bleeding on Hit" }, } }, + ["JewelBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(5-10)% increased Bleeding Duration", statOrder = { 4657 }, level = 1, group = "BleedDuration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(5-10)% increased Bleeding Duration" }, } }, + ["JewelBlindEffect"] = { type = "Prefix", affix = "Stifling", "(5-10)% increased Blind Effect", statOrder = { 4924 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(5-10)% increased Blind Effect" }, } }, + ["JewelBlindonHit"] = { type = "Suffix", affix = "of Blinding", "(3-7)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(3-7)% chance to Blind Enemies on Hit with Attacks" }, } }, ["JewelBlock"] = { type = "Prefix", affix = "Protecting", "(3-7)% increased Block chance", statOrder = { 1133 }, level = 1, group = "IncreasedBlockChance", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(3-7)% increased Block chance" }, } }, ["JewelDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(10-20)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2926 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1852872083] = { "(10-20)% increased Damage with Hits against Rare and Unique Enemies" }, } }, ["JewelBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(5-15)% increased Accuracy Rating with Bows", statOrder = { 1341 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [169946467] = { "(5-15)% increased Accuracy Rating with Bows" }, } }, ["JewelBowDamage"] = { type = "Prefix", affix = "Perforating", "(6-16)% increased Damage with Bows", statOrder = { 1253 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4188894176] = { "(6-16)% increased Damage with Bows" }, } }, ["JewelBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(2-4)% increased Attack Speed with Bows", statOrder = { 1324 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(2-4)% increased Attack Speed with Bows" }, } }, ["JewelCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, - ["JewelChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (3-5)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (3-5)% chance to Chain an additional time from terrain" }, } }, + ["JewelChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (3-5)% chance to Chain an additional time from terrain", statOrder = { 9534 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (3-5)% chance to Chain an additional time from terrain" }, } }, ["JewelCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(5-15)% increased Charm Effect Duration", statOrder = { 900 }, level = 1, group = "CharmDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(5-15)% increased Charm Effect Duration" }, } }, - ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5605 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-15)% increased Charm Charges gained" }, } }, - ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 6023 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, tradeHashes = { [627767961] = { "(10-20)% increased Damage while you have an active Charm" }, } }, + ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5601 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-15)% increased Charm Charges gained" }, } }, + ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 6019 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, tradeHashes = { [627767961] = { "(10-20)% increased Damage while you have an active Charm" }, } }, ["JewelChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(7-13)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(7-13)% increased Chaos Damage" }, } }, ["JewelChillDuration"] = { type = "Suffix", affix = "of Frost", "(15-25)% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(15-25)% increased Chill Duration on Enemies" }, } }, ["JewelColdDamage"] = { type = "Prefix", affix = "Chilling", "(5-15)% increased Cold Damage", statOrder = { 874 }, level = 1, group = "ColdDamagePercentage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(5-15)% increased Cold Damage" }, } }, ["JewelColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (5-10)% Cold Resistance", statOrder = { 2725 }, level = 1, group = "ColdResistancePenetration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-10)% Cold Resistance" }, } }, - ["JewelCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(3-5)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(3-5)% increased Cooldown Recovery Rate" }, } }, + ["JewelCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(3-5)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(3-5)% increased Cooldown Recovery Rate" }, } }, ["JewelCorpses"] = { type = "Prefix", affix = "Necromantic", "(10-20)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3901 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2118708619] = { "(10-20)% increased Damage if you have Consumed a Corpse Recently" }, } }, - ["JewelCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5818 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, + ["JewelCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5814 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, ["JewelCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(5-15)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(5-15)% increased Critical Hit Chance" }, } }, ["JewelCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(10-20)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-20)% increased Critical Damage Bonus" }, } }, ["JewelSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(10-20)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(10-20)% increased Critical Spell Damage Bonus" }, } }, ["JewelCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(6-16)% increased Damage with Crossbows", statOrder = { 3948 }, level = 1, group = "CrossbowDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [427684353] = { "(6-16)% increased Damage with Crossbows" }, } }, - ["JewelCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(10-15)% increased Crossbow Reload Speed", statOrder = { 9734 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3192728503] = { "(10-15)% increased Crossbow Reload Speed" }, } }, + ["JewelCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(10-15)% increased Crossbow Reload Speed", statOrder = { 9725 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3192728503] = { "(10-15)% increased Crossbow Reload Speed" }, } }, ["JewelCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(2-4)% increased Attack Speed with Crossbows", statOrder = { 3952 }, level = 1, group = "CrossbowSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1135928777] = { "(2-4)% increased Attack Speed with Crossbows" }, } }, ["JewelCurseArea"] = { type = "Prefix", affix = "Expanding", "(8-12)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-12)% increased Area of Effect of Curses" }, } }, - ["JewelCurseDelay"] = { type = "Suffix", affix = "of Chanting", "(5-15)% faster Curse Activation", statOrder = { 5924 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(5-15)% faster Curse Activation" }, } }, + ["JewelCurseDelay"] = { type = "Suffix", affix = "of Chanting", "(5-15)% faster Curse Activation", statOrder = { 5920 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(5-15)% faster Curse Activation" }, } }, ["JewelCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(15-25)% increased Curse Duration", statOrder = { 1540 }, level = 1, group = "BaseCurseDuration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3824372849] = { "(15-25)% increased Curse Duration" }, } }, ["JewelCurseEffect"] = { type = "Prefix", affix = "Hexing", "(2-4)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(2-4)% increased Curse Magnitudes" }, } }, ["JewelDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(6-16)% increased Critical Hit Chance with Daggers", statOrder = { 1363 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [4018186542] = { "(6-16)% increased Critical Hit Chance with Daggers" }, } }, ["JewelDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(6-16)% increased Damage with Daggers", statOrder = { 1245 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3586984690] = { "(6-16)% increased Damage with Daggers" }, } }, ["JewelDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(2-4)% increased Attack Speed with Daggers", statOrder = { 1322 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(2-4)% increased Attack Speed with Daggers" }, } }, ["JewelDamagefromMana"] = { type = "Suffix", affix = "of Mind", "(2-4)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(2-4)% of Damage is taken from Mana before Life" }, } }, - ["JewelDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(15-25)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5947 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2301718443] = { "(15-25)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["JewelDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(5-10)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6065 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(5-10)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["JewelDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "(5-10)% chance to Daze on Hit", statOrder = { 4669 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3146310524] = { "(5-10)% chance to Daze on Hit" }, } }, - ["JewelDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (5-10)% faster", statOrder = { 6099 }, level = 1, group = "DebuffTimePassed", weightKey = { "intjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (5-10)% faster" }, } }, - ["JewelElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7266 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1062710370] = { "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, + ["JewelDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(15-25)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5943 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2301718443] = { "(15-25)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["JewelDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(5-10)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6061 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(5-10)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["JewelDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "(5-10)% chance to Daze on Hit", statOrder = { 4666 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3146310524] = { "(5-10)% chance to Daze on Hit" }, } }, + ["JewelDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (5-10)% faster", statOrder = { 6095 }, level = 1, group = "DebuffTimePassed", weightKey = { "intjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (5-10)% faster" }, } }, + ["JewelElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7262 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1062710370] = { "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, ["JewelElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(5-15)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "intjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(5-15)% increased Elemental Damage" }, } }, - ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 6322 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (10-20)% increased Damage" }, } }, - ["JewelEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (4-8)% increased Energy", statOrder = { 6410 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (4-8)% increased Energy" }, } }, + ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 6318 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (10-20)% increased Damage" }, } }, + ["JewelEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (4-8)% increased Energy", statOrder = { 6406 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (4-8)% increased Energy" }, } }, ["JewelEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(10-20)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-20)% increased maximum Energy Shield" }, } }, ["JewelEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(10-15)% faster start of Energy Shield Recharge" }, } }, ["JewelEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(10-20)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(10-20)% increased Energy Shield Recharge Rate" }, } }, ["JewelEvasion"] = { type = "Prefix", affix = "Evasive", "(10-20)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-20)% increased Evasion Rating" }, } }, - ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 6068 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-7)% faster" }, } }, + ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 6064 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-7)% faster" }, } }, ["JewelFireDamage"] = { type = "Prefix", affix = "Flaming", "(5-15)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(5-15)% increased Fire Damage" }, } }, ["JewelFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (5-10)% Fire Resistance", statOrder = { 2724 }, level = 1, group = "FireResistancePenetration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-10)% Fire Resistance" }, } }, ["JewelFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(6-16)% increased Critical Hit Chance with Flails", statOrder = { 3942 }, level = 1, group = "FlailCriticalChance", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1484710594] = { "(6-16)% increased Critical Hit Chance with Flails" }, } }, ["JewelFlailDamage"] = { type = "Prefix", affix = "Flailing", "(6-16)% increased Damage with Flails", statOrder = { 3937 }, level = 1, group = "FlailDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1731242173] = { "(6-16)% increased Damage with Flails" }, } }, - ["JewelFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(5-10)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, + ["JewelFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(5-10)% increased Flask Charges gained", statOrder = { 6636 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, ["JewelFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(5-10)% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "FlaskDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(5-10)% increased Flask Effect Duration" }, } }, - ["JewelFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(30-50)% increased Energy Shield from Equipped Focus", statOrder = { 6426 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3174700878] = { "(30-50)% increased Energy Shield from Equipped Focus" }, } }, - ["JewelForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (10-15)% chance for an additional Projectile when Forking", statOrder = { 5515 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (10-15)% chance for an additional Projectile when Forking" }, } }, + ["JewelFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(30-50)% increased Energy Shield from Equipped Focus", statOrder = { 6422 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3174700878] = { "(30-50)% increased Energy Shield from Equipped Focus" }, } }, + ["JewelForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (10-15)% chance for an additional Projectile when Forking", statOrder = { 5511 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (10-15)% chance for an additional Projectile when Forking" }, } }, ["JewelFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(10-20)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(10-20)% increased Freeze Buildup" }, } }, ["JewelFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(18-32)% increased Freeze Threshold", statOrder = { 2984 }, level = 1, group = "FreezeThreshold", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(18-32)% increased Freeze Threshold" }, } }, - ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 6028 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [21071013] = { "Herald Skills deal (15-25)% increased Damage" }, } }, + ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 6024 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [21071013] = { "Herald Skills deal (15-25)% increased Damage" }, } }, ["JewelIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(10-20)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(10-20)% increased Flammability Magnitude" }, } }, ["JewelIgniteEffect"] = { type = "Prefix", affix = "Burning", "(5-15)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(5-15)% increased Ignite Magnitude" }, } }, ["JewelIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(5-10)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(5-10)% increased Skill Effect Duration" }, } }, ["JewelKnockback"] = { type = "Suffix", affix = "of Fending", "(5-15)% increased Knockback Distance", statOrder = { 1744 }, level = 1, group = "KnockbackDistance", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [565784293] = { "(5-15)% increased Knockback Distance" }, } }, - ["JewelLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(4-6)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "(4-6)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["JewelLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(4-6)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4740 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "(4-6)% of Skill Mana Costs Converted to Life Costs" }, } }, ["JewelLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(5-15)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(5-15)% increased Life Recovery from Flasks" }, } }, - ["JewelLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(10-20)% increased Life Flask Charges gained", statOrder = { 7433 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [4009879772] = { "(10-20)% increased Life Flask Charges gained" }, } }, + ["JewelLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(10-20)% increased Life Flask Charges gained", statOrder = { 7429 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [4009879772] = { "(10-20)% increased Life Flask Charges gained" }, } }, ["JewelLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(5-15)% increased amount of Life Leeched", statOrder = { 1895 }, level = 1, group = "LifeLeechAmount", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(5-15)% increased amount of Life Leeched" }, } }, ["JewelLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, ["JewelLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "(2-3)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, @@ -90,53 +90,53 @@ return { ["JewelLightningDamage"] = { type = "Prefix", affix = "Humming", "(5-15)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(5-15)% increased Lightning Damage" }, } }, ["JewelLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (5-10)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-10)% Lightning Resistance" }, } }, ["JewelMaceDamage"] = { type = "Prefix", affix = "Beating", "(6-16)% increased Damage with Maces", statOrder = { 1249 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(6-16)% increased Damage with Maces" }, } }, - ["JewelMaceStun"] = { type = "Suffix", affix = "of Thumping", "(15-25)% increased Stun Buildup with Maces", statOrder = { 7945 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [872504239] = { "(15-25)% increased Stun Buildup with Maces" }, } }, + ["JewelMaceStun"] = { type = "Suffix", affix = "of Thumping", "(15-25)% increased Stun Buildup with Maces", statOrder = { 7941 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [872504239] = { "(15-25)% increased Stun Buildup with Maces" }, } }, ["JewelManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(5-15)% increased Mana Recovery from Flasks", statOrder = { 1795 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(5-15)% increased Mana Recovery from Flasks" }, } }, - ["JewelManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(10-20)% increased Mana Flask Charges gained", statOrder = { 7978 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3590792340] = { "(10-20)% increased Mana Flask Charges gained" }, } }, + ["JewelManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(10-20)% increased Mana Flask Charges gained", statOrder = { 7974 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3590792340] = { "(10-20)% increased Mana Flask Charges gained" }, } }, ["JewelManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(5-15)% increased amount of Mana Leeched", statOrder = { 1897 }, level = 1, group = "ManaLeechAmount", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2839066308] = { "(5-15)% increased amount of Mana Leeched" }, } }, ["JewelManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1517 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, ["JewelManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(5-15)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(5-15)% increased Mana Regeneration Rate" }, } }, ["JewelMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (5-15)% increased Use Speed", statOrder = { 1946 }, level = 1, group = "MarkCastSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1714971114] = { "Mark Skills have (5-15)% increased Use Speed" }, } }, - ["JewelMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (18-32)% increased Skill Effect Duration", statOrder = { 8822 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (18-32)% increased Skill Effect Duration" }, } }, + ["JewelMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (18-32)% increased Skill Effect Duration", statOrder = { 8813 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (18-32)% increased Skill Effect Duration" }, } }, ["JewelMarkEffect"] = { type = "Prefix", affix = "Marking", "(4-8)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 1, group = "MarkEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [712554801] = { "(4-8)% increased Effect of your Mark Skills" }, } }, ["JewelMaximumColdResistance"] = { type = "Suffix", affix = "of the Kraken", "+1% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, ["JewelMaximumFireResistance"] = { type = "Suffix", affix = "of the Phoenix", "+1% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, ["JewelMaximumLightningResistance"] = { type = "Suffix", affix = "of the Leviathan", "+1% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+(1-2) to Maximum Rage", statOrder = { 9609 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(1-2) to Maximum Rage" }, } }, + ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+(1-2) to Maximum Rage", statOrder = { 9600 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(1-2) to Maximum Rage" }, } }, ["JewelMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(5-15)% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(5-15)% increased Melee Damage" }, } }, - ["JewelMinionAccuracy"] = { type = "Prefix", affix = "Training", "(10-20)% increased Minion Accuracy Rating", statOrder = { 8996 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(10-20)% increased Minion Accuracy Rating" }, } }, + ["JewelMinionAccuracy"] = { type = "Prefix", affix = "Training", "(10-20)% increased Minion Accuracy Rating", statOrder = { 8987 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(10-20)% increased Minion Accuracy Rating" }, } }, ["JewelMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (5-8)% increased Area of Effect", statOrder = { 2759 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (5-8)% increased Area of Effect" }, } }, - ["JewelMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (2-4)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-4)% increased Attack and Cast Speed" }, } }, + ["JewelMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (2-4)% increased Attack and Cast Speed", statOrder = { 8994 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-4)% increased Attack and Cast Speed" }, } }, ["JewelMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-13)% to Chaos Resistance", statOrder = { 2668 }, level = 1, group = "MinionChaosResistance", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(7-13)% to Chaos Resistance" }, } }, - ["JewelMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (10-20)% increased Critical Hit Chance", statOrder = { 9030 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (10-20)% increased Critical Hit Chance" }, } }, - ["JewelMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (15-25)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (15-25)% increased Critical Damage Bonus" }, } }, + ["JewelMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (10-20)% increased Critical Hit Chance", statOrder = { 9021 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (10-20)% increased Critical Hit Chance" }, } }, + ["JewelMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (15-25)% increased Critical Damage Bonus", statOrder = { 9023 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (15-25)% increased Critical Damage Bonus" }, } }, ["JewelMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (5-15)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-15)% increased Damage" }, } }, ["JewelMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (5-15)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (5-15)% increased maximum Life" }, } }, ["JewelMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (6-16)% additional Physical Damage Reduction", statOrder = { 2022 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (6-16)% additional Physical Damage Reduction" }, } }, ["JewelMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(5-10)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistance", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(5-10)% to all Elemental Resistances" }, } }, - ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-15)% faster" }, } }, + ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 9076 }, level = 1, group = "MinionReviveSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-15)% faster" }, } }, ["JewelMovementSpeed"] = { type = "Suffix", affix = "of Speed", "(1-2)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, - ["JewelOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (15-25)% increased Duration", statOrder = { 9355 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (15-25)% increased Duration" }, } }, - ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 9356 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3787460122] = { "Offerings have (15-25)% increased Maximum Life" }, } }, + ["JewelOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (15-25)% increased Duration", statOrder = { 9346 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (15-25)% increased Duration" }, } }, + ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 9347 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3787460122] = { "Offerings have (15-25)% increased Maximum Life" }, } }, ["JewelPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(5-15)% increased Global Physical Damage", statOrder = { 1185 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(5-15)% increased Global Physical Damage" }, } }, ["JewelPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(10-20)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(10-20)% chance to Pierce an Enemy" }, } }, - ["JewelPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(10-20)% increased Pin Buildup", statOrder = { 7195 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3473929743] = { "(10-20)% increased Pin Buildup" }, } }, + ["JewelPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(10-20)% increased Pin Buildup", statOrder = { 7191 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3473929743] = { "(10-20)% increased Pin Buildup" }, } }, ["JewelPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "(5-10)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, - ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(5-15)% increased Magnitude of Poison you inflict" }, } }, + ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 9489 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(5-15)% increased Magnitude of Poison you inflict" }, } }, ["JewelPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(5-10)% increased Poison Duration", statOrder = { 2896 }, level = 1, group = "PoisonDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(5-10)% increased Poison Duration" }, } }, ["JewelProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(5-15)% increased Projectile Damage", statOrder = { 1738 }, level = 1, group = "ProjectileDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(5-15)% increased Projectile Damage" }, } }, ["JewelProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(4-8)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(4-8)% increased Projectile Speed" }, } }, ["JewelQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(6-16)% increased Damage with Quarterstaves", statOrder = { 1238 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4045894391] = { "(6-16)% increased Damage with Quarterstaves" }, } }, - ["JewelQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(10-20)% increased Freeze Buildup with Quarterstaves", statOrder = { 9597 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1697447343] = { "(10-20)% increased Freeze Buildup with Quarterstaves" }, } }, + ["JewelQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(10-20)% increased Freeze Buildup with Quarterstaves", statOrder = { 9588 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1697447343] = { "(10-20)% increased Freeze Buildup with Quarterstaves" }, } }, ["JewelQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(2-4)% increased Attack Speed with Quarterstaves", statOrder = { 1320 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3283482523] = { "(2-4)% increased Attack Speed with Quarterstaves" }, } }, - ["JewelQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(4-6)% increased bonuses gained from Equipped Quiver", statOrder = { 9605 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1200678966] = { "(4-6)% increased bonuses gained from Equipped Quiver" }, } }, - ["JewelRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6873 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6875 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (1-3) Rage when Hit by an Enemy" }, } }, - ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9838 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHashes = { [2523933828] = { "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, + ["JewelQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(4-6)% increased bonuses gained from Equipped Quiver", statOrder = { 9596 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1200678966] = { "(4-6)% increased bonuses gained from Equipped Quiver" }, } }, + ["JewelRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6869 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, + ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6871 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (1-3) Rage when Hit by an Enemy" }, } }, + ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9829 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHashes = { [2523933828] = { "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, ["JewelShockChance"] = { type = "Suffix", affix = "of Shocking", "(10-20)% increased chance to Shock", statOrder = { 1059 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(10-20)% increased chance to Shock" }, } }, ["JewelShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(15-25)% increased Shock Duration", statOrder = { 1613 }, level = 1, group = "ShockDuration", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(15-25)% increased Shock Duration" }, } }, - ["JewelShockEffect"] = { type = "Prefix", affix = "Jolting", "(10-15)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-15)% increased Magnitude of Shock you inflict" }, } }, - ["JewelSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, + ["JewelShockEffect"] = { type = "Prefix", affix = "Jolting", "(10-15)% increased Magnitude of Shock you inflict", statOrder = { 9836 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-15)% increased Magnitude of Shock you inflict" }, } }, + ["JewelSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4743 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, ["JewelSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(2-4)% increased Attack Speed with Spears", statOrder = { 1327 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1165163804] = { "(2-4)% increased Attack Speed with Spears" }, } }, ["JewelSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(10-20)% increased Critical Damage Bonus with Spears", statOrder = { 1393 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2456523742] = { "(10-20)% increased Critical Damage Bonus with Spears" }, } }, ["JewelSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(6-16)% increased Damage with Spears", statOrder = { 1267 }, level = 1, group = "SpearDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2696027455] = { "(6-16)% increased Damage with Spears" }, } }, @@ -144,54 +144,54 @@ return { ["JewelSpellDamage"] = { type = "Prefix", affix = "Mystic", "(5-15)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-15)% increased Spell Damage" }, } }, ["JewelStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(10-20)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "StunDamageIncrease", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239367161] = { "(10-20)% increased Stun Buildup" }, } }, ["JewelStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(6-16)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(6-16)% increased Stun Threshold" }, } }, - ["JewelStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 10138 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield" }, } }, - ["JewelAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 4265 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield" }, } }, - ["JewelStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10140 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1405298142] = { "(15-25)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, - ["JewelBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(5-15)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(5-15)% increased Magnitude of Bleeding you inflict" }, } }, + ["JewelStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 10129 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield" }, } }, + ["JewelAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 4262 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield" }, } }, + ["JewelStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10131 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1405298142] = { "(15-25)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, + ["JewelBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(5-15)% increased Magnitude of Bleeding you inflict", statOrder = { 4805 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(5-15)% increased Magnitude of Bleeding you inflict" }, } }, ["JewelSwordDamage"] = { type = "Prefix", affix = "Vicious", "(6-16)% increased Damage with Swords", statOrder = { 1259 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(6-16)% increased Damage with Swords" }, } }, ["JewelSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(2-4)% increased Attack Speed with Swords", statOrder = { 1325 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(2-4)% increased Attack Speed with Swords" }, } }, - ["JewelThorns"] = { type = "Prefix", affix = "Retaliating", "(10-20)% increased Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(10-20)% increased Thorns damage" }, } }, + ["JewelThorns"] = { type = "Prefix", affix = "Retaliating", "(10-20)% increased Thorns damage", statOrder = { 10245 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(10-20)% increased Thorns damage" }, } }, ["JewelTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(10-18)% increased Totem Damage", statOrder = { 1152 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(10-18)% increased Totem Damage" }, } }, ["JewelTotemLife"] = { type = "Prefix", affix = "Carved", "(10-20)% increased Totem Life", statOrder = { 1533 }, level = 1, group = "IncreasedTotemLife", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(10-20)% increased Totem Life" }, } }, ["JewelTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(10-20)% increased Totem Placement speed", statOrder = { 2360 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(10-20)% increased Totem Placement speed" }, } }, ["JewelTrapDamage"] = { type = "Prefix", affix = "Trapping", "(6-16)% increased Trap Damage", statOrder = { 872 }, level = 1, group = "TrapDamage", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(6-16)% increased Trap Damage" }, } }, ["JewelTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(4-8)% increased Trap Throwing Speed", statOrder = { 1667 }, level = 1, group = "TrapThrowSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(4-8)% increased Trap Throwing Speed" }, } }, - ["JewelTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (10-18)% increased Spell Damage", statOrder = { 10323 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (10-18)% increased Spell Damage" }, } }, + ["JewelTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (10-18)% increased Spell Damage", statOrder = { 10314 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (10-18)% increased Spell Damage" }, } }, ["JewelUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(6-16)% increased Damage with Unarmed Attacks", statOrder = { 3259 }, level = 1, group = "UnarmedDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2037855018] = { "(6-16)% increased Damage with Unarmed Attacks" }, } }, - ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 10506 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(5-15)% increased Warcry Buff Effect" }, } }, + ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 10496 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(5-15)% increased Warcry Buff Effect" }, } }, ["JewelWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(5-15)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(5-15)% increased Warcry Cooldown Recovery Rate" }, } }, - ["JewelWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(10-20)% increased Damage with Warcries", statOrder = { 10509 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(10-20)% increased Damage with Warcries" }, } }, + ["JewelWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(10-20)% increased Damage with Warcries", statOrder = { 10499 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(10-20)% increased Damage with Warcries" }, } }, ["JewelWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(10-20)% increased Warcry Speed", statOrder = { 2989 }, level = 1, group = "WarcrySpeed", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(10-20)% increased Warcry Speed" }, } }, - ["JewelWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(15-25)% increased Weapon Swap Speed", statOrder = { 10535 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(15-25)% increased Weapon Swap Speed" }, } }, - ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 10556 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(5-10)% increased Withered Magnitude" }, } }, - ["JewelUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(2-4)% increased Unarmed Attack Speed", statOrder = { 10381 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [662579422] = { "(2-4)% increased Unarmed Attack Speed" }, } }, - ["JewelProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9547 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["JewelMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8914 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["JewelParryDamage"] = { type = "Prefix", affix = "Parrying", "(15-25)% increased Parry Damage", statOrder = { 9384 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, tradeHashes = { [1569159338] = { "(15-25)% increased Parry Damage" }, } }, - ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 9392 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [3401186585] = { "(10-15)% increased Parried Debuff Duration" }, } }, - ["JewelStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(15-25)% increased Stun Threshold while Parrying", statOrder = { 9393 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [1911237468] = { "(15-25)% increased Stun Threshold while Parrying" }, } }, - ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 10484 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3749502527] = { "(2-3)% chance to gain Volatility on Kill" }, } }, - ["JewelCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (10-20)% increased Damage", statOrder = { 5722 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [234296660] = { "Companions deal (10-20)% increased Damage" }, } }, - ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5726 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (10-20)% increased maximum Life" }, } }, - ["JewelHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(10-20)% increased Hazard Damage", statOrder = { 6981 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1697951953] = { "(10-20)% increased Hazard Damage" }, } }, - ["JewelIncisionChance"] = { type = "Prefix", affix = "Incise", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5553 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, - ["JewelBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(15-20)% increased Glory generation for Banner Skills", statOrder = { 6915 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1869147066] = { "(15-20)% increased Glory generation for Banner Skills" }, } }, - ["JewelBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (6-16)% increased Area of Effect", statOrder = { 4629 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [429143663] = { "Banner Skills have (6-16)% increased Area of Effect" }, } }, - ["JewelBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (15-25)% increased Duration", statOrder = { 4631 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2720982137] = { "Banner Skills have (15-25)% increased Duration" }, } }, + ["JewelWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(15-25)% increased Weapon Swap Speed", statOrder = { 10525 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(15-25)% increased Weapon Swap Speed" }, } }, + ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 10546 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(5-10)% increased Withered Magnitude" }, } }, + ["JewelUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(2-4)% increased Unarmed Attack Speed", statOrder = { 10372 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [662579422] = { "(2-4)% increased Unarmed Attack Speed" }, } }, + ["JewelProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9538 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["JewelMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8905 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["JewelParryDamage"] = { type = "Prefix", affix = "Parrying", "(15-25)% increased Parry Damage", statOrder = { 9375 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, tradeHashes = { [1569159338] = { "(15-25)% increased Parry Damage" }, } }, + ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 9383 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [3401186585] = { "(10-15)% increased Parried Debuff Duration" }, } }, + ["JewelStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(15-25)% increased Stun Threshold while Parrying", statOrder = { 9384 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [1911237468] = { "(15-25)% increased Stun Threshold while Parrying" }, } }, + ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 10474 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3749502527] = { "(2-3)% chance to gain Volatility on Kill" }, } }, + ["JewelCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (10-20)% increased Damage", statOrder = { 5718 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [234296660] = { "Companions deal (10-20)% increased Damage" }, } }, + ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5722 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (10-20)% increased maximum Life" }, } }, + ["JewelHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(10-20)% increased Hazard Damage", statOrder = { 6977 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1697951953] = { "(10-20)% increased Hazard Damage" }, } }, + ["JewelIncisionChance"] = { type = "Prefix", affix = "Incise", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5549 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, + ["JewelBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(15-20)% increased Glory generation for Banner Skills", statOrder = { 6911 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1869147066] = { "(15-20)% increased Glory generation for Banner Skills" }, } }, + ["JewelBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (6-16)% increased Area of Effect", statOrder = { 4626 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [429143663] = { "Banner Skills have (6-16)% increased Area of Effect" }, } }, + ["JewelBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (15-25)% increased Duration", statOrder = { 4628 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2720982137] = { "Banner Skills have (15-25)% increased Duration" }, } }, ["JewelPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(15-25)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, - ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7759 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Medium" }, } }, - ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7759 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Large" }, } }, - ["JewelRadiusSmallNodeEffect"] = { type = "Suffix", affix = "of Potency", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7783 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, - ["JewelRadiusNotableEffect"] = { type = "Suffix", affix = "of Influence", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7783 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, - ["JewelRadiusNotableEffectNew"] = { type = "Suffix", affix = "of Supremacy", "(15-25)% increased Effect of Notable Passive Skills in Radius", statOrder = { 7778 }, level = 1, group = "JewelRadiusNotableEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4234573345] = { "(15-25)% increased Effect of Notable Passive Skills in Radius" }, } }, + ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7755 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Medium" }, } }, + ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7755 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Large" }, } }, + ["JewelRadiusSmallNodeEffect"] = { type = "Suffix", affix = "of Potency", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7779 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, + ["JewelRadiusNotableEffect"] = { type = "Suffix", affix = "of Influence", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7779 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, + ["JewelRadiusNotableEffectNew"] = { type = "Suffix", affix = "of Supremacy", "(15-25)% increased Effect of Notable Passive Skills in Radius", statOrder = { 7774 }, level = 1, group = "JewelRadiusNotableEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4234573345] = { "(15-25)% increased Effect of Notable Passive Skills in Radius" }, } }, ["JewelRadiusAccuracy"] = { type = "Prefix", affix = "Accurate", "(1-2)% increased Accuracy Rating", statOrder = { 1332 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [533892981] = { "Small Passive Skills in Radius also grant (1-2)% increased Accuracy Rating" }, } }, - ["JewelRadiusAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(3-7)% increased chance to inflict Ailments", statOrder = { 4255 }, level = 1, group = "AilmentChance", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [412709880] = { "Notable Passive Skills in Radius also grant (3-7)% increased chance to inflict Ailments" }, } }, - ["JewelRadiusAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(3-7)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 1, group = "AilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [1321104829] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Ailments you inflict" }, } }, - ["JewelRadiusAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(2-3)% increased Elemental Ailment Threshold", statOrder = { 4266 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [3409275777] = { "Small Passive Skills in Radius also grant (2-3)% increased Elemental Ailment Threshold" }, } }, + ["JewelRadiusAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(3-7)% increased chance to inflict Ailments", statOrder = { 4252 }, level = 1, group = "AilmentChance", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [412709880] = { "Notable Passive Skills in Radius also grant (3-7)% increased chance to inflict Ailments" }, } }, + ["JewelRadiusAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(3-7)% increased Magnitude of Ailments you inflict", statOrder = { 4256 }, level = 1, group = "AilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [1321104829] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Ailments you inflict" }, } }, + ["JewelRadiusAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(2-3)% increased Elemental Ailment Threshold", statOrder = { 4263 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [3409275777] = { "Small Passive Skills in Radius also grant (2-3)% increased Elemental Ailment Threshold" }, } }, ["JewelRadiusAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(2-3)% increased Area of Effect", statOrder = { 1630 }, level = 1, group = "AreaOfEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3391917254] = { "Notable Passive Skills in Radius also grant (2-3)% increased Area of Effect" }, } }, ["JewelRadiusArmour"] = { type = "Prefix", affix = "Armoured", "(2-3)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, nodeType = 1, tradeHashes = { [3858398337] = { "Small Passive Skills in Radius also grant (2-3)% increased Armour" }, } }, - ["JewelRadiusArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (1-2)% increased Armour", statOrder = { 4407 }, level = 1, group = "ArmourBreak", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4089835882] = { "Small Passive Skills in Radius also grant Break (1-2)% increased Armour" }, } }, - ["JewelRadiusArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(5-10)% increased Armour Break Duration", statOrder = { 4409 }, level = 1, group = "ArmourBreakDuration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [504915064] = { "Notable Passive Skills in Radius also grant (5-10)% increased Armour Break Duration" }, } }, + ["JewelRadiusArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (1-2)% increased Armour", statOrder = { 4404 }, level = 1, group = "ArmourBreak", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4089835882] = { "Small Passive Skills in Radius also grant Break (1-2)% increased Armour" }, } }, + ["JewelRadiusArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(5-10)% increased Armour Break Duration", statOrder = { 4406 }, level = 1, group = "ArmourBreakDuration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [504915064] = { "Notable Passive Skills in Radius also grant (5-10)% increased Armour Break Duration" }, } }, ["JewelRadiusAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(3-7)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [3865605585] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance for Attacks" }, } }, ["JewelRadiusAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(5-10)% increased Critical Damage Bonus for Attack Damage", statOrder = { 981 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, nodeType = 2, tradeHashes = { [1352561456] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus for Attack Damage" }, } }, ["JewelRadiusAttackDamage"] = { type = "Prefix", affix = "Combat", "(1-2)% increased Attack Damage", statOrder = { 1156 }, level = 1, group = "AttackDamage", weightKey = { "str_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1426522529] = { "Small Passive Skills in Radius also grant (1-2)% increased Attack Damage" }, } }, @@ -199,32 +199,32 @@ return { ["JewelRadiusAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (1-3)% increased Magnitudes", statOrder = { 2574 }, level = 1, group = "AuraEffectForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "aura" }, nodeType = 2, tradeHashes = { [3243034867] = { "Notable Passive Skills in Radius also grant Aura Skills have (1-3)% increased Magnitudes" }, } }, ["JewelRadiusAxeDamage"] = { type = "Prefix", affix = "Sinister", "(2-3)% increased Damage with Axes", statOrder = { 1233 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2508922991] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Axes" }, } }, ["JewelRadiusAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(1-2)% increased Attack Speed with Axes", statOrder = { 1319 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2433102767] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Axes" }, } }, - ["JewelRadiusBleedingChance"] = { type = "Prefix", affix = "Bleeding", "1% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [944643028] = { "Small Passive Skills in Radius also grant 1% chance to inflict Bleeding on Hit" }, } }, - ["JewelRadiusBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(3-7)% increased Bleeding Duration", statOrder = { 4660 }, level = 1, group = "BleedDuration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [1505023559] = { "Notable Passive Skills in Radius also grant (3-7)% increased Bleeding Duration" }, } }, - ["JewelRadiusBlindEffect"] = { type = "Prefix", affix = "Stifling", "(3-5)% increased Blind Effect", statOrder = { 4928 }, level = 1, group = "BlindEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2912416697] = { "Notable Passive Skills in Radius also grant (3-5)% increased Blind Effect" }, } }, - ["JewelRadiusBlindonHit"] = { type = "Suffix", affix = "of Blinding", "1% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [2610562860] = { "Small Passive Skills in Radius also grant 1% chance to Blind Enemies on Hit with Attacks" }, } }, + ["JewelRadiusBleedingChance"] = { type = "Prefix", affix = "Bleeding", "1% chance to inflict Bleeding on Hit", statOrder = { 4668 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [944643028] = { "Small Passive Skills in Radius also grant 1% chance to inflict Bleeding on Hit" }, } }, + ["JewelRadiusBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(3-7)% increased Bleeding Duration", statOrder = { 4657 }, level = 1, group = "BleedDuration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [1505023559] = { "Notable Passive Skills in Radius also grant (3-7)% increased Bleeding Duration" }, } }, + ["JewelRadiusBlindEffect"] = { type = "Prefix", affix = "Stifling", "(3-5)% increased Blind Effect", statOrder = { 4924 }, level = 1, group = "BlindEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2912416697] = { "Notable Passive Skills in Radius also grant (3-5)% increased Blind Effect" }, } }, + ["JewelRadiusBlindonHit"] = { type = "Suffix", affix = "of Blinding", "1% chance to Blind Enemies on Hit with Attacks", statOrder = { 4585 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [2610562860] = { "Small Passive Skills in Radius also grant 1% chance to Blind Enemies on Hit with Attacks" }, } }, ["JewelRadiusBlock"] = { type = "Prefix", affix = "Protecting", "(1-3)% increased Block chance", statOrder = { 1133 }, level = 1, group = "IncreasedBlockChance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [3821543413] = { "Notable Passive Skills in Radius also grant (1-3)% increased Block chance" }, } }, ["JewelRadiusDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(2-3)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2926 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [147764878] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Hits against Rare and Unique Enemies" }, } }, ["JewelRadiusBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(1-2)% increased Accuracy Rating with Bows", statOrder = { 1341 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [1285594161] = { "Small Passive Skills in Radius also grant (1-2)% increased Accuracy Rating with Bows" }, } }, ["JewelRadiusBowDamage"] = { type = "Prefix", affix = "Perforating", "(2-3)% increased Damage with Bows", statOrder = { 1253 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [945774314] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Bows" }, } }, ["JewelRadiusBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(1-2)% increased Attack Speed with Bows", statOrder = { 1324 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3641543553] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Bows" }, } }, ["JewelRadiusCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(1-2)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, nodeType = 2, tradeHashes = { [1022759479] = { "Notable Passive Skills in Radius also grant (1-2)% increased Cast Speed" }, } }, - ["JewelRadiusChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (1-2)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 1, group = "ChainFromTerrain", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2334956771] = { "Notable Passive Skills in Radius also grant Projectiles have (1-2)% chance to Chain an additional time from terrain" }, } }, + ["JewelRadiusChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (1-2)% chance to Chain an additional time from terrain", statOrder = { 9534 }, level = 1, group = "ChainFromTerrain", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2334956771] = { "Notable Passive Skills in Radius also grant Projectiles have (1-2)% chance to Chain an additional time from terrain" }, } }, ["JewelRadiusCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(1-2)% increased Charm Effect Duration", statOrder = { 900 }, level = 1, group = "CharmDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 1, tradeHashes = { [3088348485] = { "Small Passive Skills in Radius also grant (1-2)% increased Charm Effect Duration" }, } }, - ["JewelRadiusCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(3-7)% increased Charm Charges gained", statOrder = { 5605 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 2, tradeHashes = { [2320654813] = { "Notable Passive Skills in Radius also grant (3-7)% increased Charm Charges gained" }, } }, - ["JewelRadiusCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(2-3)% increased Damage while you have an active Charm", statOrder = { 6023 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, nodeType = 1, tradeHashes = { [3752589831] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage while you have an active Charm" }, } }, + ["JewelRadiusCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(3-7)% increased Charm Charges gained", statOrder = { 5601 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 2, tradeHashes = { [2320654813] = { "Notable Passive Skills in Radius also grant (3-7)% increased Charm Charges gained" }, } }, + ["JewelRadiusCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(2-3)% increased Damage while you have an active Charm", statOrder = { 6019 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, nodeType = 1, tradeHashes = { [3752589831] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage while you have an active Charm" }, } }, ["JewelRadiusChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(1-2)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 1, tradeHashes = { [1309799717] = { "Small Passive Skills in Radius also grant (1-2)% increased Chaos Damage" }, } }, ["JewelRadiusChillDuration"] = { type = "Suffix", affix = "of Frost", "(6-12)% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [61644361] = { "Notable Passive Skills in Radius also grant (6-12)% increased Chill Duration on Enemies" }, } }, ["JewelRadiusColdDamage"] = { type = "Prefix", affix = "Chilling", "(1-2)% increased Cold Damage", statOrder = { 874 }, level = 1, group = "ColdDamagePercentage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [2442527254] = { "Small Passive Skills in Radius also grant (1-2)% increased Cold Damage" }, } }, ["JewelRadiusColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (1-2)% Cold Resistance", statOrder = { 2725 }, level = 1, group = "ColdResistancePenetration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [1896066427] = { "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Cold Resistance" }, } }, - ["JewelRadiusCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(1-3)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2149603090] = { "Notable Passive Skills in Radius also grant (1-3)% increased Cooldown Recovery Rate" }, } }, + ["JewelRadiusCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(1-3)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2149603090] = { "Notable Passive Skills in Radius also grant (1-3)% increased Cooldown Recovery Rate" }, } }, ["JewelRadiusCorpses"] = { type = "Prefix", affix = "Necromantic", "(2-3)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3901 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1892122971] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage if you have Consumed a Corpse Recently" }, } }, - ["JewelRadiusCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5818 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, nodeType = 2, tradeHashes = { [4092130601] = { "Notable Passive Skills in Radius also grant (5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, + ["JewelRadiusCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5814 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, nodeType = 2, tradeHashes = { [4092130601] = { "Notable Passive Skills in Radius also grant (5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, ["JewelRadiusCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(3-7)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "critical" }, nodeType = 2, tradeHashes = { [2077117738] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance" }, } }, ["JewelRadiusCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(5-10)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, nodeType = 2, tradeHashes = { [2359002191] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus" }, } }, ["JewelRadiusSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(5-10)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "damage", "caster", "critical" }, nodeType = 2, tradeHashes = { [2466785537] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Spell Damage Bonus" }, } }, ["JewelRadiusCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(2-3)% increased Damage with Crossbows", statOrder = { 3948 }, level = 1, group = "CrossbowDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [517664839] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Crossbows" }, } }, - ["JewelRadiusCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(5-7)% increased Crossbow Reload Speed", statOrder = { 9734 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3856744003] = { "Notable Passive Skills in Radius also grant (5-7)% increased Crossbow Reload Speed" }, } }, + ["JewelRadiusCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(5-7)% increased Crossbow Reload Speed", statOrder = { 9725 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3856744003] = { "Notable Passive Skills in Radius also grant (5-7)% increased Crossbow Reload Speed" }, } }, ["JewelRadiusCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(1-2)% increased Attack Speed with Crossbows", statOrder = { 3952 }, level = 1, group = "CrossbowSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [715957346] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Crossbows" }, } }, ["JewelRadiusCurseArea"] = { type = "Prefix", affix = "Expanding", "(3-6)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHashes = { [3859848445] = { "Notable Passive Skills in Radius also grant (3-6)% increased Area of Effect of Curses" }, } }, ["JewelRadiusCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(2-4)% increased Curse Duration", statOrder = { 1540 }, level = 1, group = "BaseCurseDuration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 1, tradeHashes = { [1087108135] = { "Small Passive Skills in Radius also grant (2-4)% increased Curse Duration" }, } }, @@ -233,37 +233,37 @@ return { ["JewelRadiusDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(2-3)% increased Damage with Daggers", statOrder = { 1245 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1441232665] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Daggers" }, } }, ["JewelRadiusDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1322 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2172391939] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Daggers" }, } }, ["JewelRadiusDamagefromMana"] = { type = "Suffix", affix = "of Mind", "1% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, nodeType = 2, tradeHashes = { [2709646369] = { "Notable Passive Skills in Radius also grant 1% of Damage is taken from Mana before Life" }, } }, - ["JewelRadiusDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(2-4)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5947 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1834658952] = { "Small Passive Skills in Radius also grant (2-4)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["JewelRadiusDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(3-5)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6065 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [2272980012] = { "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["JewelRadiusDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "1% chance to Daze on Hit", statOrder = { 4669 }, level = 1, group = "DazeBuildup", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4258000627] = { "Small Passive Skills in Radius also grant 1% chance to Daze on Hit" }, } }, - ["JewelRadiusDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (3-5)% faster", statOrder = { 6099 }, level = 1, group = "DebuffTimePassed", weightKey = { "int_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2256120736] = { "Notable Passive Skills in Radius also grant Debuffs on you expire (3-5)% faster" }, } }, - ["JewelRadiusElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7266 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1323216174] = { "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, + ["JewelRadiusDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(2-4)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5943 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1834658952] = { "Small Passive Skills in Radius also grant (2-4)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["JewelRadiusDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(3-5)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6061 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [2272980012] = { "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["JewelRadiusDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "1% chance to Daze on Hit", statOrder = { 4666 }, level = 1, group = "DazeBuildup", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4258000627] = { "Small Passive Skills in Radius also grant 1% chance to Daze on Hit" }, } }, + ["JewelRadiusDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (3-5)% faster", statOrder = { 6095 }, level = 1, group = "DebuffTimePassed", weightKey = { "int_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2256120736] = { "Notable Passive Skills in Radius also grant Debuffs on you expire (3-5)% faster" }, } }, + ["JewelRadiusElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7262 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1323216174] = { "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, ["JewelRadiusElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(1-2)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { "str_radius_jewel", "int_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, nodeType = 1, tradeHashes = { [3222402650] = { "Small Passive Skills in Radius also grant (1-2)% increased Elemental Damage" }, } }, - ["JewelRadiusEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (2-3)% increased Damage", statOrder = { 6322 }, level = 1, group = "ExertedAttackDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [3395186672] = { "Small Passive Skills in Radius also grant Empowered Attacks deal (2-3)% increased Damage" }, } }, - ["JewelRadiusEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (2-4)% increased Energy", statOrder = { 6410 }, level = 1, group = "EnergyGeneration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2849546516] = { "Notable Passive Skills in Radius also grant Meta Skills gain (2-4)% increased Energy" }, } }, + ["JewelRadiusEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (2-3)% increased Damage", statOrder = { 6318 }, level = 1, group = "ExertedAttackDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [3395186672] = { "Small Passive Skills in Radius also grant Empowered Attacks deal (2-3)% increased Damage" }, } }, + ["JewelRadiusEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (2-4)% increased Energy", statOrder = { 6406 }, level = 1, group = "EnergyGeneration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2849546516] = { "Notable Passive Skills in Radius also grant Meta Skills gain (2-4)% increased Energy" }, } }, ["JewelRadiusEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(2-3)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 1, tradeHashes = { [3665922113] = { "Small Passive Skills in Radius also grant (2-3)% increased maximum Energy Shield" }, } }, ["JewelRadiusEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(5-7)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3394832998] = { "Notable Passive Skills in Radius also grant (5-7)% faster start of Energy Shield Recharge" }, } }, ["JewelRadiusEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(2-3)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 1, tradeHashes = { [1552666713] = { "Small Passive Skills in Radius also grant (2-3)% increased Energy Shield Recharge Rate" }, } }, ["JewelRadiusEvasion"] = { type = "Prefix", affix = "Evasive", "(2-3)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, nodeType = 1, tradeHashes = { [1994296038] = { "Small Passive Skills in Radius also grant (2-3)% increased Evasion Rating" }, } }, - ["JewelRadiusFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (2-3)% faster", statOrder = { 6068 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [3173882956] = { "Notable Passive Skills in Radius also grant Damaging Ailments deal damage (2-3)% faster" }, } }, + ["JewelRadiusFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (2-3)% faster", statOrder = { 6064 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [3173882956] = { "Notable Passive Skills in Radius also grant Damaging Ailments deal damage (2-3)% faster" }, } }, ["JewelRadiusFireDamage"] = { type = "Prefix", affix = "Flaming", "(1-2)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [139889694] = { "Small Passive Skills in Radius also grant (1-2)% increased Fire Damage" }, } }, ["JewelRadiusFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (1-2)% Fire Resistance", statOrder = { 2724 }, level = 1, group = "FireResistancePenetration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [1432756708] = { "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Fire Resistance" }, } }, ["JewelRadiusFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(3-7)% increased Critical Hit Chance with Flails", statOrder = { 3942 }, level = 1, group = "FlailCriticalChance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [1441673288] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance with Flails" }, } }, ["JewelRadiusFlailDamage"] = { type = "Prefix", affix = "Flailing", "(1-2)% increased Damage with Flails", statOrder = { 3937 }, level = 1, group = "FlailDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2482383489] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Flails" }, } }, - ["JewelRadiusFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(3-5)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [2066964205] = { "Notable Passive Skills in Radius also grant (3-5)% increased Flask Charges gained" }, } }, + ["JewelRadiusFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(3-5)% increased Flask Charges gained", statOrder = { 6636 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [2066964205] = { "Notable Passive Skills in Radius also grant (3-5)% increased Flask Charges gained" }, } }, ["JewelRadiusFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(1-2)% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "FlaskDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 1, tradeHashes = { [1773308808] = { "Small Passive Skills in Radius also grant (1-2)% increased Flask Effect Duration" }, } }, - ["JewelRadiusFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(15-25)% increased Energy Shield from Equipped Focus", statOrder = { 6426 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3419203492] = { "Notable Passive Skills in Radius also grant (15-25)% increased Energy Shield from Equipped Focus" }, } }, - ["JewelRadiusForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (5-7)% chance for an additional Projectile when Forking", statOrder = { 5515 }, level = 1, group = "ForkingProjectiles", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4258720395] = { "Notable Passive Skills in Radius also grant Projectiles have (5-7)% chance for an additional Projectile when Forking" }, } }, + ["JewelRadiusFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(15-25)% increased Energy Shield from Equipped Focus", statOrder = { 6422 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3419203492] = { "Notable Passive Skills in Radius also grant (15-25)% increased Energy Shield from Equipped Focus" }, } }, + ["JewelRadiusForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (5-7)% chance for an additional Projectile when Forking", statOrder = { 5511 }, level = 1, group = "ForkingProjectiles", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4258720395] = { "Notable Passive Skills in Radius also grant Projectiles have (5-7)% chance for an additional Projectile when Forking" }, } }, ["JewelRadiusFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(5-10)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [1087531620] = { "Notable Passive Skills in Radius also grant (5-10)% increased Freeze Buildup" }, } }, ["JewelRadiusFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(2-4)% increased Freeze Threshold", statOrder = { 2984 }, level = 1, group = "FreezeThreshold", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 1, tradeHashes = { [830345042] = { "Small Passive Skills in Radius also grant (2-4)% increased Freeze Threshold" }, } }, - ["JewelRadiusHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (2-4)% increased Damage", statOrder = { 6028 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [3065378291] = { "Small Passive Skills in Radius also grant Herald Skills deal (2-4)% increased Damage" }, } }, + ["JewelRadiusHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (2-4)% increased Damage", statOrder = { 6024 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [3065378291] = { "Small Passive Skills in Radius also grant Herald Skills deal (2-4)% increased Damage" }, } }, ["JewelRadiusIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(2-3)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, nodeType = 1, tradeHashes = { [394473632] = { "Small Passive Skills in Radius also grant (2-3)% increased Flammability Magnitude" }, } }, ["JewelRadiusIgniteEffect"] = { type = "Prefix", affix = "Burning", "(3-7)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, nodeType = 2, tradeHashes = { [253641217] = { "Notable Passive Skills in Radius also grant (3-7)% increased Ignite Magnitude" }, } }, ["JewelRadiusIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(3-5)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3113764475] = { "Notable Passive Skills in Radius also grant (3-5)% increased Skill Effect Duration" }, } }, ["JewelRadiusKnockback"] = { type = "Suffix", affix = "of Fending", "(3-7)% increased Knockback Distance", statOrder = { 1744 }, level = 1, group = "KnockbackDistance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2976476845] = { "Notable Passive Skills in Radius also grant (3-7)% increased Knockback Distance" }, } }, - ["JewelRadiusLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 1, group = "LifeCost", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3386297724] = { "Notable Passive Skills in Radius also grant (2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["JewelRadiusLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4740 }, level = 1, group = "LifeCost", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3386297724] = { "Notable Passive Skills in Radius also grant (2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, ["JewelRadiusLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(2-3)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, nodeType = 1, tradeHashes = { [980177976] = { "Small Passive Skills in Radius also grant (2-3)% increased Life Recovery from Flasks" }, } }, - ["JewelRadiusLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(5-10)% increased Life Flask Charges gained", statOrder = { 7433 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [942519401] = { "Notable Passive Skills in Radius also grant (5-10)% increased Life Flask Charges gained" }, } }, + ["JewelRadiusLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(5-10)% increased Life Flask Charges gained", statOrder = { 7429 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [942519401] = { "Notable Passive Skills in Radius also grant (5-10)% increased Life Flask Charges gained" }, } }, ["JewelRadiusLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(2-3)% increased amount of Life Leeched", statOrder = { 1895 }, level = 1, group = "LifeLeechAmount", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [3666476747] = { "Small Passive Skills in Radius also grant (2-3)% increased amount of Life Leeched" }, } }, ["JewelRadiusLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [2726713579] = { "Notable Passive Skills in Radius also grant Recover 1% of maximum Life on Kill" }, } }, ["JewelRadiusLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "1% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3669820740] = { "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Life" }, } }, @@ -271,50 +271,50 @@ return { ["JewelRadiusLightningDamage"] = { type = "Prefix", affix = "Humming", "(1-2)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [2768899959] = { "Small Passive Skills in Radius also grant (1-2)% increased Lightning Damage" }, } }, ["JewelRadiusLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (1-2)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [868556494] = { "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Lightning Resistance" }, } }, ["JewelRadiusMaceDamage"] = { type = "Prefix", affix = "Beating", "(1-2)% increased Damage with Maces", statOrder = { 1249 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1852184471] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Maces" }, } }, - ["JewelRadiusMaceStun"] = { type = "Suffix", affix = "of Thumping", "(6-12)% increased Stun Buildup with Maces", statOrder = { 7945 }, level = 1, group = "MaceStun", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2392824305] = { "Notable Passive Skills in Radius also grant (6-12)% increased Stun Buildup with Maces" }, } }, + ["JewelRadiusMaceStun"] = { type = "Suffix", affix = "of Thumping", "(6-12)% increased Stun Buildup with Maces", statOrder = { 7941 }, level = 1, group = "MaceStun", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2392824305] = { "Notable Passive Skills in Radius also grant (6-12)% increased Stun Buildup with Maces" }, } }, ["JewelRadiusManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(1-2)% increased Mana Recovery from Flasks", statOrder = { 1795 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, nodeType = 1, tradeHashes = { [3774951878] = { "Small Passive Skills in Radius also grant (1-2)% increased Mana Recovery from Flasks" }, } }, - ["JewelRadiusManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(5-10)% increased Mana Flask Charges gained", statOrder = { 7978 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [3171212276] = { "Notable Passive Skills in Radius also grant (5-10)% increased Mana Flask Charges gained" }, } }, + ["JewelRadiusManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(5-10)% increased Mana Flask Charges gained", statOrder = { 7974 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [3171212276] = { "Notable Passive Skills in Radius also grant (5-10)% increased Mana Flask Charges gained" }, } }, ["JewelRadiusManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(1-2)% increased amount of Mana Leeched", statOrder = { 1897 }, level = 1, group = "ManaLeechAmount", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3700202631] = { "Small Passive Skills in Radius also grant (1-2)% increased amount of Mana Leeched" }, } }, ["JewelRadiusManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1517 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 2, tradeHashes = { [525523040] = { "Notable Passive Skills in Radius also grant Recover 1% of maximum Mana on Kill" }, } }, ["JewelRadiusManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(1-2)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3256879910] = { "Small Passive Skills in Radius also grant (1-2)% increased Mana Regeneration Rate" }, } }, ["JewelRadiusMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (2-3)% increased Use Speed", statOrder = { 1946 }, level = 1, group = "MarkCastSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [2202308025] = { "Small Passive Skills in Radius also grant Mark Skills have (2-3)% increased Use Speed" }, } }, - ["JewelRadiusMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (3-4)% increased Skill Effect Duration", statOrder = { 8822 }, level = 1, group = "MarkDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4162678661] = { "Small Passive Skills in Radius also grant Mark Skills have (3-4)% increased Skill Effect Duration" }, } }, + ["JewelRadiusMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (3-4)% increased Skill Effect Duration", statOrder = { 8813 }, level = 1, group = "MarkDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4162678661] = { "Small Passive Skills in Radius also grant Mark Skills have (3-4)% increased Skill Effect Duration" }, } }, ["JewelRadiusMarkEffect"] = { type = "Prefix", affix = "Marking", "(2-3)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 1, group = "MarkEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [179541474] = { "Notable Passive Skills in Radius also grant (2-3)% increased Effect of your Mark Skills" }, } }, - ["JewelRadiusMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9609 }, level = 1, group = "MaximumRage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1846980580] = { "Notable Passive Skills in Radius also grant +1 to Maximum Rage" }, } }, + ["JewelRadiusMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9600 }, level = 1, group = "MaximumRage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1846980580] = { "Notable Passive Skills in Radius also grant +1 to Maximum Rage" }, } }, ["JewelRadiusMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(1-2)% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1337740333] = { "Small Passive Skills in Radius also grant (1-2)% increased Melee Damage" }, } }, - ["JewelRadiusMinionAccuracy"] = { type = "Prefix", affix = "Training", "(2-3)% increased Minion Accuracy Rating", statOrder = { 8996 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, nodeType = 1, tradeHashes = { [793875384] = { "Small Passive Skills in Radius also grant (2-3)% increased Minion Accuracy Rating" }, } }, + ["JewelRadiusMinionAccuracy"] = { type = "Prefix", affix = "Training", "(2-3)% increased Minion Accuracy Rating", statOrder = { 8987 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, nodeType = 1, tradeHashes = { [793875384] = { "Small Passive Skills in Radius also grant (2-3)% increased Minion Accuracy Rating" }, } }, ["JewelRadiusMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (3-5)% increased Area of Effect", statOrder = { 2759 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2534359663] = { "Notable Passive Skills in Radius also grant Minions have (3-5)% increased Area of Effect" }, } }, - ["JewelRadiusMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (1-2)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, nodeType = 2, tradeHashes = { [3106718406] = { "Notable Passive Skills in Radius also grant Minions have (1-2)% increased Attack and Cast Speed" }, } }, + ["JewelRadiusMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (1-2)% increased Attack and Cast Speed", statOrder = { 8994 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, nodeType = 2, tradeHashes = { [3106718406] = { "Notable Passive Skills in Radius also grant Minions have (1-2)% increased Attack and Cast Speed" }, } }, ["JewelRadiusMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(1-2)% to Chaos Resistance", statOrder = { 2668 }, level = 1, group = "MinionChaosResistance", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, nodeType = 1, tradeHashes = { [1756380435] = { "Small Passive Skills in Radius also grant Minions have +(1-2)% to Chaos Resistance" }, } }, - ["JewelRadiusMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (5-10)% increased Critical Hit Chance", statOrder = { 9030 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, nodeType = 2, tradeHashes = { [3628935286] = { "Notable Passive Skills in Radius also grant Minions have (5-10)% increased Critical Hit Chance" }, } }, - ["JewelRadiusMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (6-12)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, nodeType = 2, tradeHashes = { [593241812] = { "Notable Passive Skills in Radius also grant Minions have (6-12)% increased Critical Damage Bonus" }, } }, + ["JewelRadiusMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (5-10)% increased Critical Hit Chance", statOrder = { 9021 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, nodeType = 2, tradeHashes = { [3628935286] = { "Notable Passive Skills in Radius also grant Minions have (5-10)% increased Critical Hit Chance" }, } }, + ["JewelRadiusMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (6-12)% increased Critical Damage Bonus", statOrder = { 9023 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, nodeType = 2, tradeHashes = { [593241812] = { "Notable Passive Skills in Radius also grant Minions have (6-12)% increased Critical Damage Bonus" }, } }, ["JewelRadiusMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (1-2)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [2954360902] = { "Small Passive Skills in Radius also grant Minions deal (1-2)% increased Damage" }, } }, ["JewelRadiusMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (1-2)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [378796798] = { "Small Passive Skills in Radius also grant Minions have (1-2)% increased maximum Life" }, } }, ["JewelRadiusMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (1-2)% additional Physical Damage Reduction", statOrder = { 2022 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, nodeType = 1, tradeHashes = { [30438393] = { "Small Passive Skills in Radius also grant Minions have (1-2)% additional Physical Damage Reduction" }, } }, ["JewelRadiusMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(1-2)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistance", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, nodeType = 1, tradeHashes = { [3225608889] = { "Small Passive Skills in Radius also grant Minions have +(1-2)% to all Elemental Resistances" }, } }, - ["JewelRadiusMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (3-7)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [50413020] = { "Notable Passive Skills in Radius also grant Minions Revive (3-7)% faster" }, } }, + ["JewelRadiusMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (3-7)% faster", statOrder = { 9076 }, level = 1, group = "MinionReviveSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [50413020] = { "Notable Passive Skills in Radius also grant Minions Revive (3-7)% faster" }, } }, ["JewelRadiusMovementSpeed"] = { type = "Suffix", affix = "of Speed", "1% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [844449513] = { "Notable Passive Skills in Radius also grant 1% increased Movement Speed" }, } }, - ["JewelRadiusOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (6-12)% increased Duration", statOrder = { 9355 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2374711847] = { "Notable Passive Skills in Radius also grant Offering Skills have (6-12)% increased Duration" }, } }, - ["JewelRadiusOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (2-3)% increased Maximum Life", statOrder = { 9356 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2107703111] = { "Small Passive Skills in Radius also grant Offerings have (2-3)% increased Maximum Life" }, } }, + ["JewelRadiusOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (6-12)% increased Duration", statOrder = { 9346 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2374711847] = { "Notable Passive Skills in Radius also grant Offering Skills have (6-12)% increased Duration" }, } }, + ["JewelRadiusOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (2-3)% increased Maximum Life", statOrder = { 9347 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2107703111] = { "Small Passive Skills in Radius also grant Offerings have (2-3)% increased Maximum Life" }, } }, ["JewelRadiusPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(1-2)% increased Global Physical Damage", statOrder = { 1185 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, nodeType = 1, tradeHashes = { [1417267954] = { "Small Passive Skills in Radius also grant (1-2)% increased Global Physical Damage" }, } }, ["JewelRadiusPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(5-10)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1800303440] = { "Notable Passive Skills in Radius also grant (5-10)% chance to Pierce an Enemy" }, } }, - ["JewelRadiusPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(5-10)% increased Pin Buildup", statOrder = { 7195 }, level = 1, group = "PinBuildup", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1944020877] = { "Notable Passive Skills in Radius also grant (5-10)% increased Pin Buildup" }, } }, + ["JewelRadiusPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(5-10)% increased Pin Buildup", statOrder = { 7191 }, level = 1, group = "PinBuildup", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1944020877] = { "Notable Passive Skills in Radius also grant (5-10)% increased Pin Buildup" }, } }, ["JewelRadiusPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "1% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [2840989393] = { "Small Passive Skills in Radius also grant 1% chance to Poison on Hit" }, } }, - ["JewelRadiusPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(3-7)% increased Magnitude of Poison you inflict", statOrder = { 9498 }, level = 1, group = "PoisonEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [462424929] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Poison you inflict" }, } }, + ["JewelRadiusPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(3-7)% increased Magnitude of Poison you inflict", statOrder = { 9489 }, level = 1, group = "PoisonEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [462424929] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Poison you inflict" }, } }, ["JewelRadiusPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(3-7)% increased Poison Duration", statOrder = { 2896 }, level = 1, group = "PoisonDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, nodeType = 2, tradeHashes = { [221701169] = { "Notable Passive Skills in Radius also grant (3-7)% increased Poison Duration" }, } }, ["JewelRadiusProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(1-2)% increased Projectile Damage", statOrder = { 1738 }, level = 1, group = "ProjectileDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [455816363] = { "Small Passive Skills in Radius also grant (1-2)% increased Projectile Damage" }, } }, ["JewelRadiusProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(2-3)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [1777421941] = { "Notable Passive Skills in Radius also grant (2-3)% increased Projectile Speed" }, } }, ["JewelRadiusQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(1-2)% increased Damage with Quarterstaves", statOrder = { 1238 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [821948283] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Quarterstaves" }, } }, - ["JewelRadiusQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(5-10)% increased Freeze Buildup with Quarterstaves", statOrder = { 9597 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [127081978] = { "Notable Passive Skills in Radius also grant (5-10)% increased Freeze Buildup with Quarterstaves" }, } }, + ["JewelRadiusQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(5-10)% increased Freeze Buildup with Quarterstaves", statOrder = { 9588 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [127081978] = { "Notable Passive Skills in Radius also grant (5-10)% increased Freeze Buildup with Quarterstaves" }, } }, ["JewelRadiusQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(1-2)% increased Attack Speed with Quarterstaves", statOrder = { 1320 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [111835965] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Quarterstaves" }, } }, - ["JewelRadiusQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(2-3)% increased bonuses gained from Equipped Quiver", statOrder = { 9605 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4180952808] = { "Notable Passive Skills in Radius also grant (2-3)% increased bonuses gained from Equipped Quiver" }, } }, - ["JewelRadiusRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6873 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2969557004] = { "Notable Passive Skills in Radius also grant Gain 1 Rage on Melee Hit" }, } }, - ["JewelRadiusRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6875 }, level = 1, group = "GainRageWhenHit", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2131720304] = { "Notable Passive Skills in Radius also grant Gain (1-2) Rage when Hit by an Enemy" }, } }, - ["JewelRadiusShieldDefences"] = { type = "Prefix", affix = "Shielding", "(8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9838 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHashes = { [3429148113] = { "Notable Passive Skills in Radius also grant (8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, + ["JewelRadiusQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(2-3)% increased bonuses gained from Equipped Quiver", statOrder = { 9596 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4180952808] = { "Notable Passive Skills in Radius also grant (2-3)% increased bonuses gained from Equipped Quiver" }, } }, + ["JewelRadiusRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6869 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2969557004] = { "Notable Passive Skills in Radius also grant Gain 1 Rage on Melee Hit" }, } }, + ["JewelRadiusRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6871 }, level = 1, group = "GainRageWhenHit", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2131720304] = { "Notable Passive Skills in Radius also grant Gain (1-2) Rage when Hit by an Enemy" }, } }, + ["JewelRadiusShieldDefences"] = { type = "Prefix", affix = "Shielding", "(8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9829 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHashes = { [3429148113] = { "Notable Passive Skills in Radius also grant (8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, ["JewelRadiusShockChance"] = { type = "Suffix", affix = "of Shocking", "(2-3)% increased chance to Shock", statOrder = { 1059 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [1039268420] = { "Small Passive Skills in Radius also grant (2-3)% increased chance to Shock" }, } }, ["JewelRadiusShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(2-3)% increased Shock Duration", statOrder = { 1613 }, level = 1, group = "ShockDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [3513818125] = { "Small Passive Skills in Radius also grant (2-3)% increased Shock Duration" }, } }, - ["JewelRadiusShockEffect"] = { type = "Prefix", affix = "Jolting", "(5-7)% increased Magnitude of Shock you inflict", statOrder = { 9845 }, level = 1, group = "ShockEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1166140625] = { "Notable Passive Skills in Radius also grant (5-7)% increased Magnitude of Shock you inflict" }, } }, - ["JewelRadiusSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(2-5)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2580617872] = { "Notable Passive Skills in Radius also grant (2-5)% reduced Slowing Potency of Debuffs on You" }, } }, + ["JewelRadiusShockEffect"] = { type = "Prefix", affix = "Jolting", "(5-7)% increased Magnitude of Shock you inflict", statOrder = { 9836 }, level = 1, group = "ShockEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1166140625] = { "Notable Passive Skills in Radius also grant (5-7)% increased Magnitude of Shock you inflict" }, } }, + ["JewelRadiusSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(2-5)% reduced Slowing Potency of Debuffs on You", statOrder = { 4743 }, level = 1, group = "SlowPotency", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2580617872] = { "Notable Passive Skills in Radius also grant (2-5)% reduced Slowing Potency of Debuffs on You" }, } }, ["JewelRadiusSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(1-2)% increased Attack Speed with Spears", statOrder = { 1327 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [1266413530] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Spears" }, } }, ["JewelRadiusSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(5-10)% increased Critical Damage Bonus with Spears", statOrder = { 1393 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [138421180] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus with Spears" }, } }, ["JewelRadiusSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(1-2)% increased Damage with Spears", statOrder = { 1267 }, level = 1, group = "SpearDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2809428780] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Spears" }, } }, @@ -322,47 +322,47 @@ return { ["JewelRadiusSpellDamage"] = { type = "Prefix", affix = "Mystic", "(1-2)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [1137305356] = { "Small Passive Skills in Radius also grant (1-2)% increased Spell Damage" }, } }, ["JewelRadiusStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(5-10)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "StunDamageIncrease", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4173554949] = { "Notable Passive Skills in Radius also grant (5-10)% increased Stun Buildup" }, } }, ["JewelRadiusStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(1-2)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [484792219] = { "Small Passive Skills in Radius also grant (1-2)% increased Stun Threshold" }, } }, - ["JewelRadiusStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 10138 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [1653682082] = { "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield" }, } }, - ["JewelRadiusAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 4265 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [693237939] = { "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield" }, } }, - ["JewelRadiusStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(2-3)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10140 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [654207792] = { "Small Passive Skills in Radius also grant (2-3)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, - ["JewelRadiusBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(3-7)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [391602279] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Bleeding you inflict" }, } }, + ["JewelRadiusStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 10129 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [1653682082] = { "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield" }, } }, + ["JewelRadiusAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 4262 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [693237939] = { "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield" }, } }, + ["JewelRadiusStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(2-3)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10131 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [654207792] = { "Small Passive Skills in Radius also grant (2-3)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, + ["JewelRadiusBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(3-7)% increased Magnitude of Bleeding you inflict", statOrder = { 4805 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [391602279] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Bleeding you inflict" }, } }, ["JewelRadiusSwordDamage"] = { type = "Prefix", affix = "Vicious", "(1-2)% increased Damage with Swords", statOrder = { 1259 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1417549986] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Swords" }, } }, ["JewelRadiusSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(1-2)% increased Attack Speed with Swords", statOrder = { 1325 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3492019295] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Swords" }, } }, - ["JewelRadiusThorns"] = { type = "Prefix", affix = "Retaliating", "(2-3)% increased Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1320662475] = { "Small Passive Skills in Radius also grant (2-3)% increased Thorns damage" }, } }, + ["JewelRadiusThorns"] = { type = "Prefix", affix = "Retaliating", "(2-3)% increased Thorns damage", statOrder = { 10245 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1320662475] = { "Small Passive Skills in Radius also grant (2-3)% increased Thorns damage" }, } }, ["JewelRadiusTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(2-3)% increased Totem Damage", statOrder = { 1152 }, level = 1, group = "TotemDamageForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [2108821127] = { "Small Passive Skills in Radius also grant (2-3)% increased Totem Damage" }, } }, ["JewelRadiusTotemLife"] = { type = "Prefix", affix = "Carved", "(2-3)% increased Totem Life", statOrder = { 1533 }, level = 1, group = "IncreasedTotemLife", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [442393998] = { "Small Passive Skills in Radius also grant (2-3)% increased Totem Life" }, } }, ["JewelRadiusTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(2-3)% increased Totem Placement speed", statOrder = { 2360 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1145481685] = { "Small Passive Skills in Radius also grant (2-3)% increased Totem Placement speed" }, } }, ["JewelRadiusTrapDamage"] = { type = "Prefix", affix = "Trapping", "(1-2)% increased Trap Damage", statOrder = { 872 }, level = 1, group = "TrapDamage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [836472423] = { "Small Passive Skills in Radius also grant (1-2)% increased Trap Damage" }, } }, ["JewelRadiusTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(2-4)% increased Trap Throwing Speed", statOrder = { 1667 }, level = 1, group = "TrapThrowSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [2391207117] = { "Notable Passive Skills in Radius also grant (2-4)% increased Trap Throwing Speed" }, } }, - ["JewelRadiusTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (2-3)% increased Spell Damage", statOrder = { 10323 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [473917671] = { "Small Passive Skills in Radius also grant Triggered Spells deal (2-3)% increased Spell Damage" }, } }, + ["JewelRadiusTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (2-3)% increased Spell Damage", statOrder = { 10314 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [473917671] = { "Small Passive Skills in Radius also grant Triggered Spells deal (2-3)% increased Spell Damage" }, } }, ["JewelRadiusUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(1-2)% increased Damage with Unarmed Attacks", statOrder = { 3259 }, level = 1, group = "UnarmedDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [347569644] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Unarmed Attacks" }, } }, - ["JewelRadiusWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(3-7)% increased Warcry Buff Effect", statOrder = { 10506 }, level = 1, group = "WarcryEffect", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2675129731] = { "Notable Passive Skills in Radius also grant (3-7)% increased Warcry Buff Effect" }, } }, + ["JewelRadiusWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(3-7)% increased Warcry Buff Effect", statOrder = { 10496 }, level = 1, group = "WarcryEffect", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2675129731] = { "Notable Passive Skills in Radius also grant (3-7)% increased Warcry Buff Effect" }, } }, ["JewelRadiusWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(3-7)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2056107438] = { "Notable Passive Skills in Radius also grant (3-7)% increased Warcry Cooldown Recovery Rate" }, } }, - ["JewelRadiusWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(2-3)% increased Damage with Warcries", statOrder = { 10509 }, level = 1, group = "WarcryDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1160637284] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Warcries" }, } }, + ["JewelRadiusWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(2-3)% increased Damage with Warcries", statOrder = { 10499 }, level = 1, group = "WarcryDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1160637284] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Warcries" }, } }, ["JewelRadiusWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(2-3)% increased Warcry Speed", statOrder = { 2989 }, level = 1, group = "WarcrySpeed", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1602294220] = { "Small Passive Skills in Radius also grant (2-3)% increased Warcry Speed" }, } }, - ["JewelRadiusWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(2-4)% increased Weapon Swap Speed", statOrder = { 10535 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "attack", "speed" }, nodeType = 1, tradeHashes = { [1129429646] = { "Small Passive Skills in Radius also grant (2-4)% increased Weapon Swap Speed" }, } }, - ["JewelRadiusWitheredEffect"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Withered Magnitude", statOrder = { 10556 }, level = 1, group = "WitheredEffect", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos" }, nodeType = 2, tradeHashes = { [3936121440] = { "Notable Passive Skills in Radius also grant (3-5)% increased Withered Magnitude" }, } }, - ["JewelRadiusUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(1-2)% increased Unarmed Attack Speed", statOrder = { 10381 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [541647121] = { "Notable Passive Skills in Radius also grant (1-2)% increased Unarmed Attack Speed" }, } }, - ["JewelRadiusProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9547 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [288364275] = { "Small Passive Skills in Radius also grant (2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["JewelRadiusMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8914 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2421151933] = { "Small Passive Skills in Radius also grant (2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["JewelRadiusParryDamage"] = { type = "Prefix", affix = "Parrying", "(2-3)% increased Parry Damage", statOrder = { 9384 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, nodeType = 1, tradeHashes = { [1007380041] = { "Small Passive Skills in Radius also grant (2-3)% increased Parry Damage" }, } }, - ["JewelRadiusParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(5-10)% increased Parried Debuff Duration", statOrder = { 9392 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1514844108] = { "Notable Passive Skills in Radius also grant (5-10)% increased Parried Debuff Duration" }, } }, - ["JewelRadiusStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(8-12)% increased Stun Threshold while Parrying", statOrder = { 9393 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1495814176] = { "Notable Passive Skills in Radius also grant (8-12)% increased Stun Threshold while Parrying" }, } }, - ["JewelRadiusVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "1% chance to gain Volatility on Kill", statOrder = { 10484 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4225700219] = { "Notable Passive Skills in Radius also grant 1% chance to gain Volatility on Kill" }, } }, - ["JewelRadiusCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (2-3)% increased Damage", statOrder = { 5722 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [1494950893] = { "Small Passive Skills in Radius also grant Companions deal (2-3)% increased Damage" }, } }, - ["JewelRadiusCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (2-3)% increased maximum Life", statOrder = { 5726 }, level = 1, group = "CompanionLife", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2638756573] = { "Small Passive Skills in Radius also grant Companions have (2-3)% increased maximum Life" }, } }, - ["JewelRadiusHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(2-3)% increased Hazard Damage", statOrder = { 6981 }, level = 1, group = "HazardDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [255840549] = { "Small Passive Skills in Radius also grant (2-3)% increased Hazard Damage" }, } }, - ["JewelRadiusIncisionChance"] = { type = "Prefix", affix = "Incise", "(3-5)% chance for Attack Hits to apply Incision", statOrder = { 5553 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [318092306] = { "Small Passive Skills in Radius also grant (3-5)% chance for Attack Hits to apply Incision" }, } }, - ["JewelRadiusBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(8-12)% increased Glory generation for Banner Skills", statOrder = { 6915 }, level = 1, group = "BannerValourGained", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2907381231] = { "Notable Passive Skills in Radius also grant (8-12)% increased Glory generation for Banner Skills" }, } }, - ["JewelRadiusBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (2-3)% increased Area of Effect", statOrder = { 4629 }, level = 1, group = "BannerArea", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4142814612] = { "Small Passive Skills in Radius also grant Banner Skills have (2-3)% increased Area of Effect" }, } }, - ["JewelRadiusBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (3-4)% increased Duration", statOrder = { 4631 }, level = 1, group = "BannerDuration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [2690740379] = { "Small Passive Skills in Radius also grant Banner Skills have (3-4)% increased Duration" }, } }, + ["JewelRadiusWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(2-4)% increased Weapon Swap Speed", statOrder = { 10525 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "attack", "speed" }, nodeType = 1, tradeHashes = { [1129429646] = { "Small Passive Skills in Radius also grant (2-4)% increased Weapon Swap Speed" }, } }, + ["JewelRadiusWitheredEffect"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Withered Magnitude", statOrder = { 10546 }, level = 1, group = "WitheredEffect", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos" }, nodeType = 2, tradeHashes = { [3936121440] = { "Notable Passive Skills in Radius also grant (3-5)% increased Withered Magnitude" }, } }, + ["JewelRadiusUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(1-2)% increased Unarmed Attack Speed", statOrder = { 10372 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [541647121] = { "Notable Passive Skills in Radius also grant (1-2)% increased Unarmed Attack Speed" }, } }, + ["JewelRadiusProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9538 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [288364275] = { "Small Passive Skills in Radius also grant (2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["JewelRadiusMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8905 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2421151933] = { "Small Passive Skills in Radius also grant (2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["JewelRadiusParryDamage"] = { type = "Prefix", affix = "Parrying", "(2-3)% increased Parry Damage", statOrder = { 9375 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, nodeType = 1, tradeHashes = { [1007380041] = { "Small Passive Skills in Radius also grant (2-3)% increased Parry Damage" }, } }, + ["JewelRadiusParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(5-10)% increased Parried Debuff Duration", statOrder = { 9383 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1514844108] = { "Notable Passive Skills in Radius also grant (5-10)% increased Parried Debuff Duration" }, } }, + ["JewelRadiusStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(8-12)% increased Stun Threshold while Parrying", statOrder = { 9384 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1495814176] = { "Notable Passive Skills in Radius also grant (8-12)% increased Stun Threshold while Parrying" }, } }, + ["JewelRadiusVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "1% chance to gain Volatility on Kill", statOrder = { 10474 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4225700219] = { "Notable Passive Skills in Radius also grant 1% chance to gain Volatility on Kill" }, } }, + ["JewelRadiusCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (2-3)% increased Damage", statOrder = { 5718 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [1494950893] = { "Small Passive Skills in Radius also grant Companions deal (2-3)% increased Damage" }, } }, + ["JewelRadiusCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (2-3)% increased maximum Life", statOrder = { 5722 }, level = 1, group = "CompanionLife", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2638756573] = { "Small Passive Skills in Radius also grant Companions have (2-3)% increased maximum Life" }, } }, + ["JewelRadiusHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(2-3)% increased Hazard Damage", statOrder = { 6977 }, level = 1, group = "HazardDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [255840549] = { "Small Passive Skills in Radius also grant (2-3)% increased Hazard Damage" }, } }, + ["JewelRadiusIncisionChance"] = { type = "Prefix", affix = "Incise", "(3-5)% chance for Attack Hits to apply Incision", statOrder = { 5549 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [318092306] = { "Small Passive Skills in Radius also grant (3-5)% chance for Attack Hits to apply Incision" }, } }, + ["JewelRadiusBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(8-12)% increased Glory generation for Banner Skills", statOrder = { 6911 }, level = 1, group = "BannerValourGained", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2907381231] = { "Notable Passive Skills in Radius also grant (8-12)% increased Glory generation for Banner Skills" }, } }, + ["JewelRadiusBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (2-3)% increased Area of Effect", statOrder = { 4626 }, level = 1, group = "BannerArea", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4142814612] = { "Small Passive Skills in Radius also grant Banner Skills have (2-3)% increased Area of Effect" }, } }, + ["JewelRadiusBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (3-4)% increased Duration", statOrder = { 4628 }, level = 1, group = "BannerDuration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [2690740379] = { "Small Passive Skills in Radius also grant Banner Skills have (3-4)% increased Duration" }, } }, ["JewelRadiusPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(8-12)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "aura" }, nodeType = 2, tradeHashes = { [4032352472] = { "Notable Passive Skills in Radius also grant (8-12)% increased Presence Area of Effect" }, } }, - ["JewelRadiusIncLightningColdToFire"] = { type = "Prefix", affix = "Anger", "Increases and Reductions to", " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage", statOrder = { 7788, 7788.1 }, level = 1, group = "IncreasedLightningColdToFire", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1400313697] = { "Increases and Reductions to", " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage" }, } }, - ["JewelRadiusIncLightningFireToCold"] = { type = "Prefix", affix = "Hatred", "Increases and Reductions to", " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage", statOrder = { 7789, 7789.1 }, level = 1, group = "IncreasedLightningFireToCold", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3368921525] = { "Increases and Reductions to", " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage" }, } }, - ["JewelRadiusIncColdFreToLightning"] = { type = "Prefix", affix = "Wrath", "Increases and Reductions to", " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage", statOrder = { 7787, 7787.1 }, level = 1, group = "IncreasedColdFreToLightning", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [895564377] = { "Increases and Reductions to", " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage" }, } }, - ["CraftedJewelPrefixEffect"] = { type = "Suffix", affix = "", "(40-60)% increased Effect of Prefixes", statOrder = { 7809 }, level = 1, group = "LocalPrefixEffect", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1443502073] = { "(40-60)% increased Effect of Prefixes" }, } }, - ["CraftedJewelSuffixEffect"] = { type = "Prefix", affix = "", "(40-60)% increased Effect of Suffixes", statOrder = { 7810 }, level = 1, group = "LocalSuffixEffect", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2475221757] = { "(40-60)% increased Effect of Suffixes" }, } }, - ["CraftedJewelRadiusExtraLargeSize"] = { type = "Prefix", affix = "", "Upgrades Radius to Very Large", statOrder = { 7759 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Very Large" }, } }, + ["JewelRadiusIncLightningColdToFire"] = { type = "Prefix", affix = "Anger", "Increases and Reductions to", " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage", statOrder = { 7784, 7784.1 }, level = 1, group = "IncreasedLightningColdToFire", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1400313697] = { "Increases and Reductions to", " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage" }, } }, + ["JewelRadiusIncLightningFireToCold"] = { type = "Prefix", affix = "Hatred", "Increases and Reductions to", " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage", statOrder = { 7785, 7785.1 }, level = 1, group = "IncreasedLightningFireToCold", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3368921525] = { "Increases and Reductions to", " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage" }, } }, + ["JewelRadiusIncColdFreToLightning"] = { type = "Prefix", affix = "Wrath", "Increases and Reductions to", " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage", statOrder = { 7783, 7783.1 }, level = 1, group = "IncreasedColdFreToLightning", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [895564377] = { "Increases and Reductions to", " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage" }, } }, + ["CraftedJewelPrefixEffect"] = { type = "Suffix", affix = "", "(40-60)% increased Effect of Prefixes", statOrder = { 7805 }, level = 1, group = "LocalPrefixEffect", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1443502073] = { "(40-60)% increased Effect of Prefixes" }, } }, + ["CraftedJewelSuffixEffect"] = { type = "Prefix", affix = "", "(40-60)% increased Effect of Suffixes", statOrder = { 7806 }, level = 1, group = "LocalSuffixEffect", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2475221757] = { "(40-60)% increased Effect of Suffixes" }, } }, + ["CraftedJewelRadiusExtraLargeSize"] = { type = "Prefix", affix = "", "Upgrades Radius to Very Large", statOrder = { 7755 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Very Large" }, } }, ["CraftedJewelRadiusFireResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, nodeType = 2, tradeHashes = { [2670212285] = { "Notable Passive Skills in Radius also grant +(5-7)% to Fire Resistance" }, } }, ["CraftedJewelRadiusColdResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, nodeType = 2, tradeHashes = { [3946450303] = { "Notable Passive Skills in Radius also grant +(5-7)% to Cold Resistance" }, } }, ["CraftedJewelRadiusLightningResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, nodeType = 2, tradeHashes = { [1687542781] = { "Notable Passive Skills in Radius also grant +(5-7)% to Lightning Resistance" }, } }, @@ -370,13 +370,13 @@ return { ["CraftedJewelMaximumChaosResistance"] = { type = "Suffix", affix = "", "+1% to Maximum Chaos Resistance", statOrder = { 1012 }, level = 1, group = "MaximumChaosResistance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, } }, ["CraftedJewelAdditionalPrefixAllowed"] = { type = "Suffix", affix = "", "+1 Prefix Modifier allowed", statOrder = { 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [718638445] = { "" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, ["CraftedJewelAdditionalSuffixAllowed"] = { type = "Prefix", affix = "", "+1 Suffix Modifier allowed", statOrder = { 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [3182714256] = { "" }, } }, - ["CraftedJewelDebilitateOnHitWhileEmeraldSapphireSocketed"] = { type = "Suffix", affix = "", "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", statOrder = { 4328 }, level = 1, group = "DebilitateOnHitWhileEmeraldSapphireForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [541021467] = { "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree" }, } }, - ["CraftedJewelBlindOnHitWhileRubySapphireSocketed"] = { type = "Suffix", affix = "", "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", statOrder = { 4325 }, level = 1, group = "BlindOnHitWhileRubySapphireForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3587953142] = { "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree" }, } }, - ["CraftedJewelExposureOnHitWhileRubyEmeraldSocketed"] = { type = "Suffix", affix = "", "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", statOrder = { 4329 }, level = 1, group = "ExposureOnHitWhileRubyEmeraldForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [2951965588] = { "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree" }, } }, - ["JewelRadiusShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(1-2)% increased Skill Speed while Shapeshifted", statOrder = { 9916 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [3579898587] = { "Notable Passive Skills in Radius also grant (1-2)% increased Skill Speed while Shapeshifted" }, } }, - ["JewelRadiusShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(1-2)% increased Damage while Shapeshifted", statOrder = { 5962 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [266564538] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage while Shapeshifted" }, } }, - ["JewelRadiusPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(1-2)% increased Damage with Plant Skills", statOrder = { 9486 }, level = 1, group = "PlantDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1590846356] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Plant Skills" }, } }, - ["JewelShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(2-4)% increased Skill Speed while Shapeshifted", statOrder = { 9916 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "intjewel", "strjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [918325986] = { "(2-4)% increased Skill Speed while Shapeshifted" }, } }, - ["JewelShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(5-15)% increased Damage while Shapeshifted", statOrder = { 5962 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "intjewel", "strjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2440073079] = { "(5-15)% increased Damage while Shapeshifted" }, } }, - ["JewelPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(5-15)% increased Damage with Plant Skills", statOrder = { 9486 }, level = 1, group = "PlantDamageForJewel", weightKey = { "intjewel", "strjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2518900926] = { "(5-15)% increased Damage with Plant Skills" }, } }, + ["CraftedJewelDebilitateOnHitWhileEmeraldSapphireSocketed"] = { type = "Suffix", affix = "", "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", statOrder = { 4325 }, level = 1, group = "DebilitateOnHitWhileEmeraldSapphireForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [541021467] = { "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree" }, } }, + ["CraftedJewelBlindOnHitWhileRubySapphireSocketed"] = { type = "Suffix", affix = "", "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", statOrder = { 4322 }, level = 1, group = "BlindOnHitWhileRubySapphireForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3587953142] = { "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree" }, } }, + ["CraftedJewelExposureOnHitWhileRubyEmeraldSocketed"] = { type = "Suffix", affix = "", "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", statOrder = { 4326 }, level = 1, group = "ExposureOnHitWhileRubyEmeraldForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [2951965588] = { "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree" }, } }, + ["JewelRadiusShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(1-2)% increased Skill Speed while Shapeshifted", statOrder = { 9907 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [3579898587] = { "Notable Passive Skills in Radius also grant (1-2)% increased Skill Speed while Shapeshifted" }, } }, + ["JewelRadiusShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(1-2)% increased Damage while Shapeshifted", statOrder = { 5958 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [266564538] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage while Shapeshifted" }, } }, + ["JewelRadiusPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(1-2)% increased Damage with Plant Skills", statOrder = { 9477 }, level = 1, group = "PlantDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1590846356] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Plant Skills" }, } }, + ["JewelShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(2-4)% increased Skill Speed while Shapeshifted", statOrder = { 9907 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "intjewel", "strjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [918325986] = { "(2-4)% increased Skill Speed while Shapeshifted" }, } }, + ["JewelShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(5-15)% increased Damage while Shapeshifted", statOrder = { 5958 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "intjewel", "strjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2440073079] = { "(5-15)% increased Damage while Shapeshifted" }, } }, + ["JewelPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(5-15)% increased Damage with Plant Skills", statOrder = { 9477 }, level = 1, group = "PlantDamageForJewel", weightKey = { "intjewel", "strjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2518900926] = { "(5-15)% increased Damage with Plant Skills" }, } }, } \ No newline at end of file diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index d407a88dd5..eb4f9b8fc4 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -2,59 +2,59 @@ -- Item data (c) Grinding Gear Games return { - ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7713 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraTribute", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [1119086588] = { "Conquered Attribute Passive Skills also grant +(2-5) to Tribute" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraStrength"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Strength", statOrder = { 7712 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraStrength", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3871530702] = { "Conquered Attribute Passive Skills also grant +(4-8) to Strength" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraDexterity"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", statOrder = { 7710 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraDexterity", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [1938221597] = { "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraIntelligence"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", statOrder = { 7711 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraIntelligence", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3116427713] = { "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraAllAttributes"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", statOrder = { 7709 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [2552484522] = { "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes" }, } }, - ["HistoricAbyssJewelSmallGrantEvasionRatingIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", statOrder = { 7720 }, level = 1, group = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "evasion" }, tradeHashes = { [468694293] = { "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating" }, } }, - ["HistoricAbyssJewelSmallGrantArmourIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Armour", statOrder = { 7715 }, level = 1, group = "HistoricAbyssJewelSmallGrantArmourIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "armour" }, tradeHashes = { [970480050] = { "Conquered Small Passive Skills also grant (2-4)% increased Armour" }, } }, - ["HistoricAbyssJewelSmallGrantEnergyShieldIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", statOrder = { 7719 }, level = 1, group = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "energy_shield" }, tradeHashes = { [2780670304] = { "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield" }, } }, - ["HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", statOrder = { 7722 }, level = 1, group = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "mana" }, tradeHashes = { [1818915622] = { "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate" }, } }, - ["HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", statOrder = { 7721 }, level = 1, group = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "life" }, tradeHashes = { [4264952559] = { "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate" }, } }, - ["HistoricAbyssJewelSmallGrantSpellDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", statOrder = { 7725 }, level = 1, group = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "caster" }, tradeHashes = { [3038857426] = { "Conquered Small Passive Skills also grant (3-5)% increased Spell damage" }, } }, - ["HistoricAbyssJewelSmallGrantAttackDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", statOrder = { 7716 }, level = 1, group = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "damage", "attack" }, tradeHashes = { [8816597] = { "Conquered Small Passive Skills also grant (3-5)% increased Attack damage" }, } }, - ["HistoricAbyssJewelSmallGrantElementalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", statOrder = { 7718 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [4240116297] = { "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage" }, } }, - ["HistoricAbyssJewelSmallGrantPhysicalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", statOrder = { 7724 }, level = 1, group = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "physical" }, tradeHashes = { [1829333149] = { "Conquered Small Passive Skills also grant (3-5)% increased Physical damage" }, } }, - ["HistoricAbyssJewelSmallGrantChaosDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", statOrder = { 7717 }, level = 1, group = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "chaos" }, tradeHashes = { [2601021356] = { "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage" }, } }, - ["HistoricAbyssJewelSmallGrantMinionDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", statOrder = { 7723 }, level = 1, group = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "minion" }, tradeHashes = { [3343033032] = { "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage" }, } }, - ["HistoricAbyssJewelSmallGrantStunThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", statOrder = { 7726 }, level = 1, group = "HistoricAbyssJewelSmallGrantStunThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [2475870935] = { "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold" }, } }, - ["HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", statOrder = { 7714 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1283490138] = { "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7709 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraTribute", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [1119086588] = { "Conquered Attribute Passive Skills also grant +(2-5) to Tribute" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraStrength"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Strength", statOrder = { 7708 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraStrength", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3871530702] = { "Conquered Attribute Passive Skills also grant +(4-8) to Strength" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraDexterity"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", statOrder = { 7706 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraDexterity", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [1938221597] = { "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraIntelligence"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", statOrder = { 7707 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraIntelligence", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3116427713] = { "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraAllAttributes"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", statOrder = { 7705 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [2552484522] = { "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes" }, } }, + ["HistoricAbyssJewelSmallGrantEvasionRatingIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", statOrder = { 7716 }, level = 1, group = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "evasion" }, tradeHashes = { [468694293] = { "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating" }, } }, + ["HistoricAbyssJewelSmallGrantArmourIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Armour", statOrder = { 7711 }, level = 1, group = "HistoricAbyssJewelSmallGrantArmourIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "armour" }, tradeHashes = { [970480050] = { "Conquered Small Passive Skills also grant (2-4)% increased Armour" }, } }, + ["HistoricAbyssJewelSmallGrantEnergyShieldIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", statOrder = { 7715 }, level = 1, group = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "energy_shield" }, tradeHashes = { [2780670304] = { "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield" }, } }, + ["HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", statOrder = { 7718 }, level = 1, group = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "mana" }, tradeHashes = { [1818915622] = { "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate" }, } }, + ["HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", statOrder = { 7717 }, level = 1, group = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "life" }, tradeHashes = { [4264952559] = { "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate" }, } }, + ["HistoricAbyssJewelSmallGrantSpellDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", statOrder = { 7721 }, level = 1, group = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "caster" }, tradeHashes = { [3038857426] = { "Conquered Small Passive Skills also grant (3-5)% increased Spell damage" }, } }, + ["HistoricAbyssJewelSmallGrantAttackDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", statOrder = { 7712 }, level = 1, group = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "damage", "attack" }, tradeHashes = { [8816597] = { "Conquered Small Passive Skills also grant (3-5)% increased Attack damage" }, } }, + ["HistoricAbyssJewelSmallGrantElementalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", statOrder = { 7714 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [4240116297] = { "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage" }, } }, + ["HistoricAbyssJewelSmallGrantPhysicalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", statOrder = { 7720 }, level = 1, group = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "physical" }, tradeHashes = { [1829333149] = { "Conquered Small Passive Skills also grant (3-5)% increased Physical damage" }, } }, + ["HistoricAbyssJewelSmallGrantChaosDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", statOrder = { 7713 }, level = 1, group = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "chaos" }, tradeHashes = { [2601021356] = { "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage" }, } }, + ["HistoricAbyssJewelSmallGrantMinionDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", statOrder = { 7719 }, level = 1, group = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "minion" }, tradeHashes = { [3343033032] = { "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage" }, } }, + ["HistoricAbyssJewelSmallGrantStunThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", statOrder = { 7722 }, level = 1, group = "HistoricAbyssJewelSmallGrantStunThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [2475870935] = { "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold" }, } }, + ["HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", statOrder = { 7710 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1283490138] = { "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold" }, } }, ["UniqueHeartPrefixDamageGainedAsFire"] = { affix = "", "Gain (9-15)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageGainedAsFire", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (9-15)% of Damage as Extra Fire Damage" }, } }, ["UniqueHeartPrefixDamageGainedAsCold"] = { affix = "", "Gain (7-13)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (7-13)% of Damage as Extra Chaos Damage" }, } }, ["UniqueHeartPrefixDamageGainedAsLightning"] = { affix = "", "Gain (9-15)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (9-15)% of Damage as Extra Cold Damage" }, } }, ["UniqueHeartPrefixDamageGainedAsChaos"] = { affix = "", "Gain (9-15)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 1, group = "DamageGainedAsLightning", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (9-15)% of Damage as Extra Lightning Damage" }, } }, - ["UniqueHeartPrefixMinionReviveSpeed"] = { affix = "", "Minions Revive (5-10)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-10)% faster" }, } }, + ["UniqueHeartPrefixMinionReviveSpeed"] = { affix = "", "Minions Revive (5-10)% faster", statOrder = { 9076 }, level = 1, group = "MinionReviveSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-10)% faster" }, } }, ["UniqueHeartPrefixIncreasedSkillSpeed"] = { affix = "", "(4-8)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "speed" }, tradeHashes = { [970213192] = { "(4-8)% increased Skill Speed" }, } }, - ["UniqueHeartPrefixManaCostEfficiency"] = { affix = "", "(8-16)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "ManaCostEfficiency", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4101445926] = { "(8-16)% increased Mana Cost Efficiency" }, } }, - ["UniqueHeartPrefixGlobalCooldownRecovery"] = { affix = "", "(10-18)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1004011302] = { "(10-18)% increased Cooldown Recovery Rate" }, } }, + ["UniqueHeartPrefixManaCostEfficiency"] = { affix = "", "(8-16)% increased Mana Cost Efficiency", statOrder = { 4714 }, level = 1, group = "ManaCostEfficiency", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4101445926] = { "(8-16)% increased Mana Cost Efficiency" }, } }, + ["UniqueHeartPrefixGlobalCooldownRecovery"] = { affix = "", "(10-18)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1004011302] = { "(10-18)% increased Cooldown Recovery Rate" }, } }, ["UniqueHeartPrefixChanceToPierce"] = { affix = "", "(30-50)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2321178454] = { "(30-50)% chance to Pierce an Enemy" }, } }, ["UniqueHeartPrefixSkillEffectDuration"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, ["UniqueHeartPrefixMinionLifeGainAsEnergyShield"] = { affix = "", "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 1437 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "energy_shield", "minion" }, tradeHashes = { [943702197] = { "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield" }, } }, ["UniqueHeartPrefixMinionLifeRegeneration"] = { affix = "", "Minions Regenerate (1-3)% of maximum Life per second", statOrder = { 2666 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1-3)% of maximum Life per second" }, } }, - ["UniqueHeartPrefixDamageWhileInPresenceOfCompanion"] = { affix = "", "(15-25)% increased Damage while your Companion is in your Presence", statOrder = { 5961 }, level = 1, group = "DamageWhileInPresenceOfCompanion", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "minion" }, tradeHashes = { [693180608] = { "(15-25)% increased Damage while your Companion is in your Presence" }, } }, - ["UniqueHeartPrefixAggravateBleedOnAttackHitChance"] = { affix = "", "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4240 }, level = 1, group = "AggravateBleedOnAttackHitChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_prefix", "physical", "ailment" }, tradeHashes = { [2705185939] = { "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["UniqueHeartPrefixLuckyLightningDamageChancePercent"] = { affix = "", "(15-25)% chance for Lightning Damage with Hits to be Lucky", statOrder = { 5405 }, level = 1, group = "LuckyLightningDamageChancePercent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [2466011626] = { "(15-25)% chance for Lightning Damage with Hits to be Lucky" }, } }, - ["UniqueHeartPrefixRecoverLifeOnKillingPoisonedEnemy"] = { affix = "", "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9697 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemy", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [1781372024] = { "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy" }, } }, - ["UniqueHeartPrefixPercentOfLeechIsInstant"] = { affix = "", "(8-15)% of Leech is Instant", statOrder = { 7425 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, - ["UniqueHeartPrefixEvasionRatingFromBodyArmour"] = { affix = "", "(40-60)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4958 }, level = 1, group = "EvasionRatingFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "evasion" }, tradeHashes = { [3509362078] = { "(40-60)% increased Evasion Rating from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { affix = "", "(40-60)% increased Armour from Equipped Body Armour", statOrder = { 4957 }, level = 1, group = "BodyArmourFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "armour" }, tradeHashes = { [1015576579] = { "(40-60)% increased Armour from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { affix = "", "(40-60)% increased Energy Shield from Equipped Body Armour", statOrder = { 8863 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "energy_shield" }, tradeHashes = { [1195319608] = { "(40-60)% increased Energy Shield from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixTriggersRefundEnergySpent"] = { affix = "", "(6-12)% chance for Trigger skills to refund half of Energy Spent", statOrder = { 10320 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [599320227] = { "(6-12)% chance for Trigger skills to refund half of Energy Spent" }, } }, - ["UniqueHeartPrefixManaRegenerationRateWhileMoving"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 8021 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, - ["UniqueHeartPrefixCullingStrikeThreshold"] = { affix = "", "(15-25)% increased Culling Strike Threshold", statOrder = { 5914 }, level = 1, group = "CullingStrikeThreshold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3563080185] = { "(15-25)% increased Culling Strike Threshold" }, } }, - ["UniqueHeartPrefixPhysicalDamagePreventedRecoup"] = { affix = "", "(5-10)% of Physical Damage prevented Recouped as Life", statOrder = { 9451 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "physical" }, tradeHashes = { [1374654984] = { "(5-10)% of Physical Damage prevented Recouped as Life" }, } }, + ["UniqueHeartPrefixDamageWhileInPresenceOfCompanion"] = { affix = "", "(15-25)% increased Damage while your Companion is in your Presence", statOrder = { 5957 }, level = 1, group = "DamageWhileInPresenceOfCompanion", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "minion" }, tradeHashes = { [693180608] = { "(15-25)% increased Damage while your Companion is in your Presence" }, } }, + ["UniqueHeartPrefixAggravateBleedOnAttackHitChance"] = { affix = "", "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4237 }, level = 1, group = "AggravateBleedOnAttackHitChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_prefix", "physical", "ailment" }, tradeHashes = { [2705185939] = { "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["UniqueHeartPrefixLuckyLightningDamageChancePercent"] = { affix = "", "(15-25)% chance for Lightning Damage with Hits to be Lucky", statOrder = { 5401 }, level = 1, group = "LuckyLightningDamageChancePercent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [2466011626] = { "(15-25)% chance for Lightning Damage with Hits to be Lucky" }, } }, + ["UniqueHeartPrefixRecoverLifeOnKillingPoisonedEnemy"] = { affix = "", "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9688 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemy", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [1781372024] = { "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy" }, } }, + ["UniqueHeartPrefixPercentOfLeechIsInstant"] = { affix = "", "(8-15)% of Leech is Instant", statOrder = { 7421 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, + ["UniqueHeartPrefixEvasionRatingFromBodyArmour"] = { affix = "", "(40-60)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4954 }, level = 1, group = "EvasionRatingFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "evasion" }, tradeHashes = { [3509362078] = { "(40-60)% increased Evasion Rating from Equipped Body Armour" }, } }, + ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { affix = "", "(40-60)% increased Armour from Equipped Body Armour", statOrder = { 4953 }, level = 1, group = "BodyArmourFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "armour" }, tradeHashes = { [1015576579] = { "(40-60)% increased Armour from Equipped Body Armour" }, } }, + ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { affix = "", "(40-60)% increased Energy Shield from Equipped Body Armour", statOrder = { 8854 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "energy_shield" }, tradeHashes = { [1195319608] = { "(40-60)% increased Energy Shield from Equipped Body Armour" }, } }, + ["UniqueHeartPrefixTriggersRefundEnergySpent"] = { affix = "", "(6-12)% chance for Trigger skills to refund half of Energy Spent", statOrder = { 10311 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [599320227] = { "(6-12)% chance for Trigger skills to refund half of Energy Spent" }, } }, + ["UniqueHeartPrefixManaRegenerationRateWhileMoving"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 8017 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, + ["UniqueHeartPrefixCullingStrikeThreshold"] = { affix = "", "(15-25)% increased Culling Strike Threshold", statOrder = { 5910 }, level = 1, group = "CullingStrikeThreshold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3563080185] = { "(15-25)% increased Culling Strike Threshold" }, } }, + ["UniqueHeartPrefixPhysicalDamagePreventedRecoup"] = { affix = "", "(5-10)% of Physical Damage prevented Recouped as Life", statOrder = { 9442 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "physical" }, tradeHashes = { [1374654984] = { "(5-10)% of Physical Damage prevented Recouped as Life" }, } }, ["UniqueHeartPrefixMaximumElementalResistance"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 1007 }, level = 1, group = "MaximumElementalResistance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["UniqueHeartPrefixIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 7238 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, - ["UniqueHeartPrefixRecoupSpeed"] = { affix = "", "(8-14)% increased speed of Recoup Effects", statOrder = { 9663 }, level = 1, group = "RecoupSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2363593824] = { "(8-14)% increased speed of Recoup Effects" }, } }, - ["UniqueHeartPrefixFlaskLifeRegenForXSeconds"] = { affix = "", "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", statOrder = { 7516 }, level = 1, group = "FlaskLifeRegenForXSeconds", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [3161573445] = { "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds" }, } }, - ["UniqueHeartPrefixCharmRecoverManaOnUse"] = { affix = "", "Recover (5-10)% of maximum Mana when a Charm is used", statOrder = { 9699 }, level = 1, group = "CharmRecoverManaOnUse", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4121454694] = { "Recover (5-10)% of maximum Mana when a Charm is used" }, } }, - ["UniqueHeartPrefixCharmChanceToUseOtherCharm"] = { affix = "", "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", statOrder = { 5633 }, level = 1, group = "CharmChanceToUseOtherCharm", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1949851472] = { "(10-15)% chance when a Charm is used to use another Charm without consuming Charges" }, } }, - ["UniqueHeartPrefixCharmEffect"] = { affix = "", "Charms applied to you have (15-25)% increased Effect", statOrder = { 5612 }, level = 1, group = "CharmEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3480095574] = { "Charms applied to you have (15-25)% increased Effect" }, } }, - ["UniqueHeartPrefixThornsCriticalStrikeChance"] = { affix = "", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4758 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, - ["UniqueHeartPrefixThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour", statOrder = { 4664 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour" }, } }, - ["UniqueHeartPrefixAttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { affix = "", "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence", statOrder = { 4568 }, level = 1, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "attack", "speed" }, tradeHashes = { [314741699] = { "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence" }, } }, - ["UniqueHeartPrefixElementalExposureEffect"] = { affix = "", "(15-25)% increased Exposure Effect", statOrder = { 6533 }, level = 1, group = "ElementalExposureEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(15-25)% increased Exposure Effect" }, } }, + ["UniqueHeartPrefixIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 7234 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, + ["UniqueHeartPrefixRecoupSpeed"] = { affix = "", "(8-14)% increased speed of Recoup Effects", statOrder = { 9654 }, level = 1, group = "RecoupSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2363593824] = { "(8-14)% increased speed of Recoup Effects" }, } }, + ["UniqueHeartPrefixFlaskLifeRegenForXSeconds"] = { affix = "", "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", statOrder = { 7512 }, level = 1, group = "FlaskLifeRegenForXSeconds", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [3161573445] = { "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds" }, } }, + ["UniqueHeartPrefixCharmRecoverManaOnUse"] = { affix = "", "Recover (5-10)% of maximum Mana when a Charm is used", statOrder = { 9690 }, level = 1, group = "CharmRecoverManaOnUse", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4121454694] = { "Recover (5-10)% of maximum Mana when a Charm is used" }, } }, + ["UniqueHeartPrefixCharmChanceToUseOtherCharm"] = { affix = "", "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", statOrder = { 5629 }, level = 1, group = "CharmChanceToUseOtherCharm", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1949851472] = { "(10-15)% chance when a Charm is used to use another Charm without consuming Charges" }, } }, + ["UniqueHeartPrefixCharmEffect"] = { affix = "", "Charms applied to you have (15-25)% increased Effect", statOrder = { 5608 }, level = 1, group = "CharmEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3480095574] = { "Charms applied to you have (15-25)% increased Effect" }, } }, + ["UniqueHeartPrefixThornsCriticalStrikeChance"] = { affix = "", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4754 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, + ["UniqueHeartPrefixThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour", statOrder = { 4661 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour" }, } }, + ["UniqueHeartPrefixAttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { affix = "", "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence", statOrder = { 4565 }, level = 1, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "attack", "speed" }, tradeHashes = { [314741699] = { "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence" }, } }, + ["UniqueHeartPrefixElementalExposureEffect"] = { affix = "", "(15-25)% increased Exposure Effect", statOrder = { 6529 }, level = 1, group = "ElementalExposureEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(15-25)% increased Exposure Effect" }, } }, ["UniqueHeartSuffixMaximumFireResist"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, ["UniqueHeartSuffixMaximumColdResist"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, ["UniqueHeartSuffixMaximumLightningResist"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, @@ -62,21 +62,21 @@ return { ["UniqueHeartSuffixLifeRegenerationRate"] = { affix = "", "(6-12)% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [44972811] = { "(6-12)% increased Life Regeneration rate" }, } }, ["UniqueHeartSuffixStunDamageIncrease"] = { affix = "", "(6-12)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "StunDamageIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [239367161] = { "(6-12)% increased Stun Buildup" }, } }, ["UniqueHeartSuffixIncreasedStunThreshold"] = { affix = "", "(5-10)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [680068163] = { "(5-10)% increased Stun Threshold" }, } }, - ["UniqueHeartSuffixRageOnHit"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6873 }, level = 1, group = "RageOnHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["UniqueHeartSuffixGainRageWhenHit"] = { affix = "", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6875 }, level = 1, group = "GainRageWhenHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3292710273] = { "Gain (1-2) Rage when Hit by an Enemy" }, } }, - ["UniqueHeartSuffixLifeCost"] = { affix = "", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 1, group = "LifeCost", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2480498143] = { "(2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["UniqueHeartSuffixAilmentChance"] = { affix = "", "(4-8)% increased chance to inflict Ailments", statOrder = { 4255 }, level = 1, group = "AilmentChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [1772247089] = { "(4-8)% increased chance to inflict Ailments" }, } }, - ["UniqueHeartSuffixIncreasedAilmentThreshold"] = { affix = "", "(6-12)% increased Elemental Ailment Threshold", statOrder = { 4266 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [3544800472] = { "(6-12)% increased Elemental Ailment Threshold" }, } }, + ["UniqueHeartSuffixRageOnHit"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6869 }, level = 1, group = "RageOnHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, + ["UniqueHeartSuffixGainRageWhenHit"] = { affix = "", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6871 }, level = 1, group = "GainRageWhenHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3292710273] = { "Gain (1-2) Rage when Hit by an Enemy" }, } }, + ["UniqueHeartSuffixLifeCost"] = { affix = "", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4740 }, level = 1, group = "LifeCost", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2480498143] = { "(2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["UniqueHeartSuffixAilmentChance"] = { affix = "", "(4-8)% increased chance to inflict Ailments", statOrder = { 4252 }, level = 1, group = "AilmentChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [1772247089] = { "(4-8)% increased chance to inflict Ailments" }, } }, + ["UniqueHeartSuffixIncreasedAilmentThreshold"] = { affix = "", "(6-12)% increased Elemental Ailment Threshold", statOrder = { 4263 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [3544800472] = { "(6-12)% increased Elemental Ailment Threshold" }, } }, ["UniqueHeartSuffixIncreasedAttackSpeed"] = { affix = "", "(2-3)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "speed" }, tradeHashes = { [681332047] = { "(2-3)% increased Attack Speed" }, } }, - ["UniqueHeartSuffixGlobalCooldownRecovery"] = { affix = "", "(2-3)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1004011302] = { "(2-3)% increased Cooldown Recovery Rate" }, } }, - ["UniqueHeartSuffixDebuffTimePassed"] = { affix = "", "Debuffs on you expire (4-8)% faster", statOrder = { 6099 }, level = 1, group = "DebuffTimePassed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (4-8)% faster" }, } }, - ["UniqueHeartSuffixFasterAilmentDamageForJewel"] = { affix = "", "Damaging Ailments deal damage (2-4)% faster", statOrder = { 6068 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (2-4)% faster" }, } }, + ["UniqueHeartSuffixGlobalCooldownRecovery"] = { affix = "", "(2-3)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1004011302] = { "(2-3)% increased Cooldown Recovery Rate" }, } }, + ["UniqueHeartSuffixDebuffTimePassed"] = { affix = "", "Debuffs on you expire (4-8)% faster", statOrder = { 6095 }, level = 1, group = "DebuffTimePassed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (4-8)% faster" }, } }, + ["UniqueHeartSuffixFasterAilmentDamageForJewel"] = { affix = "", "Damaging Ailments deal damage (2-4)% faster", statOrder = { 6064 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (2-4)% faster" }, } }, ["UniqueHeartSuffixMovementVelocity"] = { affix = "", "(1-2)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, - ["UniqueHeartSuffixSlowPotency"] = { affix = "", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 1, group = "SlowPotency", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, - ["UniqueHeartSuffixIncreasedFlaskChargesGained"] = { affix = "", "(4-8)% increased Flask Charges gained", statOrder = { 6640 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1836676211] = { "(4-8)% increased Flask Charges gained" }, } }, + ["UniqueHeartSuffixSlowPotency"] = { affix = "", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4743 }, level = 1, group = "SlowPotency", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, + ["UniqueHeartSuffixIncreasedFlaskChargesGained"] = { affix = "", "(4-8)% increased Flask Charges gained", statOrder = { 6636 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1836676211] = { "(4-8)% increased Flask Charges gained" }, } }, ["UniqueHeartSuffixFlaskDuration"] = { affix = "", "(4-8)% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "FlaskDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3741323227] = { "(4-8)% increased Flask Effect Duration" }, } }, ["UniqueHeartSuffixBaseChanceToPoison"] = { affix = "", "(5-10)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, - ["UniqueHeartSuffixBaseChanceToBleed"] = { affix = "", "(5-10)% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "BaseChanceToBleed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_suffix", "physical", "ailment" }, tradeHashes = { [2174054121] = { "(5-10)% chance to inflict Bleeding on Hit" }, } }, + ["UniqueHeartSuffixBaseChanceToBleed"] = { affix = "", "(5-10)% chance to inflict Bleeding on Hit", statOrder = { 4668 }, level = 1, group = "BaseChanceToBleed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_suffix", "physical", "ailment" }, tradeHashes = { [2174054121] = { "(5-10)% chance to inflict Bleeding on Hit" }, } }, ["UniqueHeartSuffixIncreasedCastSpeedForJewel"] = { affix = "", "(2-3)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "unveiled_mod", "heart_unique_jewel_suffix", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-3)% increased Cast Speed" }, } }, ["UniqueHeartSuffixCritChanceForJewel"] = { affix = "", "(4-8)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CritChanceForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "critical" }, tradeHashes = { [587431675] = { "(4-8)% increased Critical Hit Chance" }, } }, ["UniqueHeartSuffixCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "critical" }, tradeHashes = { [3556824919] = { "(6-12)% increased Critical Damage Bonus" }, } }, @@ -88,11 +88,11 @@ return { ["UniqueHeartSuffixLifeRecoupForJewel"] = { affix = "", "(2-3)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, ["UniqueHeartSuffixManaRegeneration"] = { affix = "", "(4-8)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [789117908] = { "(4-8)% increased Mana Regeneration Rate" }, } }, ["UniqueHeartSuffixMinionPhysicalDamageReduction"] = { affix = "", "Minions have (3-12)% additional Physical Damage Reduction", statOrder = { 2022 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (3-12)% additional Physical Damage Reduction" }, } }, - ["UniqueHeartSuffixMinionAttackSpeedAndCastSpeed"] = { affix = "", "Minions have (2-3)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "unveiled_mod", "heart_unique_jewel_suffix", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-3)% increased Attack and Cast Speed" }, } }, - ["UniqueHeartSuffixMinionCriticalStrikeChanceIncrease"] = { affix = "", "Minions have (6-12)% increased Critical Hit Chance", statOrder = { 9030 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (6-12)% increased Critical Hit Chance" }, } }, + ["UniqueHeartSuffixMinionAttackSpeedAndCastSpeed"] = { affix = "", "Minions have (2-3)% increased Attack and Cast Speed", statOrder = { 8994 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "unveiled_mod", "heart_unique_jewel_suffix", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-3)% increased Attack and Cast Speed" }, } }, + ["UniqueHeartSuffixMinionCriticalStrikeChanceIncrease"] = { affix = "", "Minions have (6-12)% increased Critical Hit Chance", statOrder = { 9021 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (6-12)% increased Critical Hit Chance" }, } }, ["UniqueHeartSuffixMinionElementalResistance"] = { affix = "", "Minions have +(3-4)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(3-4)% to all Elemental Resistances" }, } }, - ["UniqueHeartSuffixStunThresholdfromEnergyShield"] = { affix = "", "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 10138 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield" }, } }, - ["UniqueHeartSuffixAilmentThresholdfromEnergyShield"] = { affix = "", "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 4265 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield" }, } }, + ["UniqueHeartSuffixStunThresholdfromEnergyShield"] = { affix = "", "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 10129 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield" }, } }, + ["UniqueHeartSuffixAilmentThresholdfromEnergyShield"] = { affix = "", "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 4262 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield" }, } }, ["AbyssModRadiusJewelPrefixDamageTakenRecoupLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [3669820740] = { "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Life" }, } }, ["AbyssModRadiusJewelPrefixDamageTakenRecoupMana"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [85367160] = { "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Mana" }, } }, ["AbyssModRadiusJewelPrefixPercentMaximumMana"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Mana", statOrder = { 894 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [2589572664] = { "Notable Passive Skills in Radius also grant 1% increased maximum Mana" }, } }, @@ -100,11 +100,11 @@ return { ["AbyssModRadiusJewelPrefixGlobalDefences"] = { type = "Prefix", affix = "Lightless", "(2-3)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2588 }, level = 1, group = "HybridAbyssModRadiusJewelGlobalDefences", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "evasion", "energy_shield" }, nodeType = 2, tradeHashes = { [2783157569] = { "Notable Passive Skills in Radius also grant (2-3)% increased Global Armour, Evasion and Energy Shield" }, } }, ["AbyssModRadiusJewelPrefixDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenFromManaBeforeLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [2709646369] = { "Notable Passive Skills in Radius also grant 1% of Damage is taken from Mana before Life" }, } }, ["AbyssModRadiusJewelPrefixRegeneratePercentLifePerSecond"] = { type = "Suffix", affix = "Lightless", "Regenerate (0.03-0.07)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "HybridAbyssModRadiusJewelRegeneratePercentLifePerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [3566150527] = { "Notable Passive Skills in Radius also grant Regenerate (0.03-0.07)% of maximum Life per second" }, } }, - ["AbyssModRadiusJewelPrefixManaCostEfficiency"] = { type = "Suffix", affix = "Lightless", "(2-3)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "HybridAbyssModRadiusJewelManaCostEfficiency", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [4257790560] = { "Notable Passive Skills in Radius also grant (2-3)% increased Mana Cost Efficiency" }, } }, + ["AbyssModRadiusJewelPrefixManaCostEfficiency"] = { type = "Suffix", affix = "Lightless", "(2-3)% increased Mana Cost Efficiency", statOrder = { 4714 }, level = 1, group = "HybridAbyssModRadiusJewelManaCostEfficiency", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [4257790560] = { "Notable Passive Skills in Radius also grant (2-3)% increased Mana Cost Efficiency" }, } }, ["AbyssModRadiusJewelPrefixReducedCriticalHitChanceAgainstYou"] = { type = "Suffix", affix = "Lightless", "Hits have (3-5)% reduced Critical Hit Chance against you", statOrder = { 2857 }, level = 1, group = "HybridAbyssModRadiusJewelReducedCriticalHitChanceAgainstYou", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "critical" }, nodeType = 2, tradeHashes = { [2135541924] = { "Notable Passive Skills in Radius also grant Hits have (3-5)% reduced Critical Hit Chance against you" }, } }, - ["AbyssModRadiusJewelPrefixManaFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Mana Flasks gain 0.1 charges per Second", statOrder = { 6893 }, level = 1, group = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [3939216292] = { "Notable Passive Skills in Radius also grant Mana Flasks gain 0.1 charges per Second" }, } }, - ["AbyssModRadiusJewelPrefixLifeFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Life Flasks gain 0.1 charges per Second", statOrder = { 6892 }, level = 1, group = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1148433552] = { "Notable Passive Skills in Radius also grant Life Flasks gain 0.1 charges per Second" }, } }, - ["AbyssModRadiusJewelPrefixCharmChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Charms gain 0.1 charges per Second", statOrder = { 6889 }, level = 1, group = "HybridAbyssModRadiusJewelCharmChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "charm", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1034611536] = { "Notable Passive Skills in Radius also grant Charms gain 0.1 charges per Second" }, } }, + ["AbyssModRadiusJewelPrefixManaFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Mana Flasks gain 0.1 charges per Second", statOrder = { 6889 }, level = 1, group = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [3939216292] = { "Notable Passive Skills in Radius also grant Mana Flasks gain 0.1 charges per Second" }, } }, + ["AbyssModRadiusJewelPrefixLifeFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Life Flasks gain 0.1 charges per Second", statOrder = { 6888 }, level = 1, group = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1148433552] = { "Notable Passive Skills in Radius also grant Life Flasks gain 0.1 charges per Second" }, } }, + ["AbyssModRadiusJewelPrefixCharmChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Charms gain 0.1 charges per Second", statOrder = { 6885 }, level = 1, group = "HybridAbyssModRadiusJewelCharmChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "charm", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1034611536] = { "Notable Passive Skills in Radius also grant Charms gain 0.1 charges per Second" }, } }, ["AbyssModJewelPrefixSpellDamageArmour"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Armour", statOrder = { 871, 882 }, level = 1, group = "HybridAbyssModJewelSpellDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster_damage", "defences", "unveiled_mod", "armour", "damage", "caster" }, tradeHashes = { [2974417149] = { "(4-8)% increased Spell Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, ["AbyssModJewelPrefixSpellDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Evasion Rating", statOrder = { 871, 884 }, level = 1, group = "HybridAbyssModJewelSpellDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster_damage", "defences", "unveiled_mod", "evasion", "damage", "caster" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [2974417149] = { "(4-8)% increased Spell Damage" }, } }, ["AbyssModJewelPrefixSpellDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased maximum Energy Shield", statOrder = { 871, 886 }, level = 1, group = "HybridAbyssModJewelSpellDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster_damage", "defences", "unveiled_mod", "energy_shield", "damage", "caster" }, tradeHashes = { [2974417149] = { "(4-8)% increased Spell Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, @@ -114,229 +114,229 @@ return { ["AbyssModJewelPrefixMinionDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "Minions deal (4-8)% increased Damage", statOrder = { 882, 1720 }, level = 1, group = "HybridAbyssModJewelMinionDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "armour", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, ["AbyssModJewelPrefixMinionDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "Minions deal (4-8)% increased Damage", statOrder = { 884, 1720 }, level = 1, group = "HybridAbyssModJewelMinionDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "evasion", "damage", "minion" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1589917703] = { "Minions deal (4-8)% increased Damage" }, } }, ["AbyssModJewelPrefixMinionDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "Minions deal (4-8)% increased Damage", statOrder = { 886, 1720 }, level = 1, group = "HybridAbyssModJewelMinionDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "energy_shield", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixThornsDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Thorns damage", statOrder = { 882, 10254 }, level = 1, group = "HybridAbyssModJewelThornsDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixThornsDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Thorns damage", statOrder = { 884, 10254 }, level = 1, group = "HybridAbyssModJewelThornsDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1315743832] = { "(4-8)% increased Thorns damage" }, } }, - ["AbyssModJewelPrefixThornsDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Thorns damage", statOrder = { 886, 10254 }, level = 1, group = "HybridAbyssModJewelThornsDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, + ["AbyssModJewelPrefixThornsDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Thorns damage", statOrder = { 882, 10245 }, level = 1, group = "HybridAbyssModJewelThornsDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, + ["AbyssModJewelPrefixThornsDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Thorns damage", statOrder = { 884, 10245 }, level = 1, group = "HybridAbyssModJewelThornsDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1315743832] = { "(4-8)% increased Thorns damage" }, } }, + ["AbyssModJewelPrefixThornsDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Thorns damage", statOrder = { 886, 10245 }, level = 1, group = "HybridAbyssModJewelThornsDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, ["AbyssModJewelPrefixTotemDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Totem Damage", statOrder = { 882, 1152 }, level = 1, group = "HybridAbyssModJewelTotemDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, ["AbyssModJewelPrefixTotemDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Totem Damage", statOrder = { 884, 1152 }, level = 1, group = "HybridAbyssModJewelTotemDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [3851254963] = { "(4-8)% increased Totem Damage" }, } }, ["AbyssModJewelPrefixTotemDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Totem Damage", statOrder = { 886, 1152 }, level = 1, group = "HybridAbyssModJewelTotemDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, ["AbyssModJewelPrefixFireDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Fire Damage", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 873, 2724 }, level = 1, group = "HybridAbyssModJewelFireDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(4-8)% increased Fire Damage" }, [2653955271] = { "Damage Penetrates (4-7)% Fire Resistance" }, } }, ["AbyssModJewelPrefixLightningDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Lightning Damage", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 875, 2726 }, level = 1, group = "HybridAbyssModJewelLightningDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (4-7)% Lightning Resistance" }, [2231156303] = { "(4-8)% increased Lightning Damage" }, } }, ["AbyssModJewelPrefixColdDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Cold Damage", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 874, 2725 }, level = 1, group = "HybridAbyssModJewelColdDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(4-8)% increased Cold Damage" }, [3417711605] = { "Damage Penetrates (4-7)% Cold Resistance" }, } }, - ["AbyssModJewelPrefixBleedChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to inflict Bleeding", "(5-10)% increased Magnitude of Bleeding you inflict", statOrder = { 4806, 4809 }, level = 1, group = "HybridAbyssModJewelBleedChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "damage", "physical", "ailment" }, tradeHashes = { [3166958180] = { "(5-10)% increased Magnitude of Bleeding you inflict" }, [242637938] = { "15% increased chance to inflict Bleeding" }, } }, - ["AbyssModJewelPrefixPoisonChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to Poison", "(5-10)% increased Magnitude of Poison you inflict", statOrder = { 9490, 9498 }, level = 1, group = "HybridAbyssModJewelPoisonChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "poison", "unveiled_mod", "damage", "ailment" }, tradeHashes = { [3481083201] = { "15% increased chance to Poison" }, [2487305362] = { "(5-10)% increased Magnitude of Poison you inflict" }, } }, - ["AbyssModJewelPrefixWarcryBuffEffectAndDamage"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Warcry Buff Effect", "(5-10)% increased Damage with Warcries", statOrder = { 10506, 10509 }, level = 1, group = "HybridAbyssModJewelWarcryBuffEffectAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1594812856] = { "(5-10)% increased Damage with Warcries" }, [3037553757] = { "(4-8)% increased Warcry Buff Effect" }, } }, - ["AbyssModJewelPrefixCompanionLifeAndDamage"] = { type = "Prefix", affix = "Lightless", "Companions deal (5-10)% increased Damage", "Companions have (5-10)% increased maximum Life", statOrder = { 5722, 5726 }, level = 1, group = "HybridAbyssModJewelCompanionLifeAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "minion_damage", "resource", "unveiled_mod", "life", "damage", "minion" }, tradeHashes = { [1805182458] = { "Companions have (5-10)% increased maximum Life" }, [234296660] = { "Companions deal (5-10)% increased Damage" }, } }, - ["AbyssModJewelPrefixGlobalPhysicalDamageArmourBreak"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Global Physical Damage", "Break (4-8)% increased Armour", statOrder = { 1185, 4407 }, level = 1, group = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "physical_damage", "unveiled_mod", "armour", "damage", "physical" }, tradeHashes = { [1776411443] = { "Break (4-8)% increased Armour" }, [1310194496] = { "(4-8)% increased Global Physical Damage" }, } }, - ["AbyssModJewelPrefixElementalDamageAilmentMagnitude"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Elemental Damage", "(4-8)% increased Magnitude of Ailments you inflict", statOrder = { 1726, 4259 }, level = 1, group = "HybridAbyssModJewelElementalDamageAilmentMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1303248024] = { "(4-8)% increased Magnitude of Ailments you inflict" }, [3141070085] = { "(4-8)% increased Elemental Damage" }, } }, - ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Chaos Damage", "(3-6)% increased Withered Magnitude", statOrder = { 876, 10556 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [736967255] = { "(4-8)% increased Chaos Damage" }, [3973629633] = { "(3-6)% increased Withered Magnitude" }, } }, + ["AbyssModJewelPrefixBleedChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to inflict Bleeding", "(5-10)% increased Magnitude of Bleeding you inflict", statOrder = { 4802, 4805 }, level = 1, group = "HybridAbyssModJewelBleedChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "damage", "physical", "ailment" }, tradeHashes = { [3166958180] = { "(5-10)% increased Magnitude of Bleeding you inflict" }, [242637938] = { "15% increased chance to inflict Bleeding" }, } }, + ["AbyssModJewelPrefixPoisonChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to Poison", "(5-10)% increased Magnitude of Poison you inflict", statOrder = { 9481, 9489 }, level = 1, group = "HybridAbyssModJewelPoisonChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "poison", "unveiled_mod", "damage", "ailment" }, tradeHashes = { [3481083201] = { "15% increased chance to Poison" }, [2487305362] = { "(5-10)% increased Magnitude of Poison you inflict" }, } }, + ["AbyssModJewelPrefixWarcryBuffEffectAndDamage"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Warcry Buff Effect", "(5-10)% increased Damage with Warcries", statOrder = { 10496, 10499 }, level = 1, group = "HybridAbyssModJewelWarcryBuffEffectAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1594812856] = { "(5-10)% increased Damage with Warcries" }, [3037553757] = { "(4-8)% increased Warcry Buff Effect" }, } }, + ["AbyssModJewelPrefixCompanionLifeAndDamage"] = { type = "Prefix", affix = "Lightless", "Companions deal (5-10)% increased Damage", "Companions have (5-10)% increased maximum Life", statOrder = { 5718, 5722 }, level = 1, group = "HybridAbyssModJewelCompanionLifeAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "minion_damage", "resource", "unveiled_mod", "life", "damage", "minion" }, tradeHashes = { [1805182458] = { "Companions have (5-10)% increased maximum Life" }, [234296660] = { "Companions deal (5-10)% increased Damage" }, } }, + ["AbyssModJewelPrefixGlobalPhysicalDamageArmourBreak"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Global Physical Damage", "Break (4-8)% increased Armour", statOrder = { 1185, 4404 }, level = 1, group = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "physical_damage", "unveiled_mod", "armour", "damage", "physical" }, tradeHashes = { [1776411443] = { "Break (4-8)% increased Armour" }, [1310194496] = { "(4-8)% increased Global Physical Damage" }, } }, + ["AbyssModJewelPrefixElementalDamageAilmentMagnitude"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Elemental Damage", "(4-8)% increased Magnitude of Ailments you inflict", statOrder = { 1726, 4256 }, level = 1, group = "HybridAbyssModJewelElementalDamageAilmentMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1303248024] = { "(4-8)% increased Magnitude of Ailments you inflict" }, [3141070085] = { "(4-8)% increased Elemental Damage" }, } }, + ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Chaos Damage", "(3-6)% increased Withered Magnitude", statOrder = { 876, 10546 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [736967255] = { "(4-8)% increased Chaos Damage" }, [3973629633] = { "(3-6)% increased Withered Magnitude" }, } }, ["AbyssModJewelPrefixMinionAreaAndLife"] = { type = "Prefix", affix = "Lightless", "Minions have (4-8)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "HybridAbyssModJewelMinionAreaAndLife", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (4-8)% increased maximum Life" }, } }, ["AbyssModJewelPrefixAuraSkillEffectPresenceAreaOfEffect"] = { type = "Prefix", affix = "Lightless", "(8-15)% increased Presence Area of Effect", "Aura Skills have (2-4)% increased Magnitudes", statOrder = { 1069, 2574 }, level = 1, group = "HybridAbyssModJewelAuraSkillEffectPresenceAreaOfEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "aura" }, tradeHashes = { [101878827] = { "(8-15)% increased Presence Area of Effect" }, [315791320] = { "Aura Skills have (2-4)% increased Magnitudes" }, } }, - ["AbyssModJewelPrefixElementalExposureEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Exposure Effect", statOrder = { 6533 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(4-8)% increased Exposure Effect" }, } }, - ["AbyssModJewelPrefixAbyssalWastingEffect"] = { type = "Prefix", affix = "Lightless", "(10-20)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4121 }, level = 1, group = "HybridAbyssModJewelAbyssalWastingEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [4043376133] = { "(10-20)% increased Magnitude of Abyssal Wasting you inflict" }, } }, + ["AbyssModJewelPrefixElementalExposureEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Exposure Effect", statOrder = { 6529 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(4-8)% increased Exposure Effect" }, } }, + ["AbyssModJewelPrefixAbyssalWastingEffect"] = { type = "Prefix", affix = "Lightless", "(10-20)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4118 }, level = 1, group = "HybridAbyssModJewelAbyssalWastingEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [4043376133] = { "(10-20)% increased Magnitude of Abyssal Wasting you inflict" }, } }, ["AbyssModJewelSuffixIncreasedStrength"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Strength", statOrder = { 999 }, level = 1, group = "HybridAbyssModJewelIncreasedStrength", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [734614379] = { "(1-2)% increased Strength" }, } }, ["AbyssModJewelSuffixIncreasedDexterity"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "HybridAbyssModJewelIncreasedDexterity", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [4139681126] = { "(1-2)% increased Dexterity" }, } }, ["AbyssModJewelSuffixIncreasedIntelligence"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "HybridAbyssModJewelIncreasedIntelligence", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [656461285] = { "(1-2)% increased Intelligence" }, } }, - ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(13-17)% to Lightning and Chaos Resistances", statOrder = { 7537 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "unveiled_mod", "ulaman_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(13-17)% to Lightning and Chaos Resistances" }, } }, + ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(13-17)% to Lightning and Chaos Resistances", statOrder = { 7533 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "unveiled_mod", "ulaman_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(13-17)% to Lightning and Chaos Resistances" }, } }, ["AbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "+(9-15) to Strength and Dexterity", statOrder = { 995 }, level = 65, group = "StrengthAndDexterity", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "attribute" }, tradeHashes = { [538848803] = { "+(9-15) to Strength and Dexterity" }, } }, - ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(13-17)% to Fire and Chaos Resistances", statOrder = { 6553 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "unveiled_mod", "amanamu_mod", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(13-17)% to Fire and Chaos Resistances" }, } }, + ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(13-17)% to Fire and Chaos Resistances", statOrder = { 6549 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "unveiled_mod", "amanamu_mod", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(13-17)% to Fire and Chaos Resistances" }, } }, ["AbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "+(9-15) to Strength and Intelligence", statOrder = { 996 }, level = 65, group = "StrengthAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attribute" }, tradeHashes = { [1535626285] = { "+(9-15) to Strength and Intelligence" }, } }, - ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(13-17)% to Cold and Chaos Resistances", statOrder = { 5674 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "unveiled_mod", "kurgal_mod", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(13-17)% to Cold and Chaos Resistances" }, } }, + ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(13-17)% to Cold and Chaos Resistances", statOrder = { 5670 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "unveiled_mod", "kurgal_mod", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(13-17)% to Cold and Chaos Resistances" }, } }, ["AbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "+(9-15) to Dexterity and Intelligence", statOrder = { 997 }, level = 65, group = "DexterityAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attribute" }, tradeHashes = { [2300185227] = { "+(9-15) to Dexterity and Intelligence" }, } }, - ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 65, group = "ManaCostEfficiency", weightKey = { "helmet", "gloves", "focus", "quiver", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [4101445926] = { "(6-10)% increased Mana Cost Efficiency" }, } }, - ["AbyssModHelmUlamanSuffixMarkedEnemyTakeIncreasedDamage"] = { type = "Suffix", affix = "of Ulaman", "Enemies you Mark take (4-8)% increased Damage", statOrder = { 8828 }, level = 65, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2083058281] = { "Enemies you Mark take (4-8)% increased Damage" }, } }, + ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Mana Cost Efficiency", statOrder = { 4714 }, level = 65, group = "ManaCostEfficiency", weightKey = { "helmet", "gloves", "focus", "quiver", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [4101445926] = { "(6-10)% increased Mana Cost Efficiency" }, } }, + ["AbyssModHelmUlamanSuffixMarkedEnemyTakeIncreasedDamage"] = { type = "Suffix", affix = "of Ulaman", "Enemies you Mark take (4-8)% increased Damage", statOrder = { 8819 }, level = 65, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2083058281] = { "Enemies you Mark take (4-8)% increased Damage" }, } }, ["AbyssModHelmUlamanSuffixCriticalHitDamage"] = { type = "Suffix", affix = "of Ulaman", "(13-20)% increased Critical Damage Bonus", statOrder = { 980 }, level = 65, group = "CriticalStrikeMultiplier", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "(13-20)% increased Critical Damage Bonus" }, } }, - ["AbyssModHelmUlamanSuffixLifeCostEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Life Cost Efficiency", statOrder = { 4708 }, level = 65, group = "LifeCostEfficiency", weightKey = { "helmet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [310945763] = { "(8-12)% increased Life Cost Efficiency" }, } }, - ["AbyssModHelmAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(4-8)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(4-8)% increased Spirit Reservation Efficiency" }, } }, - ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Glory generation", statOrder = { 6914 }, level = 65, group = "GloryGeneration", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3143918757] = { "(10-20)% increased Glory generation" }, } }, + ["AbyssModHelmUlamanSuffixLifeCostEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Life Cost Efficiency", statOrder = { 4704 }, level = 65, group = "LifeCostEfficiency", weightKey = { "helmet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [310945763] = { "(8-12)% increased Life Cost Efficiency" }, } }, + ["AbyssModHelmAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(4-8)% increased Spirit Reservation Efficiency", statOrder = { 4751 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(4-8)% increased Spirit Reservation Efficiency" }, } }, + ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Glory generation", statOrder = { 6910 }, level = 65, group = "GloryGeneration", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3143918757] = { "(10-20)% increased Glory generation" }, } }, ["AbyssModHelmAmanamuSuffixPresenceAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Presence Area of Effect", statOrder = { 1069 }, level = 65, group = "PresenceRadius", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "aura" }, tradeHashes = { [101878827] = { "(25-35)% increased Presence Area of Effect" }, } }, ["AbyssModHelmKurgalSuffixArcaneSurgeEffect"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 65, group = "ArcaneSurgeEffect", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "helmet", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana", "caster" }, tradeHashes = { [2103650854] = { "(20-30)% increased effect of Arcane Surge on you" }, } }, - ["AbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 65, group = "AilmentEffect", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "ailment" }, tradeHashes = { [1303248024] = { "(10-20)% increased Magnitude of Ailments you inflict" }, } }, - ["AbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to Poison", statOrder = { 9490 }, level = 65, group = "PoisonChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3481083201] = { "(20-30)% increased chance to Poison" }, } }, - ["AbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to inflict Bleeding", statOrder = { 4806 }, level = 65, group = "BleedChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [242637938] = { "(20-30)% increased chance to inflict Bleeding" }, } }, - ["AbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5553 }, level = 65, group = "IncisionChance", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, - ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", statOrder = { 9914 }, level = 65, group = "SkillSpeedIfConsumedFrenzyChargeRecently", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3313255158] = { "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently" }, } }, + ["AbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Magnitude of Ailments you inflict", statOrder = { 4256 }, level = 65, group = "AilmentEffect", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "ailment" }, tradeHashes = { [1303248024] = { "(10-20)% increased Magnitude of Ailments you inflict" }, } }, + ["AbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to Poison", statOrder = { 9481 }, level = 65, group = "PoisonChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3481083201] = { "(20-30)% increased chance to Poison" }, } }, + ["AbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to inflict Bleeding", statOrder = { 4802 }, level = 65, group = "BleedChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [242637938] = { "(20-30)% increased chance to inflict Bleeding" }, } }, + ["AbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5549 }, level = 65, group = "IncisionChance", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, + ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", statOrder = { 9905 }, level = 65, group = "SkillSpeedIfConsumedFrenzyChargeRecently", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3313255158] = { "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently" }, } }, ["AbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 65, group = "CurseAreaOfEffect", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [153777645] = { "(12-20)% increased Area of Effect of Curses" }, } }, - ["AbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% chance to Daze on Hit", statOrder = { 4669 }, level = 65, group = "DazeBuildup", weightKey = { "gloves", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3146310524] = { "(10-20)% chance to Daze on Hit" }, } }, - ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "(8-15)% of Leech is Instant", statOrder = { 7425 }, level = 65, group = "PercentOfLeechIsInstant", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, - ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Immobilisation buildup", statOrder = { 7193 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [330530785] = { "(10-20)% increased Immobilisation buildup" }, } }, - ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", statOrder = { 6747 }, level = 65, group = "GainArcaneSurgeOnCrit", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [446027070] = { "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit" }, } }, + ["AbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% chance to Daze on Hit", statOrder = { 4666 }, level = 65, group = "DazeBuildup", weightKey = { "gloves", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3146310524] = { "(10-20)% chance to Daze on Hit" }, } }, + ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "(8-15)% of Leech is Instant", statOrder = { 7421 }, level = 65, group = "PercentOfLeechIsInstant", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, + ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Immobilisation buildup", statOrder = { 7189 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [330530785] = { "(10-20)% increased Immobilisation buildup" }, } }, + ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", statOrder = { 6743 }, level = 65, group = "GainArcaneSurgeOnCrit", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [446027070] = { "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit" }, } }, ["AbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cast Speed when on Full Life", statOrder = { 1742 }, level = 65, group = "CastSpeedOnFullLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "caster_speed", "unveiled_mod", "kurgal_mod", "caster", "speed" }, tradeHashes = { [656291658] = { "(8-15)% increased Cast Speed when on Full Life" }, } }, ["AbyssModBootsAndBeltUlamanSuffixReducedPoisonDurationSelf"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% reduced Poison Duration on you", statOrder = { 1067 }, level = 65, group = "ReducedPoisonDuration", weightKey = { "boots", "belt", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "poison", "unveiled_mod", "ulaman_mod", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(20-30)% reduced Poison Duration on you" }, } }, ["AbyssModBootsAndBeltAmanamuSuffixReducedIgniteDuration"] = { type = "Suffix", affix = "of Amanamu", "(20-30)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 65, group = "ReducedIgniteDurationOnSelf", weightKey = { "boots", "belt", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(20-30)% reduced Ignite Duration on you" }, } }, - ["AbyssModBootsAndBeltKurgalSuffixReducedBleedDurationSelf"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% reduced Duration of Bleeding on You", statOrder = { 9804 }, level = 65, group = "ReducedBleedDuration", weightKey = { "boots", "belt", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "kurgal_mod", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(20-30)% reduced Duration of Bleeding on You" }, } }, - ["AbyssModBootsUlamanSuffixCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Ulaman", "Corrupted Blood cannot be inflicted on you", statOrder = { 5272 }, level = 65, group = "CorruptedBloodImmunity", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["AbyssModBootsUlamanSuffixReducedMovementPenaltyWhileSkilling"] = { type = "Suffix", affix = "of Ulaman", "(6-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9154 }, level = 65, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [2590797182] = { "(6-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["AbyssModBootsAmanamuSuffixReducedPotencyOfSlows"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4747 }, level = 65, group = "SlowPotency", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [924253255] = { "(12-20)% reduced Slowing Potency of Debuffs on You" }, } }, - ["AbyssModBootsAmanamuSuffixDodgeRollDistance"] = { type = "Suffix", affix = "of Amanamu", "+(0.1-0.2) metres to Dodge Roll distance", statOrder = { 6200 }, level = 65, group = "DodgeRollDistance", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [258119672] = { "+(0.1-0.2) metres to Dodge Roll distance" }, } }, - ["AbyssModBootsKurgalSuffixManaCostEfficiencyDodgeRolledRecently"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", statOrder = { 7969 }, level = 65, group = "ManaCostEfficiencyIfDodgeRolledRecently", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3396435291] = { "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently" }, } }, + ["AbyssModBootsAndBeltKurgalSuffixReducedBleedDurationSelf"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% reduced Duration of Bleeding on You", statOrder = { 9795 }, level = 65, group = "ReducedBleedDuration", weightKey = { "boots", "belt", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "kurgal_mod", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(20-30)% reduced Duration of Bleeding on You" }, } }, + ["AbyssModBootsUlamanSuffixCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Ulaman", "Corrupted Blood cannot be inflicted on you", statOrder = { 5268 }, level = 65, group = "CorruptedBloodImmunity", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["AbyssModBootsUlamanSuffixReducedMovementPenaltyWhileSkilling"] = { type = "Suffix", affix = "of Ulaman", "(6-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9145 }, level = 65, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [2590797182] = { "(6-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["AbyssModBootsAmanamuSuffixReducedPotencyOfSlows"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4743 }, level = 65, group = "SlowPotency", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [924253255] = { "(12-20)% reduced Slowing Potency of Debuffs on You" }, } }, + ["AbyssModBootsAmanamuSuffixDodgeRollDistance"] = { type = "Suffix", affix = "of Amanamu", "+(0.1-0.2) metres to Dodge Roll distance", statOrder = { 6196 }, level = 65, group = "DodgeRollDistance", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [258119672] = { "+(0.1-0.2) metres to Dodge Roll distance" }, } }, + ["AbyssModBootsKurgalSuffixManaCostEfficiencyDodgeRolledRecently"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", statOrder = { 7965 }, level = 65, group = "ManaCostEfficiencyIfDodgeRolledRecently", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3396435291] = { "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently" }, } }, ["AbyssModBootsKurgalSuffixManaRegenerationStationary"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Mana Regeneration Rate while stationary", statOrder = { 3986 }, level = 65, group = "ManaRegenerationWhileStationary", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3308030688] = { "(40-50)% increased Mana Regeneration Rate while stationary" }, } }, - ["AbyssModBeltUlamanPrefixLifeFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Ulaman's", "Life Flasks gain (0.1-0.2) charges per Second", statOrder = { 6892 }, level = 65, group = "LifeFlaskChargeGeneration", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.1-0.2) charges per Second" }, } }, + ["AbyssModBeltUlamanPrefixLifeFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Ulaman's", "Life Flasks gain (0.1-0.2) charges per Second", statOrder = { 6888 }, level = 65, group = "LifeFlaskChargeGeneration", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.1-0.2) charges per Second" }, } }, ["AbyssModBeltUlamanPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Ulaman's", "(10-18)% chance for Flasks you use to not consume Charges", statOrder = { 3881 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [311641062] = { "(10-18)% chance for Flasks you use to not consume Charges" }, } }, - ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", statOrder = { 7506 }, level = 65, group = "LifeRegenerationRateDuringFlaskEffect", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "life_flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1261076060] = { "(20-30)% increased Life Regeneration rate during Effect of any Life Flask" }, } }, - ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", statOrder = { 9936 }, level = 65, group = "SlowEffectIfCharmedRecently", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3839676903] = { "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently" }, } }, - ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { type = "Prefix", affix = "Amanamu's", "Charms gain (0.1-0.2) charges per Second", statOrder = { 6889 }, level = 65, group = "CharmChargeGeneration", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 10256 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHashes = { [287294012] = { "2 to 4 Fire Thorns damage per 100 maximum Life" }, } }, - ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { type = "Prefix", affix = "Amanamu's", "(10-18)% chance for Charms you use to not consume Charges", statOrder = { 5634 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [501873429] = { "(10-18)% chance for Charms you use to not consume Charges" }, } }, - ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { type = "Suffix", affix = "of Amanamu", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4758 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, - ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Kurgal's", "Mana Flasks gain (0.1-0.2) charges per Second", statOrder = { 6893 }, level = 65, group = "ManaFlaskChargeGeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltKurgalPrefixGainArmourPercentOfMana"] = { type = "Prefix", affix = "Kurgal's", "Gain (6-12)% of Maximum Mana as Armour", statOrder = { 7968 }, level = 65, group = "GainPercentManaAsArmour", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "resource", "unveiled_mod", "kurgal_mod", "mana", "armour" }, tradeHashes = { [514290151] = { "Gain (6-12)% of Maximum Mana as Armour" }, } }, + ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", statOrder = { 7502 }, level = 65, group = "LifeRegenerationRateDuringFlaskEffect", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "life_flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1261076060] = { "(20-30)% increased Life Regeneration rate during Effect of any Life Flask" }, } }, + ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", statOrder = { 9927 }, level = 65, group = "SlowEffectIfCharmedRecently", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3839676903] = { "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently" }, } }, + ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { type = "Prefix", affix = "Amanamu's", "Charms gain (0.1-0.2) charges per Second", statOrder = { 6885 }, level = 65, group = "CharmChargeGeneration", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.1-0.2) charges per Second" }, } }, + ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 10247 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHashes = { [287294012] = { "2 to 4 Fire Thorns damage per 100 maximum Life" }, } }, + ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { type = "Prefix", affix = "Amanamu's", "(10-18)% chance for Charms you use to not consume Charges", statOrder = { 5630 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [501873429] = { "(10-18)% chance for Charms you use to not consume Charges" }, } }, + ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { type = "Suffix", affix = "of Amanamu", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4754 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, + ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Kurgal's", "Mana Flasks gain (0.1-0.2) charges per Second", statOrder = { 6889 }, level = 65, group = "ManaFlaskChargeGeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.2) charges per Second" }, } }, + ["AbyssModBeltKurgalPrefixGainArmourPercentOfMana"] = { type = "Prefix", affix = "Kurgal's", "Gain (6-12)% of Maximum Mana as Armour", statOrder = { 7964 }, level = 65, group = "GainPercentManaAsArmour", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "resource", "unveiled_mod", "kurgal_mod", "mana", "armour" }, tradeHashes = { [514290151] = { "Gain (6-12)% of Maximum Mana as Armour" }, } }, ["AbyssModBeltKurgalPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Kurgal's", "(10-15)% chance for Flasks you use to not consume Charges", statOrder = { 3881 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "kurgal_mod" }, tradeHashes = { [311641062] = { "(10-15)% chance for Flasks you use to not consume Charges" }, } }, ["AbyssModBeltKurgalSuffixManaRegenerationRate"] = { type = "Suffix", affix = "of Kurgal", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 65, group = "ManaRegeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, ["AbyssModBodyShieldUlamanSuffixHitsAgainstYouReducedCriticalDamage"] = { type = "Suffix", affix = "of Ulaman", "Hits have (17-25)% reduced Critical Hit Chance against you", statOrder = { 2857 }, level = 65, group = "ChanceToTakeCriticalStrikeUpdated", weightKey = { "body_armour", "shield", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "critical" }, tradeHashes = { [4270096386] = { "Hits have (17-25)% reduced Critical Hit Chance against you" }, } }, ["AbyssModBodyShieldAmanamuSuffixLifeRecoup"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 65, group = "DamageTakenGainedAsLife", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, ["AbyssModBodyShieldAmanamuSuffixReducedCursedEffectSelf"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% reduced effect of Curses on you", statOrder = { 1911 }, level = 65, group = "ReducedCurseEffect", weightKey = { "body_armour", "shield", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-35)% reduced effect of Curses on you" }, } }, ["AbyssModBodyShieldKurgalSuffixManaRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 65, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "shield", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["AbyssModBodyShieldKurgalSuffixElementalEnergyShieldRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Elemental Damage taken Recouped as Energy Shield", statOrder = { 9658 }, level = 65, group = "ElementalDamageTakenGoesToEnergyShield", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2896115339] = { "(10-20)% of Elemental Damage taken Recouped as Energy Shield" }, } }, - ["AbyssModBodyShieldKurgalSuffixArmourAppliesToChaosDamage"] = { type = "Suffix", affix = "of Kurgal", "+(23-31)% of Armour also applies to Chaos Damage", statOrder = { 4645 }, level = 65, group = "ArmourPercentAppliesToChaosDamage", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3972229254] = { "+(23-31)% of Armour also applies to Chaos Damage" }, } }, - ["AbyssModBodyArmourUlamanSuffixDeflectDamagePrevented"] = { type = "Suffix", affix = "of Ulaman", "Prevent +(3-5)% of Damage from Deflected Hits", statOrder = { 4679 }, level = 65, group = "DeflectDamageTaken", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3552135623] = { "Prevent +(3-5)% of Damage from Deflected Hits" }, } }, - ["AbyssModBodyArmourUlamanSuffixCompanionReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(12-18)% increased Reservation Efficiency of Companion Skills", statOrder = { 9764 }, level = 65, group = "CompanionReservationEfficiency", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3413635271] = { "(12-18)% increased Reservation Efficiency of Companion Skills" }, } }, - ["AbyssModBodyArmourAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(6-12)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "body_armour", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(6-12)% increased Spirit Reservation Efficiency" }, } }, + ["AbyssModBodyShieldKurgalSuffixElementalEnergyShieldRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Elemental Damage taken Recouped as Energy Shield", statOrder = { 9649 }, level = 65, group = "ElementalDamageTakenGoesToEnergyShield", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2896115339] = { "(10-20)% of Elemental Damage taken Recouped as Energy Shield" }, } }, + ["AbyssModBodyShieldKurgalSuffixArmourAppliesToChaosDamage"] = { type = "Suffix", affix = "of Kurgal", "+(23-31)% of Armour also applies to Chaos Damage", statOrder = { 4642 }, level = 65, group = "ArmourPercentAppliesToChaosDamage", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3972229254] = { "+(23-31)% of Armour also applies to Chaos Damage" }, } }, + ["AbyssModBodyArmourUlamanSuffixDeflectDamagePrevented"] = { type = "Suffix", affix = "of Ulaman", "Prevent +(3-5)% of Damage from Deflected Hits", statOrder = { 4675 }, level = 65, group = "DeflectDamageTaken", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3552135623] = { "Prevent +(3-5)% of Damage from Deflected Hits" }, } }, + ["AbyssModBodyArmourUlamanSuffixCompanionReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(12-18)% increased Reservation Efficiency of Companion Skills", statOrder = { 9755 }, level = 65, group = "CompanionReservationEfficiency", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3413635271] = { "(12-18)% increased Reservation Efficiency of Companion Skills" }, } }, + ["AbyssModBodyArmourAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(6-12)% increased Spirit Reservation Efficiency", statOrder = { 4751 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "body_armour", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(6-12)% increased Spirit Reservation Efficiency" }, } }, ["AbyssModBodyArmourKurgalSuffixDamageTakenFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "body_armour", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, ["AbyssModShieldUlamanSuffixMaximumBlockChance"] = { type = "Suffix", affix = "of Ulaman", "+(1-2)% to maximum Block chance", statOrder = { 1734 }, level = 65, group = "MaximumBlockChance", weightKey = { "shield", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [480796730] = { "+(1-2)% to maximum Block chance" }, } }, - ["AbyssModShieldUlamanSuffixParryDebuffMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased Parried Debuff Magnitude", statOrder = { 9379 }, level = 65, group = "ParryDebuffMagnitude", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [818877178] = { "(20-30)% increased Parried Debuff Magnitude" }, } }, - ["AbyssModShieldUlamanSuffixParryDebuffDuration"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% increased Parried Debuff Duration", statOrder = { 9392 }, level = 65, group = "ParryDuration", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3401186585] = { "(25-35)% increased Parried Debuff Duration" }, } }, - ["AbyssModShieldUlamanSuffixLightningTakenAsPhysAndGlancingWhileActiveBlocking"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", "You take (8-15)% of damage from Blocked Hits with a raised Shield", statOrder = { 2205, 4943 }, level = 65, group = "PhysicalTakenAsLightningAndGlancingWhilActiveBlocking", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod", "physical", "elemental", "lightning" }, tradeHashes = { [321970274] = { "(30-40)% of Physical Damage taken as Lightning while your Shield is raised" }, [3694078435] = { "You take (8-15)% of damage from Blocked Hits with a raised Shield" }, } }, - ["AbyssModShieldAmanamuSuffixShieldSkillsFullyBreakArmourOnHeavyStun"] = { type = "Suffix", affix = "of Amanamu", "Shield Skills fully Break Armour when they Heavy Stun targets", statOrder = { 6699 }, level = 65, group = "StunningHitsWithShieldSkillsFullyBreakArmour", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1689748350] = { "Shield Skills fully Break Armour when they Heavy Stun targets" }, } }, - ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6987 }, level = 65, group = "HeavyStunDecayRate", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [886088880] = { "Your Heavy Stun buildup empties (30-40)% faster" }, } }, + ["AbyssModShieldUlamanSuffixParryDebuffMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased Parried Debuff Magnitude", statOrder = { 9370 }, level = 65, group = "ParryDebuffMagnitude", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [818877178] = { "(20-30)% increased Parried Debuff Magnitude" }, } }, + ["AbyssModShieldUlamanSuffixParryDebuffDuration"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% increased Parried Debuff Duration", statOrder = { 9383 }, level = 65, group = "ParryDuration", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3401186585] = { "(25-35)% increased Parried Debuff Duration" }, } }, + ["AbyssModShieldUlamanSuffixLightningTakenAsPhysAndGlancingWhileActiveBlocking"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", "You take (8-15)% of damage from Blocked Hits with a raised Shield", statOrder = { 2205, 4939 }, level = 65, group = "PhysicalTakenAsLightningAndGlancingWhilActiveBlocking", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod", "physical", "elemental", "lightning" }, tradeHashes = { [321970274] = { "(30-40)% of Physical Damage taken as Lightning while your Shield is raised" }, [3694078435] = { "You take (8-15)% of damage from Blocked Hits with a raised Shield" }, } }, + ["AbyssModShieldAmanamuSuffixShieldSkillsFullyBreakArmourOnHeavyStun"] = { type = "Suffix", affix = "of Amanamu", "Shield Skills fully Break Armour when they Heavy Stun targets", statOrder = { 6695 }, level = 65, group = "StunningHitsWithShieldSkillsFullyBreakArmour", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1689748350] = { "Shield Skills fully Break Armour when they Heavy Stun targets" }, } }, + ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6983 }, level = 65, group = "HeavyStunDecayRate", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [886088880] = { "Your Heavy Stun buildup empties (30-40)% faster" }, } }, ["AbyssModShieldAmanamuSuffixAllMaximumResistances"] = { type = "Suffix", affix = "of Amanamu", "+1% to all maximum Resistances", statOrder = { 1493 }, level = 65, group = "MaximumResistances", weightKey = { "shield", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, ["AbyssModShieldKurgalSuffixFlatManaGainedOnBlock"] = { type = "Suffix", affix = "of Kurgal", "(6-12) Mana gained when you Block", statOrder = { 1520 }, level = 65, group = "GainManaOnBlock", weightKey = { "shield", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2122183138] = { "(6-12) Mana gained when you Block" }, } }, - ["AbyssModShieldKurgalSuffixEnergyShieldRechargeRateBlockedRecently"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", statOrder = { 6445 }, level = 65, group = "EnergyShieldRechargeBlockedRecently", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "block", "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1079292660] = { "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently" }, } }, - ["AbyssModFocusUlamanPrefixMaximumSpellTotems"] = { type = "Prefix", affix = "Ulaman's", "Spell Skills have +1 to maximum number of Summoned Totems", statOrder = { 10032 }, level = 65, group = "AdditionalSpellTotem", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2474424958] = { "Spell Skills have +1 to maximum number of Summoned Totems" }, } }, - ["AbyssModFocusUlamanPrefixSpellDamageWhileWieldingMeleeWeapon"] = { type = "Prefix", affix = "Ulaman's", "(61-79)% increased Spell Damage while wielding a Melee Weapon", statOrder = { 10010 }, level = 65, group = "SpellDamageIfWieldingMeleeWeapon", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [4136346606] = { "(61-79)% increased Spell Damage while wielding a Melee Weapon" }, } }, - ["AbyssModFocusUlamanSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10038 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(10-20)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModFocusUlamanSuffixChanceForTwoAdditionalSpellProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10034 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(10-16)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["AbyssModShieldKurgalSuffixEnergyShieldRechargeRateBlockedRecently"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", statOrder = { 6441 }, level = 65, group = "EnergyShieldRechargeBlockedRecently", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "block", "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1079292660] = { "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently" }, } }, + ["AbyssModFocusUlamanPrefixMaximumSpellTotems"] = { type = "Prefix", affix = "Ulaman's", "Spell Skills have +1 to maximum number of Summoned Totems", statOrder = { 10023 }, level = 65, group = "AdditionalSpellTotem", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2474424958] = { "Spell Skills have +1 to maximum number of Summoned Totems" }, } }, + ["AbyssModFocusUlamanPrefixSpellDamageWhileWieldingMeleeWeapon"] = { type = "Prefix", affix = "Ulaman's", "(61-79)% increased Spell Damage while wielding a Melee Weapon", statOrder = { 10001 }, level = 65, group = "SpellDamageIfWieldingMeleeWeapon", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [4136346606] = { "(61-79)% increased Spell Damage while wielding a Melee Weapon" }, } }, + ["AbyssModFocusUlamanSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10029 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(10-20)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["AbyssModFocusUlamanSuffixChanceForTwoAdditionalSpellProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10025 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(10-16)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, ["AbyssModFocusAmanamuPrefixCurseMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(8-16)% increased Curse Magnitudes", statOrder = { 2376 }, level = 65, group = "CurseEffectiveness", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-16)% increased Curse Magnitudes" }, } }, ["AbyssModFocusAmanamuPrefixOfferingBuffEffect"] = { type = "Prefix", affix = "Amanamu's", "Offering Skills have (12-20)% increased Buff effect", statOrder = { 3719 }, level = 65, group = "OfferingEffect", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3191479793] = { "Offering Skills have (12-20)% increased Buff effect" }, } }, ["AbyssModFocusAmanamuSuffixGlobalMinionSkillLevels"] = { type = "Suffix", affix = "of Amanamu", "+(1-2) to Level of all Minion Skills", statOrder = { 972 }, level = 65, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, - ["AbyssModFocusAmanamuSuffixFasterCurseActivation"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% faster Curse Activation", statOrder = { 5924 }, level = 65, group = "CurseDelay", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, - ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (61-79)% increased Damage", statOrder = { 7389 }, level = 65, group = "InvocationSpellDamage", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (61-79)% increased Damage" }, } }, - ["AbyssModFocusKurgalPrefixSpellAreaOfEffect"] = { type = "Prefix", affix = "Kurgal's", "Spell Skills have (10-20)% increased Area of Effect", statOrder = { 9991 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-20)% increased Area of Effect" }, } }, - ["AbyssModFocusKurgalSuffixChanceForAdditionalInfusion"] = { type = "Suffix", affix = "of Kurgal", "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type", statOrder = { 4193, 4193.1 }, level = 65, group = "ChanceToGainAdditionalInfusion", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3927679277] = { "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type" }, } }, - ["AbyssModQuiverUlamanPrefixIncreasesToProjectileSpeedApplyToDamage"] = { type = "Prefix", affix = "Ulaman's", "Increases and Reductions to Projectile Speed also apply to Damage with Bows", statOrder = { 4438 }, level = 65, group = "IncreasesToProjectileDamageApplyToBowDamage", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [414821772] = { "Increases and Reductions to Projectile Speed also apply to Damage with Bows" }, } }, - ["AbyssModQuiverUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", statOrder = { 9541 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving" }, } }, - ["AbyssModQuiverUlamanSuffixAttackCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-14)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 65, group = "LifeCost", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(10-14)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["AbyssModQuiverAmanamuPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Amanamu's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", statOrder = { 9549 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m" }, } }, - ["AbyssModQuiverAmanamuSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Amanamu", "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5817 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m" }, } }, - ["AbyssModQuiverKurgalPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9548 }, level = 65, group = "ProjectileDamageFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m" }, } }, - ["AbyssModQuiverKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5831 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m" }, } }, - ["AbyssModRingAmuletUlamanPrefixAttackDamageWhileLowLife"] = { type = "Prefix", affix = "Ulaman's", "(15-25)% increased Attack Damage while on Low Life", statOrder = { 4530 }, level = 65, group = "AttackDamageOnLowLife", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [4246007234] = { "(15-25)% increased Attack Damage while on Low Life" }, } }, + ["AbyssModFocusAmanamuSuffixFasterCurseActivation"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% faster Curse Activation", statOrder = { 5920 }, level = 65, group = "CurseDelay", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, + ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (61-79)% increased Damage", statOrder = { 7385 }, level = 65, group = "InvocationSpellDamage", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (61-79)% increased Damage" }, } }, + ["AbyssModFocusKurgalPrefixSpellAreaOfEffect"] = { type = "Prefix", affix = "Kurgal's", "Spell Skills have (10-20)% increased Area of Effect", statOrder = { 9982 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-20)% increased Area of Effect" }, } }, + ["AbyssModFocusKurgalSuffixChanceForAdditionalInfusion"] = { type = "Suffix", affix = "of Kurgal", "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type", statOrder = { 4190, 4190.1 }, level = 65, group = "ChanceToGainAdditionalInfusion", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3927679277] = { "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type" }, } }, + ["AbyssModQuiverUlamanPrefixIncreasesToProjectileSpeedApplyToDamage"] = { type = "Prefix", affix = "Ulaman's", "Increases and Reductions to Projectile Speed also apply to Damage with Bows", statOrder = { 4435 }, level = 65, group = "IncreasesToProjectileDamageApplyToBowDamage", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [414821772] = { "Increases and Reductions to Projectile Speed also apply to Damage with Bows" }, } }, + ["AbyssModQuiverUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", statOrder = { 9532 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving" }, } }, + ["AbyssModQuiverUlamanSuffixAttackCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-14)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4740 }, level = 65, group = "LifeCost", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(10-14)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["AbyssModQuiverAmanamuPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Amanamu's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", statOrder = { 9540 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m" }, } }, + ["AbyssModQuiverAmanamuSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Amanamu", "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5813 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m" }, } }, + ["AbyssModQuiverKurgalPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9539 }, level = 65, group = "ProjectileDamageFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m" }, } }, + ["AbyssModQuiverKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5827 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m" }, } }, + ["AbyssModRingAmuletUlamanPrefixAttackDamageWhileLowLife"] = { type = "Prefix", affix = "Ulaman's", "(15-25)% increased Attack Damage while on Low Life", statOrder = { 4527 }, level = 65, group = "AttackDamageOnLowLife", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [4246007234] = { "(15-25)% increased Attack Damage while on Low Life" }, } }, ["AbyssModRingAmuletUlamanSuffixSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(3-6)% increased Skill Speed", statOrder = { 837 }, level = 65, group = "IncreasedSkillSpeed", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [970213192] = { "(3-6)% increased Skill Speed" }, } }, ["AbyssModRingAmuletUlamanSuffixRecoverPercentMaxLifeOnKill"] = { type = "Suffix", affix = "of Ulaman", "Recover (2-3)% of maximum Life on Kill", statOrder = { 1511 }, level = 65, group = "RecoverPercentMaxLifeOnKill", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (2-3)% of maximum Life on Kill" }, } }, - ["AbyssModRingAmuletAmanamuPrefixRemnantEffect"] = { type = "Prefix", affix = "Amanamu's", "Remnants you create have (8-15)% increased effect", statOrder = { 9736 }, level = 65, group = "RemnantEffect", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1999910726] = { "Remnants you create have (8-15)% increased effect" }, } }, - ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (15-25)% increased Damage if you've Hit Recently", statOrder = { 9039 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (15-25)% increased Damage if you've Hit Recently" }, } }, + ["AbyssModRingAmuletAmanamuPrefixRemnantEffect"] = { type = "Prefix", affix = "Amanamu's", "Remnants you create have (8-15)% increased effect", statOrder = { 9727 }, level = 65, group = "RemnantEffect", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1999910726] = { "Remnants you create have (8-15)% increased effect" }, } }, + ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (15-25)% increased Damage if you've Hit Recently", statOrder = { 9030 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (15-25)% increased Damage if you've Hit Recently" }, } }, ["AbyssModRingAmuletAmanamuSuffixSkillEffectDuration"] = { type = "Suffix", affix = "of Amanamu", "(8-12)% increased Skill Effect Duration", statOrder = { 1645 }, level = 65, group = "SkillEffectDuration", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3377888098] = { "(8-12)% increased Skill Effect Duration" }, } }, - ["AbyssModRingAmuletAmanamuSuffixRemnantCollectionRange"] = { type = "Suffix", affix = "of Amanamu", "Remnants can be collected from (20-30)% further away", statOrder = { 9738 }, level = 65, group = "RemnantPickupRadiusIncrease", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-30)% further away" }, } }, + ["AbyssModRingAmuletAmanamuSuffixRemnantCollectionRange"] = { type = "Suffix", affix = "of Amanamu", "Remnants can be collected from (20-30)% further away", statOrder = { 9729 }, level = 65, group = "RemnantPickupRadiusIncrease", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-30)% further away" }, } }, ["AbyssModRingAmuletKurgalPrefixSpellDamageWhileEnergyShieldFull"] = { type = "Prefix", affix = "Kurgal's", "(15-25)% increased Spell Damage while on Full Energy Shield", statOrder = { 2810 }, level = 65, group = "IncreasedSpellDamageOnFullEnergyShield", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "caster_damage", "unveiled_mod", "kurgal_mod", "damage", "caster" }, tradeHashes = { [3176481473] = { "(15-25)% increased Spell Damage while on Full Energy Shield" }, } }, - ["AbyssModRingAmuletKurgalSuffixExposureEffect"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% increased Exposure Effect", statOrder = { 6533 }, level = 65, group = "ElementalExposureEffect", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(10-15)% increased Exposure Effect" }, } }, - ["AbyssModRingAmuletKurgalSuffixCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4677 }, level = 65, group = "GlobalCooldownRecovery", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, + ["AbyssModRingAmuletKurgalSuffixExposureEffect"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% increased Exposure Effect", statOrder = { 6529 }, level = 65, group = "ElementalExposureEffect", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(10-15)% increased Exposure Effect" }, } }, + ["AbyssModRingAmuletKurgalSuffixCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4674 }, level = 65, group = "GlobalCooldownRecovery", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, ["AbyssModRingAmuletKurgalSuffixRecoverPercentMaxManaOnKill"] = { type = "Suffix", affix = "of Kurgal", "Recover (2-3)% of maximum Mana on Kill", statOrder = { 1517 }, level = 65, group = "ManaGainedOnKillPercentage", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [1604736568] = { "Recover (2-3)% of maximum Mana on Kill" }, } }, - ["AbyssModRingUlamanPrefixShockMagnitudeIfConsumedFrenzyCharge"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", statOrder = { 9846 }, level = 65, group = "ShockMagnitudeIfConsumedFrenzyChargeRecently", weightKey = { "ring", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "frenzy_charge", "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [324210709] = { "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently" }, } }, - ["AbyssModRingAmanamuPrefixIgniteMagnitudeIfConsumedEnduranceCharge"] = { type = "Prefix", affix = "Amanamu's", "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", statOrder = { 7263 }, level = 65, group = "IgniteMagnitudeIfConsumedEnduranceChargeRecently", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "endurance_charge", "unveiled_mod", "amanamu_mod", "ailment" }, tradeHashes = { [916833363] = { "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently" }, } }, + ["AbyssModRingUlamanPrefixShockMagnitudeIfConsumedFrenzyCharge"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", statOrder = { 9837 }, level = 65, group = "ShockMagnitudeIfConsumedFrenzyChargeRecently", weightKey = { "ring", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "frenzy_charge", "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [324210709] = { "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently" }, } }, + ["AbyssModRingAmanamuPrefixIgniteMagnitudeIfConsumedEnduranceCharge"] = { type = "Prefix", affix = "Amanamu's", "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", statOrder = { 7259 }, level = 65, group = "IgniteMagnitudeIfConsumedEnduranceChargeRecently", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "endurance_charge", "unveiled_mod", "amanamu_mod", "ailment" }, tradeHashes = { [916833363] = { "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently" }, } }, ["AbyssModRingAmanamuSuffixLifeLeechAmount"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased amount of Life Leeched", statOrder = { 1895 }, level = 65, group = "LifeLeechAmount", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHashes = { [2112395885] = { "(12-20)% increased amount of Life Leeched" }, } }, - ["AbyssModRingKurgalPrefixFreezeBuildupIfConsumedPowerCharge"] = { type = "Prefix", affix = "Kurgal's", "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", statOrder = { 7192 }, level = 65, group = "FreezeBuildupIfConsumedPowerChargeRecently", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "power_charge", "unveiled_mod", "kurgal_mod", "ailment" }, tradeHashes = { [232701452] = { "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently" }, } }, + ["AbyssModRingKurgalPrefixFreezeBuildupIfConsumedPowerCharge"] = { type = "Prefix", affix = "Kurgal's", "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", statOrder = { 7188 }, level = 65, group = "FreezeBuildupIfConsumedPowerChargeRecently", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "power_charge", "unveiled_mod", "kurgal_mod", "ailment" }, tradeHashes = { [232701452] = { "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently" }, } }, ["AbyssModRingKurgalSuffixManaLeechAmount"] = { type = "Suffix", affix = "of Kurgal", "(12-20)% increased amount of Mana Leeched", statOrder = { 1897 }, level = 65, group = "ManaLeechAmount", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2839066308] = { "(12-20)% increased amount of Mana Leeched" }, } }, - ["AbyssModAmuletUlamanPrefixEvasionRatingFromEquippedBody"] = { type = "Prefix", affix = "Ulaman's", "(35-50)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4958 }, level = 65, group = "EvasionRatingFromBodyArmour", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3509362078] = { "(35-50)% increased Evasion Rating from Equipped Body Armour" }, } }, - ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { type = "Prefix", affix = "Ulaman's", "(10-20)% increased Deflection Rating", statOrder = { 6119 }, level = 65, group = "GlobalDeflectionRating", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3040571529] = { "(10-20)% increased Deflection Rating" }, } }, - ["AbyssModAmuletUlamanPrefixChanceToNotConsumeGlory"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% chance for Skills to retain 40% of Glory on use", statOrder = { 5570 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2749595652] = { "(20-30)% chance for Skills to retain 40% of Glory on use" }, } }, - ["AbyssModAmuletUlamanSuffixHeraldReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Reservation Efficiency of Herald Skills", statOrder = { 9765 }, level = 65, group = "HeraldReservationEfficiency", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1697191405] = { "(10-20)% increased Reservation Efficiency of Herald Skills" }, } }, + ["AbyssModAmuletUlamanPrefixEvasionRatingFromEquippedBody"] = { type = "Prefix", affix = "Ulaman's", "(35-50)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4954 }, level = 65, group = "EvasionRatingFromBodyArmour", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3509362078] = { "(35-50)% increased Evasion Rating from Equipped Body Armour" }, } }, + ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { type = "Prefix", affix = "Ulaman's", "(10-20)% increased Deflection Rating", statOrder = { 6115 }, level = 65, group = "GlobalDeflectionRating", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3040571529] = { "(10-20)% increased Deflection Rating" }, } }, + ["AbyssModAmuletUlamanPrefixChanceToNotConsumeGlory"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% chance for Skills to retain 40% of Glory on use", statOrder = { 5566 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2749595652] = { "(20-30)% chance for Skills to retain 40% of Glory on use" }, } }, + ["AbyssModAmuletUlamanSuffixHeraldReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Reservation Efficiency of Herald Skills", statOrder = { 9756 }, level = 65, group = "HeraldReservationEfficiency", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1697191405] = { "(10-20)% increased Reservation Efficiency of Herald Skills" }, } }, ["AbyssModAmuletUlamanSuffixGlobalLevelOfSkillGems"] = { type = "Suffix", affix = "of Ulaman", "+1 to Level of all Skills", statOrder = { 949 }, level = 65, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, - ["AbyssModAmuletAmanamuPrefixArmourFromEquippedBody"] = { type = "Prefix", affix = "Amanamu's", "(35-50)% increased Armour from Equipped Body Armour", statOrder = { 4957 }, level = 65, group = "BodyArmourFromBodyArmour", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "amanamu_mod", "armour" }, tradeHashes = { [1015576579] = { "(35-50)% increased Armour from Equipped Body Armour" }, } }, + ["AbyssModAmuletAmanamuPrefixArmourFromEquippedBody"] = { type = "Prefix", affix = "Amanamu's", "(35-50)% increased Armour from Equipped Body Armour", statOrder = { 4953 }, level = 65, group = "BodyArmourFromBodyArmour", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "amanamu_mod", "armour" }, tradeHashes = { [1015576579] = { "(35-50)% increased Armour from Equipped Body Armour" }, } }, ["AbyssModAmuletAmanamuPrefixGlobalDefences"] = { type = "Prefix", affix = "Amanamu's", "(15-25)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2588 }, level = 65, group = "AllDefences", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1177404658] = { "(15-25)% increased Global Armour, Evasion and Energy Shield" }, } }, ["AbyssModAmuletAmanamuSuffixReducedRequirementEquipmentAndSkill"] = { type = "Suffix", affix = "of Amanamu", "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements", statOrder = { 2335 }, level = 65, group = "GlobalItemAttributeRequirements", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements" }, } }, ["AbyssModAmuletAmanamuSuffixAuraMagnitude"] = { type = "Suffix", affix = "of Amanamu", "Aura Skills have (8-16)% increased Magnitudes", statOrder = { 2574 }, level = 65, group = "AuraMagnitude", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [315791320] = { "Aura Skills have (8-16)% increased Magnitudes" }, } }, - ["AbyssModAmuletKurgalPrefixEnergyShieldFromEquippedBody"] = { type = "Prefix", affix = "Kurgal's", "(35-50)% increased Energy Shield from Equipped Body Armour", statOrder = { 8863 }, level = 65, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1195319608] = { "(35-50)% increased Energy Shield from Equipped Body Armour" }, } }, - ["AbyssModAmuletKurgalPrefixChanceInvocatedSpellsConsumeHalfEnergy"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells have (10-20)% chance to consume half as much Energy", statOrder = { 7386 }, level = 65, group = "InvocatedSpellHalfEnergyChance", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [3711973554] = { "Invocated Spells have (10-20)% chance to consume half as much Energy" }, } }, - ["AbyssModAmuletKurgalSuffixCooldownRecoveryRateCommandSkills"] = { type = "Suffix", affix = "of Kurgal", "Minions have (12-20)% increased Cooldown Recovery Rate", statOrder = { 9029 }, level = 65, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1691403182] = { "Minions have (12-20)% increased Cooldown Recovery Rate" }, } }, + ["AbyssModAmuletKurgalPrefixEnergyShieldFromEquippedBody"] = { type = "Prefix", affix = "Kurgal's", "(35-50)% increased Energy Shield from Equipped Body Armour", statOrder = { 8854 }, level = 65, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1195319608] = { "(35-50)% increased Energy Shield from Equipped Body Armour" }, } }, + ["AbyssModAmuletKurgalPrefixChanceInvocatedSpellsConsumeHalfEnergy"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells have (10-20)% chance to consume half as much Energy", statOrder = { 7382 }, level = 65, group = "InvocatedSpellHalfEnergyChance", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [3711973554] = { "Invocated Spells have (10-20)% chance to consume half as much Energy" }, } }, + ["AbyssModAmuletKurgalSuffixCooldownRecoveryRateCommandSkills"] = { type = "Suffix", affix = "of Kurgal", "Minions have (12-20)% increased Cooldown Recovery Rate", statOrder = { 9020 }, level = 65, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1691403182] = { "Minions have (12-20)% increased Cooldown Recovery Rate" }, } }, ["AbyssModAmuletKurgalSuffixDamageFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(8-16)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(8-16)% of Damage is taken from Mana before Life" }, } }, ["AbyssModAmuletKurgalSuffixQualityofAllSkills"] = { type = "Suffix", affix = "of Kurgal", "+(3-5)% to Quality of all Skills", statOrder = { 975 }, level = 65, group = "GlobalSkillGemQuality", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "gem" }, tradeHashes = { [3655769732] = { "+(3-5)% to Quality of all Skills" }, } }, - ["AbyssModStaffUlamanPrefixSpellDamagePer100MaximumLife"] = { type = "Prefix", affix = "Ulaman's", "(4-5)% increased Spell Damage per 100 Maximum Life", statOrder = { 10015 }, level = 65, group = "SpellDamagePer100Life", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "ulaman_mod", "life", "damage", "caster" }, tradeHashes = { [3491815140] = { "(4-5)% increased Spell Damage per 100 Maximum Life" }, } }, - ["AbyssModStaffUlamanPrefixMagnitudeOfDamagingAilments"] = { type = "Prefix", affix = "Ulaman's", "(40-64)% increased Magnitude of Damaging Ailments you inflict", statOrder = { 6067 }, level = 65, group = "DamagingAilmentEffect", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [1381474422] = { "(40-64)% increased Magnitude of Damaging Ailments you inflict" }, } }, + ["AbyssModStaffUlamanPrefixSpellDamagePer100MaximumLife"] = { type = "Prefix", affix = "Ulaman's", "(4-5)% increased Spell Damage per 100 Maximum Life", statOrder = { 10006 }, level = 65, group = "SpellDamagePer100Life", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "ulaman_mod", "life", "damage", "caster" }, tradeHashes = { [3491815140] = { "(4-5)% increased Spell Damage per 100 Maximum Life" }, } }, + ["AbyssModStaffUlamanPrefixMagnitudeOfDamagingAilments"] = { type = "Prefix", affix = "Ulaman's", "(40-64)% increased Magnitude of Damaging Ailments you inflict", statOrder = { 6063 }, level = 65, group = "DamagingAilmentEffect", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [1381474422] = { "(40-64)% increased Magnitude of Damaging Ailments you inflict" }, } }, ["AbyssModStaffUlamanSuffixCastSpeedWhileLowLife"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% increased Cast Speed when on Low Life", statOrder = { 1741 }, level = 65, group = "CastSpeedOnLowLife", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_speed", "unveiled_mod", "ulaman_mod", "caster", "speed" }, tradeHashes = { [1136768410] = { "(30-40)% increased Cast Speed when on Low Life" }, } }, - ["AbyssModStaffUlamanSuffixChanceForSpellsToFireTwoAdditionalProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10034 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["AbyssModStaffAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(148-178)% increased Spell Damage with Spells that cost Life", statOrder = { 10011 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(148-178)% increased Spell Damage with Spells that cost Life" }, } }, + ["AbyssModStaffUlamanSuffixChanceForSpellsToFireTwoAdditionalProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10025 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["AbyssModStaffAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(148-178)% increased Spell Damage with Spells that cost Life", statOrder = { 10002 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(148-178)% increased Spell Damage with Spells that cost Life" }, } }, ["AbyssModStaffAmanamuPrefixFlatSpirit"] = { type = "Prefix", affix = "Amanamu's", "+(35-50) to Spirit", statOrder = { 896 }, level = 65, group = "BaseSpirit", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3981240776] = { "+(35-50) to Spirit" }, } }, ["AbyssModStaffAmanamuPrefixDamageAsChaos"] = { type = "Prefix", affix = "Amanamu's", "Gain (40-50)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 65, group = "DamageGainedAsChaos", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "chaos_damage", "unveiled_mod", "amanamu_mod", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (40-50)% of Damage as Extra Chaos Damage" }, } }, - ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10038 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-35)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModStaffAmanamuSuffixArchonDuration"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Archon Buff duration", statOrder = { 4344 }, level = 65, group = "ArchonDuration", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2158617060] = { "(25-35)% increased Archon Buff duration" }, } }, + ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10029 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-35)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["AbyssModStaffAmanamuSuffixArchonDuration"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Archon Buff duration", statOrder = { 4341 }, level = 65, group = "ArchonDuration", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2158617060] = { "(25-35)% increased Archon Buff duration" }, } }, ["AbyssModStaffAmanamuSuffixBlockChance"] = { type = "Suffix", affix = "of Amanamu", "+(20-25)% to Block chance", statOrder = { 1123 }, level = 65, group = "AdditionalBlock", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1702195217] = { "+(20-25)% to Block chance" }, } }, - ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 10017 }, level = 65, group = "SpellDamagePer100Mana", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "kurgal_mod", "mana", "damage", "caster" }, tradeHashes = { [1850249186] = { "(4-5)% increased Spell Damage per 100 maximum Mana" }, } }, - ["AbyssModStaffKurgalPrefixMaximumInfusions"] = { type = "Prefix", affix = "Kurgal's", "+(1-2) to maximum number of Elemental Infusions", statOrder = { 8875 }, level = 65, group = "MaximumElementalInfusion", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental" }, tradeHashes = { [4097212302] = { "+(1-2) to maximum number of Elemental Infusions" }, } }, - ["AbyssModStaffKurgalSuffixArchonCooldownRecovery"] = { type = "Suffix", affix = "of Kurgal", "Archon recovery period expires (25-35)% faster", statOrder = { 4343 }, level = 65, group = "ArchonDelayRecovery", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2586152168] = { "Archon recovery period expires (25-35)% faster" }, } }, - ["AbyssModStaffKurgalSuffixCastSpeedWhileFullMana"] = { type = "Suffix", affix = "of Kurgal", "(26-36)% increased Cast Speed while on Full Mana", statOrder = { 5347 }, level = 65, group = "CastSpeedOnFullMana", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_speed", "resource", "unveiled_mod", "kurgal_mod", "mana", "caster", "speed" }, tradeHashes = { [1914226331] = { "(26-36)% increased Cast Speed while on Full Mana" }, } }, - ["AbyssModStaffKurgalSuffixPuppetMasterStacks"] = { type = "Suffix", affix = "of Kurgal", "+(3-4) maximum stacks of Puppet Master", statOrder = { 8839 }, level = 65, group = "MaximumPuppeteerStacks", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1484026495] = { "+(3-4) maximum stacks of Puppet Master" }, } }, + ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 10008 }, level = 65, group = "SpellDamagePer100Mana", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "kurgal_mod", "mana", "damage", "caster" }, tradeHashes = { [1850249186] = { "(4-5)% increased Spell Damage per 100 maximum Mana" }, } }, + ["AbyssModStaffKurgalPrefixMaximumInfusions"] = { type = "Prefix", affix = "Kurgal's", "+(1-2) to maximum number of Elemental Infusions", statOrder = { 8866 }, level = 65, group = "MaximumElementalInfusion", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental" }, tradeHashes = { [4097212302] = { "+(1-2) to maximum number of Elemental Infusions" }, } }, + ["AbyssModStaffKurgalSuffixArchonCooldownRecovery"] = { type = "Suffix", affix = "of Kurgal", "Archon recovery period expires (25-35)% faster", statOrder = { 4340 }, level = 65, group = "ArchonDelayRecovery", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2586152168] = { "Archon recovery period expires (25-35)% faster" }, } }, + ["AbyssModStaffKurgalSuffixCastSpeedWhileFullMana"] = { type = "Suffix", affix = "of Kurgal", "(26-36)% increased Cast Speed while on Full Mana", statOrder = { 5343 }, level = 65, group = "CastSpeedOnFullMana", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_speed", "resource", "unveiled_mod", "kurgal_mod", "mana", "caster", "speed" }, tradeHashes = { [1914226331] = { "(26-36)% increased Cast Speed while on Full Mana" }, } }, + ["AbyssModStaffKurgalSuffixPuppetMasterStacks"] = { type = "Suffix", affix = "of Kurgal", "+(3-4) maximum stacks of Puppet Master", statOrder = { 8830 }, level = 65, group = "MaximumPuppeteerStacks", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1484026495] = { "+(3-4) maximum stacks of Puppet Master" }, } }, ["AbyssModWandUlamanPrefixDamageAsExtraPhysical"] = { type = "Prefix", affix = "Ulaman's", "Gain (21-25)% of Damage as Extra Physical Damage", statOrder = { 1671 }, level = 65, group = "DamageasExtraPhysical", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (21-25)% of Damage as Extra Physical Damage" }, } }, - ["AbyssModWandUlamanPrefixBleedMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(27-38)% increased Magnitude of Bleeding you inflict", statOrder = { 4809 }, level = 65, group = "BleedDotMultiplier", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(27-38)% increased Magnitude of Bleeding you inflict" }, } }, - ["AbyssModWandUlamanSuffixArmourBreakAmount"] = { type = "Suffix", affix = "of Ulaman", "Break (31-39)% increased Armour", statOrder = { 4407 }, level = 65, group = "ArmourBreak", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1776411443] = { "Break (31-39)% increased Armour" }, } }, - ["AbyssModWandUlamanSuffixBreakArmourSpellCrits"] = { type = "Suffix", affix = "of Ulaman", "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt", statOrder = { 4411 }, level = 65, group = "ArmourBreakPercentOnSpellCrit", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_critical", "unveiled_mod", "ulaman_mod", "caster", "critical" }, tradeHashes = { [1286199571] = { "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt" }, } }, - ["AbyssModWandUlamanSuffixHinderedEnemiesTakeIncreasedPhysical"] = { type = "Suffix", affix = "of Ulaman", "Enemies Hindered by you take (4-7)% increased Physical Damage", statOrder = { 7185 }, level = 65, group = "HinderedEnemiesTakeIncreasedPhysicalDamage", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [359357545] = { "Enemies Hindered by you take (4-7)% increased Physical Damage" }, } }, + ["AbyssModWandUlamanPrefixBleedMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(27-38)% increased Magnitude of Bleeding you inflict", statOrder = { 4805 }, level = 65, group = "BleedDotMultiplier", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(27-38)% increased Magnitude of Bleeding you inflict" }, } }, + ["AbyssModWandUlamanSuffixArmourBreakAmount"] = { type = "Suffix", affix = "of Ulaman", "Break (31-39)% increased Armour", statOrder = { 4404 }, level = 65, group = "ArmourBreak", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1776411443] = { "Break (31-39)% increased Armour" }, } }, + ["AbyssModWandUlamanSuffixBreakArmourSpellCrits"] = { type = "Suffix", affix = "of Ulaman", "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt", statOrder = { 4408 }, level = 65, group = "ArmourBreakPercentOnSpellCrit", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_critical", "unveiled_mod", "ulaman_mod", "caster", "critical" }, tradeHashes = { [1286199571] = { "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt" }, } }, + ["AbyssModWandUlamanSuffixHinderedEnemiesTakeIncreasedPhysical"] = { type = "Suffix", affix = "of Ulaman", "Enemies Hindered by you take (4-7)% increased Physical Damage", statOrder = { 7181 }, level = 65, group = "HinderedEnemiesTakeIncreasedPhysicalDamage", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [359357545] = { "Enemies Hindered by you take (4-7)% increased Physical Damage" }, } }, ["AbyssModWandAmanamuPrefixIncreasedElementalDamage"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Elemental Damage", statOrder = { 1726 }, level = 65, group = "CasterElementalDamagePercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(74-89)% increased Elemental Damage" }, } }, ["AbyssModWandAmanamuPrefixHybridSpellAndMinionDamage"] = { type = "Prefix", affix = "Amanamu's", "(55-64)% increased Spell Damage", "Minions deal (55-64)% increased Damage", statOrder = { 871, 1720 }, level = 65, group = "MinionAndSpellDamageHybrid", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "minion" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, [1589917703] = { "Minions deal (55-64)% increased Damage" }, } }, - ["AbyssModWandAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Spell Damage with Spells that cost Life", statOrder = { 10011 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(74-89)% increased Spell Damage with Spells that cost Life" }, } }, - ["AbyssModWandAmanamuSuffixSpellAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Spell Skills have (8-16)% increased Area of Effect", statOrder = { 9991 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (8-16)% increased Area of Effect" }, } }, - ["AbyssModWandAmanamuSuffixSpellManaCostConvertedToLifeSkillEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Cost Efficiency", "(15-25)% of Spell Mana Cost Converted to Life Cost", statOrder = { 4743, 10038 }, level = 65, group = "SpellLifeCostPercentAndSkillCostEfficiency", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [263495202] = { "(5-10)% increased Cost Efficiency" }, [3544050945] = { "(15-25)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModWandAmanamuSuffixHinderedEnemiesTakeIncreasedElemental"] = { type = "Suffix", affix = "of Amanamu", "Enemies Hindered by you take (4-7)% increased Elemental Damage", statOrder = { 7184 }, level = 65, group = "HinderedEnemiesTakeIncreasedElementalDamage", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [212649958] = { "Enemies Hindered by you take (4-7)% increased Elemental Damage" }, } }, - ["AbyssModWandKurgalPrefixInvocatedSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (75-89)% increased Damage", statOrder = { 7389 }, level = 65, group = "InvocationSpellDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (75-89)% increased Damage" }, } }, - ["AbyssModWandKurgalSuffixCastSpeedPerDifferentSpellCastRecently"] = { type = "Suffix", affix = "of Kurgal", "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 5335 }, level = 65, group = "CastSpeedPerDifferentSpellCastRecently", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1518586897] = { "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" }, } }, - ["AbyssModWandKurgalSuffixHinderedEnemiesTakeIncreasedChaos"] = { type = "Suffix", affix = "of Kurgal", "Enemies Hindered by you take (4-7)% increased Chaos Damage", statOrder = { 7183 }, level = 65, group = "HinderedEnemiesTakeIncreasedChaosDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1746561819] = { "Enemies Hindered by you take (4-7)% increased Chaos Damage" }, } }, + ["AbyssModWandAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Spell Damage with Spells that cost Life", statOrder = { 10002 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(74-89)% increased Spell Damage with Spells that cost Life" }, } }, + ["AbyssModWandAmanamuSuffixSpellAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Spell Skills have (8-16)% increased Area of Effect", statOrder = { 9982 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (8-16)% increased Area of Effect" }, } }, + ["AbyssModWandAmanamuSuffixSpellManaCostConvertedToLifeSkillEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Cost Efficiency", "(15-25)% of Spell Mana Cost Converted to Life Cost", statOrder = { 4739, 10029 }, level = 65, group = "SpellLifeCostPercentAndSkillCostEfficiency", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [263495202] = { "(5-10)% increased Cost Efficiency" }, [3544050945] = { "(15-25)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["AbyssModWandAmanamuSuffixHinderedEnemiesTakeIncreasedElemental"] = { type = "Suffix", affix = "of Amanamu", "Enemies Hindered by you take (4-7)% increased Elemental Damage", statOrder = { 7180 }, level = 65, group = "HinderedEnemiesTakeIncreasedElementalDamage", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [212649958] = { "Enemies Hindered by you take (4-7)% increased Elemental Damage" }, } }, + ["AbyssModWandKurgalPrefixInvocatedSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (75-89)% increased Damage", statOrder = { 7385 }, level = 65, group = "InvocationSpellDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (75-89)% increased Damage" }, } }, + ["AbyssModWandKurgalSuffixCastSpeedPerDifferentSpellCastRecently"] = { type = "Suffix", affix = "of Kurgal", "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 5331 }, level = 65, group = "CastSpeedPerDifferentSpellCastRecently", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1518586897] = { "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" }, } }, + ["AbyssModWandKurgalSuffixHinderedEnemiesTakeIncreasedChaos"] = { type = "Suffix", affix = "of Kurgal", "Enemies Hindered by you take (4-7)% increased Chaos Damage", statOrder = { 7179 }, level = 65, group = "HinderedEnemiesTakeIncreasedChaosDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1746561819] = { "Enemies Hindered by you take (4-7)% increased Chaos Damage" }, } }, ["AbyssModGenWeaponUlamanPrefixLightningPenetration"] = { type = "Prefix", affix = "Ulaman's", "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance", statOrder = { 3439 }, level = 65, group = "LocalLightningPenetration", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "ulaman_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance" }, } }, - ["AbyssModGenWeaponUlamanSuffixSkillCostConvertedToLife"] = { type = "Suffix", affix = "of Ulaman", "(15-20)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4744 }, level = 65, group = "LifeCost", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(15-20)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["AbyssModGenWeaponUlamanSuffixSkillCostConvertedToLife"] = { type = "Suffix", affix = "of Ulaman", "(15-20)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4740 }, level = 65, group = "LifeCost", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(15-20)% of Skill Mana Costs Converted to Life Costs" }, } }, ["AbyssModGenWeaponAmanamuPrefixFirePenetration"] = { type = "Prefix", affix = "Amanamu's", "Attacks with this Weapon Penetrate (15-25)% Fire Resistance", statOrder = { 3437 }, level = 65, group = "LocalFirePenetration", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (15-25)% Fire Resistance" }, } }, - ["AbyssModGenWeaponAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(5-10)% increased Spirit Reservation Efficiency" }, } }, + ["AbyssModGenWeaponAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Spirit Reservation Efficiency", statOrder = { 4751 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(5-10)% increased Spirit Reservation Efficiency" }, } }, ["AbyssModGenWeaponKurgalPrefixColdPenetration"] = { type = "Prefix", affix = "Kurgal's", "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", statOrder = { 3438 }, level = 65, group = "LocalColdPenetration", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "kurgal_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (15-25)% Cold Resistance" }, } }, - ["AbyssModGenWeaponKurgalSuffixAttackCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4653 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, - ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "Melee Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 8911 }, level = 65, group = "AdditionalMeleeTotem", weightKey = { "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2013356568] = { "Melee Attack Skills have +1 to maximum number of Summoned Totems" }, } }, + ["AbyssModGenWeaponKurgalSuffixAttackCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4650 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, + ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "Melee Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 8902 }, level = 65, group = "AdditionalMeleeTotem", weightKey = { "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2013356568] = { "Melee Attack Skills have +1 to maximum number of Summoned Totems" }, } }, ["AbyssModAllMacesKurgalPrefixIncreasedPhysicalDamageReducedAttackSpeed"] = { type = "Prefix", affix = "Kurgal's", "(110-154)% increased Physical Damage", "15% reduced Attack Speed", statOrder = { 830, 946 }, level = 65, group = "LocalIncreasedPhysicalDamageAttackSpeedHybrid", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "physical", "attack", "speed" }, tradeHashes = { [210067635] = { "15% reduced Attack Speed" }, [1509134228] = { "(110-154)% increased Physical Damage" }, } }, - ["AbyssModAllMacesKurgalSuffixCostEfficiencyOfAttackSkills"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4653 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, + ["AbyssModAllMacesKurgalSuffixCostEfficiencyOfAttackSkills"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4650 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, ["AbyssMod1HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(41-59)% increased Damage while you have a Totem", statOrder = { 2923 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(41-59)% increased Damage while you have a Totem" }, } }, ["AbyssMod1HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% increased Totem Placement speed", statOrder = { 2360 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(17-25)% increased Totem Placement speed" }, } }, - ["AbyssMod1HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(41-59)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5947 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(41-59)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["AbyssMod1HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (2-4)% of Physical Damage dealt", statOrder = { 4414 }, level = 65, group = "ArmourPenetration", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (2-4)% of Physical Damage dealt" }, } }, - ["AbyssMod1HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (15-25)% chance to create an additional Fissure", statOrder = { 9894 }, level = 65, group = "AdditionalFissureChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (15-25)% chance to create an additional Fissure" }, } }, - ["AbyssMod1HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10620 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["AbyssMod1HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (41-59)% increased Damage", statOrder = { 6322 }, level = 65, group = "ExertedAttackDamage", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (41-59)% increased Damage" }, } }, + ["AbyssMod1HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(41-59)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5943 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(41-59)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["AbyssMod1HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (2-4)% of Physical Damage dealt", statOrder = { 4411 }, level = 65, group = "ArmourPenetration", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (2-4)% of Physical Damage dealt" }, } }, + ["AbyssMod1HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (15-25)% chance to create an additional Fissure", statOrder = { 9885 }, level = 65, group = "AdditionalFissureChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (15-25)% chance to create an additional Fissure" }, } }, + ["AbyssMod1HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10610 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, + ["AbyssMod1HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (41-59)% increased Damage", statOrder = { 6318 }, level = 65, group = "ExertedAttackDamage", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (41-59)% increased Damage" }, } }, ["AbyssMod1HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(17-25)% increased Warcry Cooldown Recovery Rate" }, } }, ["AbyssMod2HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Damage while you have a Totem", statOrder = { 2923 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(86-99)% increased Damage while you have a Totem" }, } }, ["AbyssMod2HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(25-31)% increased Totem Placement speed", statOrder = { 2360 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(25-31)% increased Totem Placement speed" }, } }, - ["AbyssMod2HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5947 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(86-99)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["AbyssMod2HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (4-7)% of Physical Damage dealt", statOrder = { 4414 }, level = 65, group = "ArmourPenetration", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (4-7)% of Physical Damage dealt" }, } }, - ["AbyssMod2HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (25-31)% chance to create an additional Fissure", statOrder = { 9894 }, level = 65, group = "AdditionalFissureChance", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (25-31)% chance to create an additional Fissure" }, } }, - ["AbyssMod2HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10620 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["AbyssMod2HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (86-99)% increased Damage", statOrder = { 6322 }, level = 65, group = "ExertedAttackDamage", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (86-99)% increased Damage" }, } }, + ["AbyssMod2HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5943 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(86-99)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["AbyssMod2HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (4-7)% of Physical Damage dealt", statOrder = { 4411 }, level = 65, group = "ArmourPenetration", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (4-7)% of Physical Damage dealt" }, } }, + ["AbyssMod2HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (25-31)% chance to create an additional Fissure", statOrder = { 9885 }, level = 65, group = "AdditionalFissureChance", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (25-31)% chance to create an additional Fissure" }, } }, + ["AbyssMod2HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10610 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, + ["AbyssMod2HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (86-99)% increased Damage", statOrder = { 6318 }, level = 65, group = "ExertedAttackDamage", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (86-99)% increased Damage" }, } }, ["AbyssMod2HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(25-31)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(25-31)% increased Warcry Cooldown Recovery Rate" }, } }, - ["AbyssModQuarterstaffUlamanPrefixLightningDamageShockMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Lightning Damage", "(14-23)% increased Magnitude of Shock you inflict", statOrder = { 875, 9845 }, level = 65, group = "LightningDamageShockMagnitudeHybrid", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(14-23)% increased Magnitude of Shock you inflict" }, [2231156303] = { "(86-99)% increased Lightning Damage" }, } }, - ["AbyssModQuarterstaffUlamanSuffixRecoverLifeWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Ulaman", "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", statOrder = { 9698 }, level = 65, group = "SkillUseRecoverPercentLifeOnExpendingTenCombo", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [4033618138] = { "Recover (6-12)% of Maximum Life when you expend at least 10 Combo" }, } }, + ["AbyssModQuarterstaffUlamanPrefixLightningDamageShockMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Lightning Damage", "(14-23)% increased Magnitude of Shock you inflict", statOrder = { 875, 9836 }, level = 65, group = "LightningDamageShockMagnitudeHybrid", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(14-23)% increased Magnitude of Shock you inflict" }, [2231156303] = { "(86-99)% increased Lightning Damage" }, } }, + ["AbyssModQuarterstaffUlamanSuffixRecoverLifeWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Ulaman", "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", statOrder = { 9689 }, level = 65, group = "SkillUseRecoverPercentLifeOnExpendingTenCombo", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [4033618138] = { "Recover (6-12)% of Maximum Life when you expend at least 10 Combo" }, } }, ["AbyssModQuarterstaffAmanamuPrefixFireDamageIgniteMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Fire Damage", "(14-23)% increased Ignite Magnitude", statOrder = { 873, 1077 }, level = 65, group = "FireDamageIgniteMagnitudeHybrid", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [3962278098] = { "(86-99)% increased Fire Damage" }, [3791899485] = { "(14-23)% increased Ignite Magnitude" }, } }, - ["AbyssModQuarterstaffAmanamuSuffixChanceToGenerateAdditionalCombo"] = { type = "Suffix", affix = "of Amanamu", "(25-40)% chance to build an additional Combo on Hit", statOrder = { 4185 }, level = 65, group = "ChanceToGenerateAdditionalCombo", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [4258524206] = { "(25-40)% chance to build an additional Combo on Hit" }, } }, + ["AbyssModQuarterstaffAmanamuSuffixChanceToGenerateAdditionalCombo"] = { type = "Suffix", affix = "of Amanamu", "(25-40)% chance to build an additional Combo on Hit", statOrder = { 4182 }, level = 65, group = "ChanceToGenerateAdditionalCombo", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [4258524206] = { "(25-40)% chance to build an additional Combo on Hit" }, } }, ["AbyssModQuarterstaffKurgalPrefixColdDamageFreezeBuildup"] = { type = "Prefix", affix = "Kurgal's", "(86-99)% increased Cold Damage", "(14-23)% increased Freeze Buildup", statOrder = { 874, 1057 }, level = 65, group = "ColdDamageFreezeBuildupHybrid", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(86-99)% increased Cold Damage" }, [473429811] = { "(14-23)% increased Freeze Buildup" }, } }, - ["AbyssModQuarterstaffKurgalSuffixRecoverManaWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Kurgal", "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", statOrder = { 9701 }, level = 65, group = "SkillUseRecoverPercentManaOnExpendingTenCombo", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2991045011] = { "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo" }, } }, - ["AbyssModCrossbowUlamanPrefixMaximumRangedAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4175 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, + ["AbyssModQuarterstaffKurgalSuffixRecoverManaWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Kurgal", "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", statOrder = { 9692 }, level = 65, group = "SkillUseRecoverPercentManaOnExpendingTenCombo", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2991045011] = { "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo" }, } }, + ["AbyssModCrossbowUlamanPrefixMaximumRangedAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4172 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, ["AbyssModCrossbowUlamanSuffixAttacksChainAdditionalTime"] = { type = "Suffix", affix = "of Ulaman", "Attacks Chain an additional time", statOrder = { 3783 }, level = 65, group = "AttacksChainAdditionalTimes", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3868118796] = { "Attacks Chain an additional time" }, } }, - ["AbyssModCrossbowUlamanSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Ulaman", "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5817 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m" }, } }, - ["AbyssModCrossbowAmanamuPrefixGrenadeAdditionalCooldown"] = { type = "Prefix", affix = "Amanamu's", "Grenade Skills have +1 Cooldown Use", statOrder = { 6941 }, level = 65, group = "GrenadeCooldownUse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, - ["AbyssModCrossbowAmanamuPrefixGrenadeDamageAndDuration"] = { type = "Prefix", affix = "Amanamu's", "(101-121)% increased Grenade Damage", "(20-30)% increased Grenade Duration", statOrder = { 6943, 6944 }, level = 65, group = "GrenadeDamageLongFuse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [1365232741] = { "(20-30)% increased Grenade Duration" }, [3131442032] = { "(101-121)% increased Grenade Damage" }, } }, - ["AbyssModCrossbowAmanamuSuffixAdditionalGrenadeTriggerChance"] = { type = "Suffix", affix = "of Amanamu", "Grenades have (15-25)% chance to activate a second time", statOrder = { 6939 }, level = 65, group = "GrenadeAdditionalTriggerChance", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [538981065] = { "Grenades have (15-25)% chance to activate a second time" }, } }, - ["AbyssModCrossbowKurgalPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", statOrder = { 9549 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m" }, } }, + ["AbyssModCrossbowUlamanSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Ulaman", "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5813 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m" }, } }, + ["AbyssModCrossbowAmanamuPrefixGrenadeAdditionalCooldown"] = { type = "Prefix", affix = "Amanamu's", "Grenade Skills have +1 Cooldown Use", statOrder = { 6937 }, level = 65, group = "GrenadeCooldownUse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, + ["AbyssModCrossbowAmanamuPrefixGrenadeDamageAndDuration"] = { type = "Prefix", affix = "Amanamu's", "(101-121)% increased Grenade Damage", "(20-30)% increased Grenade Duration", statOrder = { 6939, 6940 }, level = 65, group = "GrenadeDamageLongFuse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [1365232741] = { "(20-30)% increased Grenade Duration" }, [3131442032] = { "(101-121)% increased Grenade Damage" }, } }, + ["AbyssModCrossbowAmanamuSuffixAdditionalGrenadeTriggerChance"] = { type = "Suffix", affix = "of Amanamu", "Grenades have (15-25)% chance to activate a second time", statOrder = { 6935 }, level = 65, group = "GrenadeAdditionalTriggerChance", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [538981065] = { "Grenades have (15-25)% chance to activate a second time" }, } }, + ["AbyssModCrossbowKurgalPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", statOrder = { 9540 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m" }, } }, ["AbyssModCrossbowKurgalSuffixReloadSpeed"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Reload Speed", statOrder = { 947 }, level = 65, group = "LocalReloadSpeed", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack", "speed" }, tradeHashes = { [710476746] = { "(17-25)% increased Reload Speed" }, } }, ["AbyssModCrossbowKurgalSuffixChanceForInstantReload"] = { type = "Suffix", affix = "of Kurgal", "(15-20)% chance when you Reload a Crossbow to be immediate", statOrder = { 2 }, level = 65, group = "ChanceForInstantReload", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2760344900] = { "(15-20)% chance when you Reload a Crossbow to be immediate" }, } }, - ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Ulaman's", "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9548 }, level = 65, group = "ProjectileDamageFar", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m" }, } }, - ["AbyssModBowSpearUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", statOrder = { 9541 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving" }, } }, - ["AbyssModBowSpearUlamanSuffixAttackSpeedLocalAndWithCompanion"] = { type = "Suffix", affix = "of Ulaman", "(8-13)% increased Attack Speed", "(8-13)% increased Attack Speed while your Companion is in your Presence", statOrder = { 946, 4556 }, level = 65, group = "LocalAttackSpeedAndAttackSpeedWithCompanion", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [210067635] = { "(8-13)% increased Attack Speed" }, [299996] = { "(8-13)% increased Attack Speed while your Companion is in your Presence" }, } }, - ["AbyssModBowSpearAmanamuPrefixCompanionDamageAndDamageWithCompanion"] = { type = "Prefix", affix = "Amanamu's", "Companions deal (40-59)% increased Damage", "(40-59)% increased Damage while your Companion is in your Presence", statOrder = { 5722, 5961 }, level = 65, group = "CompanionDamageAndDamageWithCompanion", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [693180608] = { "(40-59)% increased Damage while your Companion is in your Presence" }, [234296660] = { "Companions deal (40-59)% increased Damage" }, } }, - ["AbyssModBowSpearAmanamuPrefixAttackSkillAreaOfEffect"] = { type = "Prefix", affix = "Amanamu's", "(12-23)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 65, group = "IncreasedAttackAreaOfEffect", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [1840985759] = { "(12-23)% increased Area of Effect for Attacks" }, } }, - ["AbyssModBowSpearAmanamuSuffixCompanionAndLocalAttackSpeed"] = { type = "Suffix", affix = "of Amanamu", "(12-18)% increased Attack Speed", "Companions have (12-18)% increased Attack Speed", statOrder = { 946, 5716 }, level = 65, group = "CompanionAndLocalAttackSpeed", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [210067635] = { "(12-18)% increased Attack Speed" }, [666077204] = { "Companions have (12-18)% increased Attack Speed" }, } }, + ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Ulaman's", "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9539 }, level = 65, group = "ProjectileDamageFar", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m" }, } }, + ["AbyssModBowSpearUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", statOrder = { 9532 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving" }, } }, + ["AbyssModBowSpearUlamanSuffixAttackSpeedLocalAndWithCompanion"] = { type = "Suffix", affix = "of Ulaman", "(8-13)% increased Attack Speed", "(8-13)% increased Attack Speed while your Companion is in your Presence", statOrder = { 946, 4553 }, level = 65, group = "LocalAttackSpeedAndAttackSpeedWithCompanion", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [210067635] = { "(8-13)% increased Attack Speed" }, [299996] = { "(8-13)% increased Attack Speed while your Companion is in your Presence" }, } }, + ["AbyssModBowSpearAmanamuPrefixCompanionDamageAndDamageWithCompanion"] = { type = "Prefix", affix = "Amanamu's", "Companions deal (40-59)% increased Damage", "(40-59)% increased Damage while your Companion is in your Presence", statOrder = { 5718, 5957 }, level = 65, group = "CompanionDamageAndDamageWithCompanion", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [693180608] = { "(40-59)% increased Damage while your Companion is in your Presence" }, [234296660] = { "Companions deal (40-59)% increased Damage" }, } }, + ["AbyssModBowSpearAmanamuPrefixAttackSkillAreaOfEffect"] = { type = "Prefix", affix = "Amanamu's", "(12-23)% increased Area of Effect for Attacks", statOrder = { 4490 }, level = 65, group = "IncreasedAttackAreaOfEffect", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [1840985759] = { "(12-23)% increased Area of Effect for Attacks" }, } }, + ["AbyssModBowSpearAmanamuSuffixCompanionAndLocalAttackSpeed"] = { type = "Suffix", affix = "of Amanamu", "(12-18)% increased Attack Speed", "Companions have (12-18)% increased Attack Speed", statOrder = { 946, 5712 }, level = 65, group = "CompanionAndLocalAttackSpeed", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [210067635] = { "(12-18)% increased Attack Speed" }, [666077204] = { "Companions have (12-18)% increased Attack Speed" }, } }, ["AbyssModBowSpearAmanamuSuffixChancePierceAdditionalTime"] = { type = "Suffix", affix = "of Amanamu", "(40-60)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 65, group = "ChanceToPierce", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2321178454] = { "(40-60)% chance to Pierce an Enemy" }, } }, - ["AbyssModBowSpearKurgalPrefixChanceChainFromTerrain"] = { type = "Prefix", affix = "Kurgal's", "Projectiles have (25-35)% chance to Chain an additional time from terrain", statOrder = { 9543 }, level = 65, group = "ChainFromTerrain", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-35)% chance to Chain an additional time from terrain" }, } }, - ["AbyssModBowSpearKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5831 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m" }, } }, - ["AbyssModBowSpearKurgalSuffixImmobilisationBuildup"] = { type = "Suffix", affix = "of Kurgal", "(25-34)% increased Immobilisation buildup", statOrder = { 7193 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [330530785] = { "(25-34)% increased Immobilisation buildup" }, } }, - ["AbyssModBowKurgalPrefixIncreasedQuiverStats"] = { type = "Prefix", affix = "Kurgal's", "(30-40)% increased bonuses gained from Equipped Quiver", statOrder = { 9605 }, level = 65, group = "QuiverModifierEffect", weightKey = { "bow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1200678966] = { "(30-40)% increased bonuses gained from Equipped Quiver" }, } }, - ["AbyssModSpearKurgalPrefixMeleeDamageIfProjectileAttackHitEightSeconds"] = { type = "Prefix", affix = "Kurgal's", "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8914 }, level = 65, group = "MeleeDamageIfProjectileAttackHitRecently", weightKey = { "spear", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3028809864] = { "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["AbyssModTalismanUlamanSuffixGainXRageOnMeleeHit"] = { type = "Suffix", affix = "of Ulaman", "Gain (3-6) Rage on Melee Hit", statOrder = { 6873 }, level = 65, group = "RageOnHit", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [2709367754] = { "Gain (3-6) Rage on Melee Hit" }, } }, - ["AbyssModTalismanAmanamuPrefixMinionsDealIncreasedDamageIfYouHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (60-79)% increased Damage if you've Hit Recently", statOrder = { 9039 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (60-79)% increased Damage if you've Hit Recently" }, } }, - ["AbyssModTalismanKurgalPrefixWarcriesEmpowerXAdditionalAttacks"] = { type = "Prefix", affix = "Kurgal's", "Warcries Empower an additional Attack", statOrder = { 10510 }, level = 65, group = "WarcriesExertAnAdditionalAttack", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, - ["AbyssModTalismanKurgalSuffixCriticalHitChanceAgainstMarkedTargets"] = { type = "Suffix", affix = "of Kurgal", "(39-51)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5834 }, level = 65, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [1045789614] = { "(39-51)% increased Critical Hit Chance against Marked Enemies" }, } }, - ["UniqueWatcherVeiledSpiritReservationEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Spirit Reservation Efficiency", statOrder = { 4755 }, level = 1, group = "UniqueSpiritReservationEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix" }, tradeHashes = { [53386210] = { "(12-16)% increased Spirit Reservation Efficiency" }, } }, - ["UniqueWatcherVeiledManaCostEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Mana Cost Efficiency", statOrder = { 4718 }, level = 1, group = "UniqueManaCostEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [4101445926] = { "(12-16)% increased Mana Cost Efficiency" }, } }, + ["AbyssModBowSpearKurgalPrefixChanceChainFromTerrain"] = { type = "Prefix", affix = "Kurgal's", "Projectiles have (25-35)% chance to Chain an additional time from terrain", statOrder = { 9534 }, level = 65, group = "ChainFromTerrain", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-35)% chance to Chain an additional time from terrain" }, } }, + ["AbyssModBowSpearKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5827 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m" }, } }, + ["AbyssModBowSpearKurgalSuffixImmobilisationBuildup"] = { type = "Suffix", affix = "of Kurgal", "(25-34)% increased Immobilisation buildup", statOrder = { 7189 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [330530785] = { "(25-34)% increased Immobilisation buildup" }, } }, + ["AbyssModBowKurgalPrefixIncreasedQuiverStats"] = { type = "Prefix", affix = "Kurgal's", "(30-40)% increased bonuses gained from Equipped Quiver", statOrder = { 9596 }, level = 65, group = "QuiverModifierEffect", weightKey = { "bow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1200678966] = { "(30-40)% increased bonuses gained from Equipped Quiver" }, } }, + ["AbyssModSpearKurgalPrefixMeleeDamageIfProjectileAttackHitEightSeconds"] = { type = "Prefix", affix = "Kurgal's", "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8905 }, level = 65, group = "MeleeDamageIfProjectileAttackHitRecently", weightKey = { "spear", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3028809864] = { "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["AbyssModTalismanUlamanSuffixGainXRageOnMeleeHit"] = { type = "Suffix", affix = "of Ulaman", "Gain (3-6) Rage on Melee Hit", statOrder = { 6869 }, level = 65, group = "RageOnHit", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [2709367754] = { "Gain (3-6) Rage on Melee Hit" }, } }, + ["AbyssModTalismanAmanamuPrefixMinionsDealIncreasedDamageIfYouHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (60-79)% increased Damage if you've Hit Recently", statOrder = { 9030 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (60-79)% increased Damage if you've Hit Recently" }, } }, + ["AbyssModTalismanKurgalPrefixWarcriesEmpowerXAdditionalAttacks"] = { type = "Prefix", affix = "Kurgal's", "Warcries Empower an additional Attack", statOrder = { 10500 }, level = 65, group = "WarcriesExertAnAdditionalAttack", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, + ["AbyssModTalismanKurgalSuffixCriticalHitChanceAgainstMarkedTargets"] = { type = "Suffix", affix = "of Kurgal", "(39-51)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5830 }, level = 65, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [1045789614] = { "(39-51)% increased Critical Hit Chance against Marked Enemies" }, } }, + ["UniqueWatcherVeiledSpiritReservationEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Spirit Reservation Efficiency", statOrder = { 4751 }, level = 1, group = "UniqueSpiritReservationEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix" }, tradeHashes = { [53386210] = { "(12-16)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueWatcherVeiledManaCostEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Mana Cost Efficiency", statOrder = { 4714 }, level = 1, group = "UniqueManaCostEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [4101445926] = { "(12-16)% increased Mana Cost Efficiency" }, } }, ["UniqueWatcherVeiledCurseAreaOfEffect"] = { type = "Suffix", affix = "", "(11-21)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "UniqueCurseAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [153777645] = { "(11-21)% increased Area of Effect of Curses" }, } }, ["UniqueWatcherVeiledEffectOfCurses"] = { type = "Suffix", affix = "", "(11-18)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "UniqueEffectOfCurses", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [2353576063] = { "(11-18)% increased Curse Magnitudes" }, } }, ["UniqueWatcherVeiledMinionLife"] = { type = "Suffix", affix = "", "Minions have (41-50)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "UniqueMinionLife", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-50)% increased maximum Life" }, } }, @@ -346,48 +346,48 @@ return { ["UniqueWatcherVeiledAlliesInPresenceAllElementalResistance"] = { type = "Suffix", affix = "", "Allies in your Presence have +(11-18)% to all Elemental Resistances", statOrder = { 920 }, level = 1, group = "UniqueAlliesInPresenceAllElementalResistance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "unveiled_mod", "watcher_abyss_suffix", "elemental", "resistance", "aura" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(11-18)% to all Elemental Resistances" }, } }, ["UniqueWatcherVeiledAlliesInPresenceFlatLifeRegen"] = { type = "Suffix", affix = "", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 921 }, level = 1, group = "UniqueAlliesInPresenceFlatLifeRegen", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "aura" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, ["UniqueWatcherVeiledAlliesInPresenceCriticalHitChance"] = { type = "Suffix", affix = "", "Allies in your Presence have (26-41)% increased Critical Hit Chance", statOrder = { 916 }, level = 1, group = "UniqueAlliesInPresenceCriticalHitChance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "critical", "aura" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (26-41)% increased Critical Hit Chance" }, } }, - ["UniqueKulemakUnholyMightAndMagnitude_1"] = { type = "Prefix", affix = "", "(28-56)% increased Magnitude of Unholy Might buffs you grant", "You have Unholy Might", statOrder = { 4762, 6978 }, level = 1, group = "UniqueUnholyMightAndMagnitude", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2725205297] = { "(28-56)% increased Magnitude of Unholy Might buffs you grant" }, [3007552094] = { "You have Unholy Might" }, } }, + ["UniqueKulemakUnholyMightAndMagnitude_1"] = { type = "Prefix", affix = "", "(28-56)% increased Magnitude of Unholy Might buffs you grant", "You have Unholy Might", statOrder = { 4758, 6974 }, level = 1, group = "UniqueUnholyMightAndMagnitude", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2725205297] = { "(28-56)% increased Magnitude of Unholy Might buffs you grant" }, [3007552094] = { "You have Unholy Might" }, } }, ["UniqueKulemakChaosDamageAndExplosion_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 876, 3012 }, level = 1, group = "UniqueChaosDamageAndExplosion", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1776945532] = { "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, - ["UniqueKulemakSpellPhysicalDamageBleedChance_1"] = { type = "Prefix", affix = "", "(100-160)% increased Spell Physical Damage", "(20-30)% chance to inflict Bleeding on Hit", statOrder = { 878, 4671 }, level = 1, group = "UniqueSpellPhysicalAndBleedChance", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "physical" }, tradeHashes = { [2174054121] = { "(20-30)% chance to inflict Bleeding on Hit" }, [2768835289] = { "(100-160)% increased Spell Physical Damage" }, } }, + ["UniqueKulemakSpellPhysicalDamageBleedChance_1"] = { type = "Prefix", affix = "", "(100-160)% increased Spell Physical Damage", "(20-30)% chance to inflict Bleeding on Hit", statOrder = { 878, 4668 }, level = 1, group = "UniqueSpellPhysicalAndBleedChance", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "physical" }, tradeHashes = { [2174054121] = { "(20-30)% chance to inflict Bleeding on Hit" }, [2768835289] = { "(100-160)% increased Spell Physical Damage" }, } }, ["UniqueKulemakChaosDamageCurseLowersChaosRes_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you Curse have -(8-5)% to Chaos Resistance", statOrder = { 876, 3716 }, level = 1, group = "UniqueChaosDamageAndCurseLowersChaosRes", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1772929282] = { "Enemies you Curse have -(8-5)% to Chaos Resistance" }, } }, - ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 895, 4755 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2704225257] = { "+(40-60) to Spirit" }, [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 895, 4751 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2704225257] = { "+(40-60) to Spirit" }, [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(100-160)% increased Elemental Damage", statOrder = { 1617, 1726 }, level = 1, group = "UniqueElementalDamageAndDurationOfEleAilments", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "elemental" }, tradeHashes = { [2604619892] = { "(10-20)% increased Duration of Elemental Ailments on Enemies" }, [3141070085] = { "(100-160)% increased Elemental Damage" }, } }, - ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { type = "Suffix", affix = "of Ulaman", "(40-50)% increased Life Regeneration Rate while moving", statOrder = { 7528 }, level = 65, group = "LifeRegenerationPlusPercentWhileMoving", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2116424886] = { "(40-50)% increased Life Regeneration Rate while moving" }, } }, + ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { type = "Suffix", affix = "of Ulaman", "(40-50)% increased Life Regeneration Rate while moving", statOrder = { 7524 }, level = 65, group = "LifeRegenerationPlusPercentWhileMoving", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2116424886] = { "(40-50)% increased Life Regeneration Rate while moving" }, } }, ["GenesisTreeAmuletColdDamageAsPortionOfDamage"] = { type = "Prefix", affix = "Tul's", "Gain (10-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1675 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [758893621] = { "Gain (10-20)% of Physical Damage as Extra Cold Damage" }, } }, - ["GenesisTreeAmuletAnaemiaOnHit"] = { type = "Prefix", affix = "Uul-Netol's", "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", statOrder = { 4324, 4324.1 }, level = 1, group = "AnaemiaOnHit", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical" }, tradeHashes = { [971590056] = { "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies" }, } }, - ["GenesisTreeFireSpellBaseCriticalChance"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6590 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, - ["GenesisTreeAdditionalMaximumSeals"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4727 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, - ["GenesisTreeBeltMinionAdditionalProjectileChance"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 9019 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, - ["GenesisTreeRingMaximumElementalInfusion"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8875 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, - ["GenesisTreeBeltSealGainFrequency"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9800 }, level = 1, group = "SealGainFrequency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, + ["GenesisTreeAmuletAnaemiaOnHit"] = { type = "Prefix", affix = "Uul-Netol's", "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", statOrder = { 4321, 4321.1 }, level = 1, group = "AnaemiaOnHit", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical" }, tradeHashes = { [971590056] = { "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies" }, } }, + ["GenesisTreeFireSpellBaseCriticalChance"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6586 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, + ["GenesisTreeAdditionalMaximumSeals"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4723 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, + ["GenesisTreeBeltMinionAdditionalProjectileChance"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 9010 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, + ["GenesisTreeRingMaximumElementalInfusion"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8866 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, + ["GenesisTreeBeltSealGainFrequency"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9791 }, level = 1, group = "SealGainFrequency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, ["GenesisTreeRingOfferingEffect"] = { type = "Prefix", affix = "Dedicated", "Offering Skills have (23-30)% increased Buff effect", statOrder = { 3719 }, level = 1, group = "OfferingEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "Offering Skills have (23-30)% increased Buff effect" }, } }, - ["GenesisTreeRingTemporaryMinionLimit"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10247 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, - ["GenesisTreeRingMinionArmourBreak"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 9000 }, level = 1, group = "MinionArmourBreak", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, - ["GenesisTreeRingMinionAilmentMagnitude"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 9012 }, level = 1, group = "MinionDamagingAilments", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, - ["GenesisTreeRingCommandSkillSpeed"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 9025 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, - ["GenesisTreeRingMinionCooldownRecovery"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 9029 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, - ["GenesisTreeRingMinionPuppetMaster"] = { type = "Suffix", affix = "of the Cabal", "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", statOrder = { 10202 }, level = 1, group = "MinionGainPuppetMasterOnCommand", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2840930496] = { "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" }, } }, + ["GenesisTreeRingTemporaryMinionLimit"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10238 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, + ["GenesisTreeRingMinionArmourBreak"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 8991 }, level = 1, group = "MinionArmourBreak", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, + ["GenesisTreeRingMinionAilmentMagnitude"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 9003 }, level = 1, group = "MinionDamagingAilments", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, + ["GenesisTreeRingCommandSkillSpeed"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 9016 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, + ["GenesisTreeRingMinionCooldownRecovery"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 9020 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, + ["GenesisTreeRingMinionPuppetMaster"] = { type = "Suffix", affix = "of the Cabal", "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", statOrder = { 10193 }, level = 1, group = "MinionGainPuppetMasterOnCommand", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2840930496] = { "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" }, } }, ["GenesisTreeRingSpellDamageAsExtraLightning"] = { type = "Prefix", affix = "Storm Chaser's", "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", statOrder = { 870 }, level = 1, group = "SpellDamageGainedAsLightning", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [323800555] = { "Gain (8-12)% of Damage as Extra Lightning Damage with Spells" }, } }, ["GenesisTreeRingSpellDamageAsExtraFire"] = { type = "Prefix", affix = "Fire Breather's", "Gain (8-12)% of Damage as Extra Fire Damage with Spells", statOrder = { 864 }, level = 1, group = "SpellDamageGainedAsFire", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1321054058] = { "Gain (8-12)% of Damage as Extra Fire Damage with Spells" }, } }, ["GenesisTreeRingSpellDamageAsExtraCold"] = { type = "Prefix", affix = "Tempest Rider's", "Gain (8-12)% of Damage as Extra Cold Damage with Spells", statOrder = { 868 }, level = 1, group = "SpellDamageGainedAsCold", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [825116955] = { "Gain (8-12)% of Damage as Extra Cold Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraChaos"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9242 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, + ["GenesisTreeRingSpellDamageAsExtraChaos"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9233 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, ["GenesisTreeRingDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Burdensome", "(8-12)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(8-12)% of Damage is taken from Mana before Life" }, } }, - ["GenesisTreeRingExposureEffect"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6533 }, level = 1, group = "ElementalExposureEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, - ["GenesisTreeRingMaximumInvocationEnergy"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7385 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, - ["GenesisTreeRingSpellImpaleEffect"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 10027 }, level = 1, group = "SpellImpaleEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, - ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6561 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7543 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5675 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltArchonEffect"] = { type = "Prefix", affix = "Unshackling", "(20-39)% increased effect of Archon Buffs on you", statOrder = { 4345 }, level = 1, group = "ArchonEffect", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1180552088] = { "(20-39)% increased effect of Archon Buffs on you" }, } }, - ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6Seconds"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5565 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, - ["GenesisTreeBeltSpellElementalAilmentMagnitude"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 10025 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, - ["GenesisTreeBeltArchonDuration"] = { type = "Suffix", affix = "of Exertion", "(40-50)% increased Archon Buff duration", statOrder = { 4344 }, level = 1, group = "ArchonDuration", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(40-50)% increased Archon Buff duration" }, } }, - ["GenesisTreeBeltArchonUndeathOnOfferingUse"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5401 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, - ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15Seconds"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 9034 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, - ["GenesisTreeBeltMinionsGiganticRevivedRecently"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9096 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, - ["GenesisTreeBeltDamageRemovedFromSpectres"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6036 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, - ["GenesisTreeBeltMinionReservationEfficiency"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9767 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, - ["GenesisTreeBeltMinionMeleeSplash"] = { type = "Suffix", affix = "of Ravaging", "Minions' Strikes have Melee Splash", statOrder = { 9067 }, level = 1, group = "MinionMeleeSplash", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Minions' Strikes have Melee Splash" }, } }, - ["GenesisTreeBeltMinionDuration"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4728 }, level = 1, group = "MinionDuration", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, - ["ConvertedAbyssModQuarterstaffChaosAndAilment1"] = { type = "Prefix", affix = "Lich's", "(86-99)% increased Chaos Damage", "(14-23)% increased Magnitude of Ailments you inflict", statOrder = { 876, 4259 }, level = 65, group = "ChaosDamageAndAilmentMagnitude", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [736967255] = { "(86-99)% increased Chaos Damage" }, [1303248024] = { "(14-23)% increased Magnitude of Ailments you inflict" }, } }, + ["GenesisTreeRingExposureEffect"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6529 }, level = 1, group = "ElementalExposureEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, + ["GenesisTreeRingMaximumInvocationEnergy"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7381 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, + ["GenesisTreeRingSpellImpaleEffect"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 10018 }, level = 1, group = "SpellImpaleEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, + ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6557 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7539 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5671 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltArchonEffect"] = { type = "Prefix", affix = "Unshackling", "(20-39)% increased effect of Archon Buffs on you", statOrder = { 4342 }, level = 1, group = "ArchonEffect", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1180552088] = { "(20-39)% increased effect of Archon Buffs on you" }, } }, + ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6Seconds"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5561 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, + ["GenesisTreeBeltSpellElementalAilmentMagnitude"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 10016 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, + ["GenesisTreeBeltArchonDuration"] = { type = "Suffix", affix = "of Exertion", "(40-50)% increased Archon Buff duration", statOrder = { 4341 }, level = 1, group = "ArchonDuration", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(40-50)% increased Archon Buff duration" }, } }, + ["GenesisTreeBeltArchonUndeathOnOfferingUse"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5397 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, + ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15Seconds"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 9025 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, + ["GenesisTreeBeltMinionsGiganticRevivedRecently"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9087 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, + ["GenesisTreeBeltDamageRemovedFromSpectres"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6032 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, + ["GenesisTreeBeltMinionReservationEfficiency"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9758 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, + ["GenesisTreeBeltMinionMeleeSplash"] = { type = "Suffix", affix = "of Ravaging", "Minions' Strikes have Melee Splash", statOrder = { 9058 }, level = 1, group = "MinionMeleeSplash", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Minions' Strikes have Melee Splash" }, } }, + ["GenesisTreeBeltMinionDuration"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4724 }, level = 1, group = "MinionDuration", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, + ["ConvertedAbyssModQuarterstaffChaosAndAilment1"] = { type = "Prefix", affix = "Lich's", "(86-99)% increased Chaos Damage", "(14-23)% increased Magnitude of Ailments you inflict", statOrder = { 876, 4256 }, level = 65, group = "ChaosDamageAndAilmentMagnitude", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [736967255] = { "(86-99)% increased Chaos Damage" }, [1303248024] = { "(14-23)% increased Magnitude of Ailments you inflict" }, } }, } \ No newline at end of file diff --git a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index ff07ed84a9..c4110c16f3 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -229,6 +229,7 @@ writeMods("../Data/ModItem.lua", function(mod) (mod.GenerationType == GenTypes.Prefix or mod.GenerationType == GenTypes.Suffix) and (mod.Family[1] and mod.Family[1].Id ~= "AuraBonus" or not mod.Family[1]) and (not mod.Id:match("Cowards")) and not mod.Id:match("Master") + and not mod.Id:match("^HandWraps") end) writeMods("../Data/ModCorrupted.lua", function(mod) return (mod.Domain == Domains.Jewel or mod.Domain == Domains.GenericMod) and @@ -257,9 +258,64 @@ writeMods("../Data/ModItemExclusive.lua", and (mod.Family[1] and mod.Family[1].Id ~= "AuraBonus" or not mod.Family[1]) and not mod.Id:match("^Synthesis") and not mod.Id:match("Royale") and not mod.Id:match("Cowards") and not mod.Id:match("Map") and not mod.Id:match("Ultimatum") and not mod.Id:match("SpecialCorruption") + and not mod.Id:match("^HandWraps") end) +writeMods("../Data/ModFistsOfStone.lua", function(mod) + return mod.Id:match("^HandWraps") +end) writeMods("../Data/ModVeiled.lua", function(mod) return mod.Domain == Domains.Veiled and not mod.Id:match("Map") end) +local function writeStonefistMap(outName) + local targetById = { } + local targetsByName = { } + local sources = { } + for mod in dat("Mods"):Rows() do + if mod.Id:match("^HandWraps") then + targetById[mod.Id] = mod + local name = mod.Name or "" + targetsByName[name] = targetsByName[name] or { } + table.insert(targetsByName[name], mod) + else + sources[#sources + 1] = mod + end + end + + local keys, map = { }, { } + for _, source in ipairs(sources) do + local bareId = source.Id:gsub("_+$", "") + local target = targetById["HandWraps" .. source.Id] or targetById["HandWraps" .. bareId] + if not target then + local named = targetsByName[source.Name or ""] + if named and #named == 1 and (source.Name or "") ~= "" then + target = named[1] + end + end + if target then + if (source.Name or "") ~= (target.Name or "") then + ConPrintf("Stonefist name mismatch: %s ('%s') -> %s ('%s')", + source.Id, tostring(source.Name), target.Id, tostring(target.Name)) + end + if not map[source.Id] then + map[source.Id] = target.Id + keys[#keys + 1] = source.Id + end + end + end + + table.sort(keys) + local out = io.open(outName, "w") + out:write('-- This file is automatically generated, do not edit!\n') + out:write('-- Maps source glove affix mod ID -> Way of the Stonefist (Fists of Stone) target mod ID.\n') + out:write('-- Item data (c) Grinding Gear Games\n\nreturn {\n') + for _, id in ipairs(keys) do + out:write(string.format('\t["%s"] = "%s",\n', id, map[id])) + end + out:write('}') + out:close() + print(string.format("Stonefist map exported (%d entries).", #keys)) +end +writeStonefistMap("../Data/DataStonefistMap.lua") + print("Mods exported.") diff --git a/src/Modules/Build.lua b/src/Modules/Build.lua index e8b9a48140..ab90aa7721 100644 --- a/src/Modules/Build.lua +++ b/src/Modules/Build.lua @@ -2328,7 +2328,7 @@ end -- Add requirements to tooltip do local req = { } - function buildMode:AddRequirementsToTooltip(tooltip, level, str, dex, int, strBase, dexBase, intBase) + function buildMode:AddRequirementsToTooltip(tooltip, level, str, dex, int, strBase, dexBase, intBase, hideAttributes) if level and level > 0 then if tooltip.tooltipHeader ~= "GEM" then t_insert(req, s_format("^x7F7F7FLevel %s%d", main:StatColor(level, nil, self.characterLevel), level)) @@ -2337,7 +2337,9 @@ do end end -- Convert normal attributes to Omni attributes - if self.calcsTab.mainEnv.modDB:Flag(nil, "OmniscienceRequirements") then + if hideAttributes then + -- attributes are not required (e.g. the Fists of Stone transform), so omit them entirely + elseif self.calcsTab.mainEnv.modDB:Flag(nil, "OmniscienceRequirements") then local omniSatisfy = self.calcsTab.mainEnv.modDB:Sum("INC", nil, "OmniAttributeRequirements") local highestAttribute = 0 for i, stat in ipairs({str, dex, int}) do @@ -2351,14 +2353,17 @@ do end else local attrTextColor = (tooltip.tooltipHeader == "GEM") and "^7" or "^x7F7F7F" + local strLimit = self.calcsTab.mainOutput.Str + local dexLimit = self.calcsTab.mainOutput.Dex + local intLimit = self.calcsTab.mainOutput.Int if str and (str > 7 or str > self.calcsTab.mainOutput.Str) then - t_insert(req, s_format("%s%d %s%s", main:StatColor(str, strBase, self.calcsTab.mainOutput.Str), str, attrTextColor, level and "Str" or "Strength")) + t_insert(req, s_format("%s%d %s%s", main:StatColor(str, strBase, strLimit), str, attrTextColor, level and "Str" or "Strength")) end if dex and (dex > 7 or dex > self.calcsTab.mainOutput.Dex) then - t_insert(req, s_format("%s%d %s%s", main:StatColor(dex, dexBase, self.calcsTab.mainOutput.Dex), dex, attrTextColor, level and "Dex" or "Dexterity")) + t_insert(req, s_format("%s%d %s%s", main:StatColor(dex, dexBase, dexLimit), dex, attrTextColor, level and "Dex" or "Dexterity")) end if int and (int > 7 or int > self.calcsTab.mainOutput.Int) then - t_insert(req, s_format("%s%d %s%s", main:StatColor(int, intBase, self.calcsTab.mainOutput.Int), int, attrTextColor, level and "Int" or "Intelligence")) + t_insert(req, s_format("%s%d %s%s", main:StatColor(int, intBase, intLimit), int, attrTextColor, level and "Int" or "Intelligence")) end end if req[1] then diff --git a/src/Modules/CalcSetup.lua b/src/Modules/CalcSetup.lua index 38a68d62f1..eab056234a 100644 --- a/src/Modules/CalcSetup.lua +++ b/src/Modules/CalcSetup.lua @@ -1138,6 +1138,10 @@ function calcs.initEnv(build, mode, override, specEnv) end if item then + local stonefistGloves = item.base and item.base.type == "Gloves" and nodesModsList:Flag(nil, "WayOfTheStonefist") + if stonefistGloves then + item = item:CreateStonefistVariant() or item + end env.player.itemList[slotName] = item -- Merge mods for this item local srcList = item.modList or (item.slotModList and item.slotModList[slot.slotNum]) or {} @@ -1166,9 +1170,9 @@ function calcs.initEnv(build, mode, override, specEnv) source = "Item", sourceItem = item, sourceSlot = slotName, - Str = item.requirements.strMod, - Dex = item.requirements.dexMod, - Int = item.requirements.intMod, + Str = not stonefistGloves and item.requirements.strMod or nil, + Dex = not stonefistGloves and item.requirements.dexMod or nil, + Int = not stonefistGloves and item.requirements.intMod or nil, }) end -- Rune / Soul Core / Idol Sockets diff --git a/src/Modules/Data.lua b/src/Modules/Data.lua index 6a9d467148..4aa62ffcd2 100644 --- a/src/Modules/Data.lua +++ b/src/Modules/Data.lua @@ -687,9 +687,12 @@ data.itemMods = { Corruption = LoadModule("Data/ModCorrupted"), Runes = LoadModule("Data/ModRunes"), Exclusive = LoadModule("Data/ModItemExclusive"), - Desecrated = LoadModule("Data/ModVeiled") + Desecrated = LoadModule("Data/ModVeiled"), + FistsOfStone = LoadModule("Data/ModFistsOfStone") } +data.stonefistMap = LoadModule("Data/DataStonefistMap") + -- update JewelRadius affixes for Time-Lost jewels do for _, key in ipairs({ "Jewel", "Desecrated" }) do diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index 0692d9bbf8..f887807b25 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -3401,6 +3401,10 @@ local specialModList = { ["(%d+)%% chance on shocking enemies to created shocked ground"] = { mod("ShockBase", "BASE", data.nonDamagingAilment["Shock"].default, { type = "ActorCondition", actor = "enemy", var = "OnShockedGround" }) }, ["on freezing enemies create chilled ground"] = { mod("ChillBase", "BASE", data.nonDamagingAilment["Chill"].default, { type = "ActorCondition", actor = "enemy", var = "OnChilledGround" }) }, ["physical damage reduction from armour is based on your combined armour and evasion rating"] = { mod("EvasionAppliesToPhysicalDamageTaken", "BASE", 100) }, + -- Monk - Martial Artist + ["gloves you equip have their base type transformed to fists of stone while equipped, and their explicit modifiers are transformed into more powerful related modifiers ignore attribute requirements to equip gloves"] = { + flag("WayOfTheStonefist"), + }, -- Chronomancer ["skills have (%d+)%% chance to not consume a cooldown when used"] = function(num) return { mod("CooldownChanceNotConsume", "BASE", num / 100, { type = "SkillType", skillType = SkillType.Cooldown })